@charset "UTF-8";
/*---------------------*/
/*  style.scss
/*---------------------*/
/*---------------------*/
/*  _variables.scss
/*---------------------*/
@font-face {
  font-family: "TimesNewRomanPS-BoldMT";
  font-weight: 700;
  src: url("../fonts/TimesNewRomanPS-BoldMT.ttf");
}
:root {
  --section-a-color: #EFC030;
  --section-b-color: #9DCC5C;
  --section-c-color: #5DC1C9;
  --section-d-color: #EB677B;
  --section-e-color: #4CAD87;
  --section-f-color: #ED70E8;
  --section-g-color: #FF8D5A;
  --section-h-color: #7281D5;
}

/*---------------------*/
/*  _animation.scss
/*---------------------*/
.anime-left-in {
  animation-name: left-to-right-in;
  animation-duration: 0.8s;
}

.anime-right-in {
  animation-name: right-to-left-in;
  animation-duration: 0.8s;
}

.anime-text-in {
  animation-name: font-left-to-right-in;
  animation-duration: 0.8s;
}

.anime-background-in {
  animation-name: large-to-small-in;
  animation-duration: 0.8s;
}

.anime-fade-in {
  animation-name: fade-in;
  animation-duration: 0.8s;
}

.anime-left-out {
  animation-name: to-left-out;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.anime-right-out {
  animation-name: to-right-out;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.anime-background-out {
  animation-name: to-small-out;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.anime-fade-out {
  animation-name: fade-out;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes font-left-to-right-in {
  0% {
    transform: translateX(-50vw) scale(0);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}
@keyframes left-to-right-in {
  0% {
    transform: translateX(-50vw);
    opacity: 0;
  }
  75% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes right-to-left-in {
  from {
    transform: translateX(50vw);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes large-to-small-in {
  from {
    transform: scale(5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes to-right-out {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  75% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(100vw);
    opacity: 0;
  }
}
@keyframes to-left-out {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  75% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(-100vw);
    opacity: 0;
  }
}
@keyframes to-small-out {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.8);
    opacity: 0;
  }
}
/*---------------------*/
/*  _global.scss
/*---------------------*/
::selection {
  background-color: var(--current-selection-color, #EFC03040);
}

html, body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  font-size: 16px;
}

body.modal-open {
  overflow: hidden;
}

.arrow-btn {
  cursor: pointer;
  width: 242px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: 0.3s;
}
.arrow-btn.style-left {
  transform: rotate(180deg) scaleY(-1);
}
@media screen and (max-width: 767px) {
  .arrow-btn:hover {
    transform: translateX(13px);
  }
}
@media screen and (max-width: 767px) {
  .arrow-btn:hover.style-left {
    transform: translateX(-13px) rotate(180deg) scaleY(-1);
  }
}
.arrow-btn:hover .spine {
  width: 137.67px;
}
@media screen and (max-width: 1024px) {
  .arrow-btn:hover .spine {
    width: 91.8px;
  }
}
@media screen and (max-width: 767px) {
  .arrow-btn:hover .spine {
    width: 73px;
  }
}
.arrow-btn:hover .round .svg-circle circle {
  animation-name: circle-clockwise;
  animation-iteration-count: infinite;
  animation-delay: 0.1s;
  animation-duration: 3s;
}
.arrow-btn .spine {
  width: 160px;
  height: 3px;
  background-color: #000;
  transform: translateX(2.9rem);
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .arrow-btn .spine {
    width: 108px;
  }
}
@media screen and (max-width: 767px) {
  .arrow-btn .spine {
    width: 86px;
    transform: translateX(0);
  }
}
.arrow-btn .round {
  position: relative;
}
@media screen and (max-width: 767px) {
  .arrow-btn .round {
    transform: translateX(-2.2rem);
  }
}
.arrow-btn .round::before {
  content: "";
  width: 16px;
  height: 16px;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 40.5%;
  transform: rotate(-45deg) translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .arrow-btn .round::before {
    top: 36.6%;
  }
}
.arrow-btn .round .circle {
  width: 5.125rem;
  height: 5.125rem;
  border: 3px solid var(--current-color, #EFC030);
  border-radius: 100rem;
  box-sizing: border-box;
  opacity: 0.5;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .arrow-btn .round .circle {
    width: 3.625rem;
    height: 3.625rem;
  }
}
.arrow-btn .round .svg-circle {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.arrow-btn .round .svg-circle circle {
  r: calc(50% - 1.5px);
  fill: transparent;
  stroke: var(--current-color, #EFC030);
  stroke-width: 3px;
  stroke-dasharray: calc(100% * 3.14);
  stroke-dashoffset: calc(100% * 3.14);
  transform-origin: center;
  transform: rotate(-178deg);
}

.cta-btn {
  cursor: pointer;
  border: 2px solid var(--current-color, #EFC030);
  background-color: var(--current-color, #EFC030);
  color: #000;
  width: 300px;
  padding: 8.5px;
  box-sizing: border-box;
  font-size: 2rem;
  line-height: 1.1875;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cta-btn:hover::before, .cta-btn:active::before {
  transform: translate(-50%, -50%) rotate(14.5deg) scale(1, 0);
}
.cta-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%) rotate(14.5deg) scale(1, 1);
  display: block;
  width: 200%;
  height: 112%;
  background-color: #FFF;
  transition: 0.3s;
}

@keyframes circle-clockwise {
  0% {
    stroke-dashoffset: calc(100% * 3.14);
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: calc(100% * -3.14);
  }
}
/*---------------------*/
/*  _layout.scss
/*---------------------*/
/*---------------------*/
/*  _nav.scss
/*---------------------*/
.main-nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
}
.main-nav .logo-wrap {
  position: fixed;
  top: 1.67vw;
  left: 3.6vw;
  z-index: 5500;
  height: 25px;
}
.main-nav .logo-wrap img {
  height: 100%;
}
.main-nav .menu-btn {
  position: fixed;
  top: calc(1.86vw - 10.75px);
  right: 3.6vw;
  z-index: 5500;
  cursor: pointer;
  padding: 20px;
}
@media (any-hover: hover) {
  .main-nav .menu-btn:hover span:nth-child(3) {
    width: 30px;
  }
}
.main-nav .menu-btn span {
  width: 30px;
  height: 2.5px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  transition: 0.3s;
}
.main-nav .menu-btn span:nth-child(1) {
  transform: translateY(calc(-50% - 5.5px));
}
.main-nav .menu-btn span:nth-child(2) {
  transform: translateY(-50%);
}
.main-nav .menu-btn span:nth-child(3) {
  transform: translateY(calc(-50% + 5.5px));
  width: 20px;
}
.main-nav .menu-btn.anime-group span:nth-child(1), .main-nav .menu-btn.anime-group span:nth-child(2), .main-nav .menu-btn.anime-group span:nth-child(3) {
  transform: translateY(-50%);
}
.main-nav .menu-btn.anime-rotate span:nth-child(1) {
  transform: rotate(45deg);
}
.main-nav .menu-btn.anime-rotate span:nth-child(2) {
  transform: rotate(135deg);
}
.main-nav .menu-btn.anime-rotate span:nth-child(3) {
  opacity: 0;
}
.main-nav .menu-modal {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.main-nav .menu-modal.show {
  visibility: visible;
  opacity: 1;
}
.main-nav .menu-modal .menu-content {
  width: 50vw;
  height: 100vh;
  background-color: var(--current-color, #EFC030);
  position: absolute;
  top: 0;
  right: -100vw;
  display: flex;
  align-items: center;
  transition: 0.5s;
}
@media screen and (max-width: 991px) {
  .main-nav .menu-modal .menu-content {
    width: 70vw;
  }
}
.main-nav .menu-modal .menu-content.show {
  right: 0;
}
.main-nav .menu-modal .menu-content .menu-list {
  list-style-type: none;
  padding: 0 4rem;
  margin: 0;
}
.main-nav .menu-modal .menu-content .menu-list .menu-item + .menu-item {
  margin-top: 2rem;
}
.main-nav .menu-modal .menu-content .menu-list .menu-item:hover .item-link::after {
  height: 2.25rem;
  opacity: 0.15;
}
@media screen and (max-width: 576px) {
  .main-nav .menu-modal .menu-content .menu-list .menu-item:hover .item-link::after {
    height: 1.125rem;
  }
}
.main-nav .menu-modal .menu-content .menu-list .menu-item:active .item-link::after, .main-nav .menu-modal .menu-content .menu-list .menu-item.active .item-link::after {
  height: 2.25rem;
  opacity: 0.3;
}
@media screen and (max-width: 576px) {
  .main-nav .menu-modal .menu-content .menu-list .menu-item:active .item-link::after, .main-nav .menu-modal .menu-content .menu-list .menu-item.active .item-link::after {
    height: 1.125rem;
  }
}
.main-nav .menu-modal .menu-content .menu-list .menu-item .item-link {
  text-decoration: none;
  font-size: 4.5rem;
  color: #000;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 576px) {
  .main-nav .menu-modal .menu-content .menu-list .menu-item .item-link {
    font-size: 1.5rem;
  }
}
.main-nav .menu-modal .menu-content .menu-list .menu-item .item-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10px;
  z-index: -1;
  display: block;
  width: calc(100% + 20px);
  height: 0;
  background-color: #FFF;
  opacity: 0;
  transition: 0.3s;
}

/*---------------------*/
/*  _footer.scss
/*---------------------*/
.footer-wrap {
  text-align: center;
  padding: 3.89rem 0 3.86rem;
  background-color: #FFF;
}
.footer-wrap .copyright {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin: 0;
}

/*---------------------*/
/*  _home.scss
/*---------------------*/
.page-home .page-title {
  display: none;
}
.page-home .full-section {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-home .full-section .content-link {
  width: 100%;
  margin: 0 10vw 0 34.8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .page-home .full-section .content-link {
    margin: 0 6vw 0 33vw;
  }
}
@media screen and (max-width: 767px) {
  .page-home .full-section .content-link {
    margin: 0 10vw 0 36vw;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .page-home .full-section .content-link:hover .arrow-btn {
    transform: translateX(13px);
  }
}
.page-home .full-section .content-link:hover .arrow-btn .spine {
  width: 137.67px;
}
@media screen and (max-width: 1024px) {
  .page-home .full-section .content-link:hover .arrow-btn .spine {
    width: 91.8px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .full-section .content-link:hover .arrow-btn .spine {
    width: 73px;
  }
}
.page-home .full-section .content-link:hover .arrow-btn .round .svg-circle circle {
  animation-name: circle-clockwise;
  animation-iteration-count: infinite;
  animation-delay: 0.1s;
  animation-duration: 3s;
}
.page-home .full-section .content-link .text-wrap {
  color: #000;
}
.page-home .full-section .content-link .text-wrap .title {
  font-family: "TimesNewRomanPS-BoldMT";
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1.11;
  margin: 0;
}
@media screen and (max-width: 1440px) {
  .page-home .full-section .content-link .text-wrap .title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 576px) {
  .page-home .full-section .content-link .text-wrap .title {
    font-size: 2.5rem;
  }
}
.page-home .full-section .content-link .text-wrap .title .title-mark {
  display: inline-block;
  transform: rotate(15deg) translate(15px, -2px);
}
.page-home .full-section .content-link .text-wrap .sub-title {
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 2.4px;
  margin: 1.4125rem 0 0.2875rem;
}
@media screen and (max-width: 1440px) {
  .page-home .full-section .content-link .text-wrap .sub-title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .page-home .full-section .content-link .text-wrap .sub-title {
    font-size: 0.84rem;
  }
}
.page-home .full-section .content-link .text-wrap .slogan {
  font-size: 1.25rem;
  font-weight: 300;
  margin: 0;
}
@media screen and (max-width: 1440px) {
  .page-home .full-section .content-link .text-wrap .slogan {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 576px) {
  .page-home .full-section .content-link .text-wrap .slogan {
    font-size: 0.7rem;
  }
}
@media screen and (min-width: 1920px) {
  .page-home .full-section .content-link .arrow-btn {
    position: absolute;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-home .full-section .content-link .arrow-btn {
    justify-content: flex-start;
  }
}
.page-home .section-menu {
  width: 200px;
  position: fixed;
  top: 0;
  left: 19.9vw;
  transition: 0.3s;
  font-family: "trajan-pro-3";
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .page-home .section-menu {
    left: 13vw;
  }
}
@media screen and (max-width: 1024px) {
  .page-home .section-menu {
    left: 8vw;
  }
}
@media screen and (max-width: 991px) {
  .page-home .section-menu {
    left: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .page-home .section-menu {
    left: -6vw;
  }
}
@media screen and (max-width: 576px) {
  .page-home .section-menu {
    left: -9vw;
  }
}
@media screen and (max-width: 360px) {
  .page-home .section-menu {
    left: -12vw;
  }
}
.page-home .section-menu .menu-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-home .section-menu .menu-list .menu-item {
  margin: 1.3rem 0;
  transition: 0.3s;
}
.page-home .section-menu .menu-list .menu-item.active {
  margin: 0;
}
.page-home .section-menu .menu-list .menu-item.active .item-link {
  padding: 0;
  pointer-events: none;
  cursor: default;
  font-size: 15.9375rem;
}
@media screen and (max-width: 1440px) {
  .page-home .section-menu .menu-list .menu-item.active .item-link {
    font-size: 10.68rem;
  }
}
@media screen and (max-width: 576px) {
  .page-home .section-menu .menu-list .menu-item.active .item-link {
    font-size: 8.925rem;
  }
}
.page-home .section-menu .menu-list .menu-item .item-link {
  padding: 0.8rem;
  color: #000;
  text-decoration: none;
  line-height: 1.2;
  font-size: 1.4375rem;
  transition: 0.3s 0.05s;
}
@media screen and (max-width: 1440px) {
  .page-home .section-menu .menu-list .menu-item .item-link {
    font-size: 0.96rem;
  }
}
@media screen and (max-width: 576px) {
  .page-home .section-menu .menu-list .menu-item .item-link {
    font-size: 0.8rem;
  }
}
.page-home #home-svg-wrap {
  width: 100vw;
  box-sizing: border-box;
  padding: 0 17.7vw 0 3.6vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  transform-origin: top;
  transition: 0.5s;
}
.page-home #home-svg-wrap.bg-overlay {
  z-index: 1;
}
.page-home #home-svg-wrap.anime-move-to-right {
  transform: translateX(100vw);
}
.page-home #home-svg-wrap.menu-opening #home-svg .triangle.anime-rotate {
  transform: rotate(90deg);
}
.page-home #home-svg-wrap.menu-opening #home-svg .triangle.anime-scale {
  transform: rotate(90deg) scale(1.76);
}
.page-home #home-svg-wrap.menu-opening #home-svg .vine.anime-disappear {
  transform: scale(0.8);
  opacity: 0;
}
.page-home #home-svg-wrap #home-svg {
  width: 100%;
}
.page-home #home-svg-wrap #home-svg g {
  transition: 0.5s;
}
.page-home #home-svg-wrap #home-svg path {
  fill: var(--current-color, #EFC030);
  transition: 0.3s;
}
.page-home #home-svg-wrap #home-svg .triangle {
  transform-origin: 60% 60%;
  transform-box: fill-box;
}
/*---------------------*/
/*  _detail.scss
/*---------------------*/
.page-detail {
  position: relative;
  overflow: hidden;
}
.page-detail .detail-section.hero-wrap {
  min-height: 100vh;
}
.page-detail .detail-section .sectione-content {
  padding-top: 15vh;
  max-width: 1640px;
  width: 85.42%;
  margin: 0 auto;
}
.page-detail .detail-section .sectione-content .text-wrap {
  padding: 0 47.9% 0 11.6%;
}
@media screen and (max-width: 1440px) {
  .page-detail .detail-section .sectione-content .text-wrap {
    padding: 0 43.9% 0 7.6%;
  }
}
@media screen and (max-width: 1024px) {
  .page-detail .detail-section .sectione-content .text-wrap {
    padding: 0 35.9% 0 3.6%;
  }
}
.page-detail .detail-section .sectione-content .page-title {
  font-family: "TimesNewRomanPS-BoldMT";
  font-weight: 700;
  font-size: 6.75rem;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 0.925rem;
}
.page-detail .detail-section .sectione-content .page-subtitle {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1.5625rem;
}
.page-detail .detail-section .sectione-content .page-paragraph {
  font-size: 1.25rem;
  line-height: 1.425;
  letter-spacing: 3px;
}
.page-detail .detail-section .sectione-content .page-paragraph.paragraph-1 {
  margin: 2.625rem 0;
  min-height: 22.7vh;
}
.page-detail .detail-section .sectione-content .page-paragraph.paragraph-2 {
  margin: 1.4375rem 0;
}
.page-detail .detail-section .sectione-content .page-subtitle-hr {
  width: 300px;
  height: 5px;
  margin: 0;
  background-color: var(--current-color, #EFC030);
  opacity: 1;
  border-radius: 100rem;
  border: unset;
}
.page-detail #detail-svg-wrap {
  width: calc(100vw - 148px);
  box-sizing: border-box;
  position: absolute;
  /*
      全圖 1772.87px * 2987.74px
      折角中心高度 1673px => 1673 / 2987.74 = 0.559955 (頂端至折角中心佔比)

      高寬比 2987.74 / 1772.87 = 1.685256
      公式: 寬度 * 1.685256 = 高度

      (100vw - 148px) * 1.685256 = 整張圖的高度
      (100vw - 148px) * 1.685256 * 0.559955 = 頂端至折角中心的長度
      (100vw - 148px) * 1.685256 * 0.559955 * -1 + 50vh = 從折角中心 再向下位移50vh
  */
  top: calc( ((100vw - 148px) * 1.685256 * 0.559955 * -1) + 50vh);
  right: -3%;
  z-index: -1;
  transition: 0.5s;
}
.page-detail #detail-svg-wrap #detail-svg {
  width: 100%;
}
.page-detail #detail-svg-wrap #detail-svg #upper-half {
  fill: var(--current-color, #EFC030);
  opacity: 0.7;
}
.page-detail #detail-svg-wrap #detail-svg #lower-half-start,
.page-detail #detail-svg-wrap #detail-svg #lower-half-end {
  stop-color: var(--current-color, #EFC030);
}

/*# sourceMappingURL=style.css.map */
