@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans+SC:wght@100..900&family=Noto+Sans+TC:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  --brand-color1: ;
  --brand-color2: ;
  --brand-color3: ;
  --brand-color4: ;
  --text-primary: ;
  --text-secondary: ;
}

@keyframes scale {
  from {
    transform: scale(1.5);
  }
  to {
    transform: scale(1);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --main-black: #737B84;
  font-family: "Noto Sans TC";
  scrollbar-width: none;
}

html {
  background-color: white;
}

body {
  width: 100%;
  min-height: 100vh;
  background-color: white;
  --nav-width: clamp(44px, 3.95vw, 76px);
  --h2-size: clamp(32px, 3.13vw, 60px);
  overflow-x: hidden;
}
body.active {
  overflow: hidden;
}

/* 讓 --r 可以被瀏覽器當成「長度」內插，這樣 transition 才會平滑 */
@property --r {
  syntax: "<length>";
  inherits: true;
  initial-value: 0px;
}
button {
  border: none;
  outline: none;
  background-color: transparent;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

nav {
  position: fixed;
  left: 0;
  top: 24px;
  bottom: 24px;
  --padding-x: clamp(16px, 1.67vw, 32px);
  padding: 24px var(--padding-x);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-right: 1px solid var(--main-black);
  z-index: 99;
  mix-blend-mode: difference;
}
@media (max-width: 990px) {
  nav {
    opacity: 0;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}
nav .menu-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px 0;
}
nav .menu-btn span {
  display: inline-block;
  height: 1px;
  background-color: var(--main-black);
  width: 28px;
}
nav ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
  width: 100%;
  background: transparent;
}
nav ul li {
  width: 100%;
  mix-blend-mode: difference;
}
nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  font-feature-settings: initial;
  -webkit-font-feature-settings: initial;
  line-height: 0.9;
  white-space: nowrap;
  color: var(--main-black);
  font-weight: 400;
  position: relative;
  mix-blend-mode: difference;
  font-size: clamp(16px, 0.94vw, 18px);
  letter-spacing: 2px;
}
nav ul li a::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 2px;
  height: 50%;
  opacity: 0;
  left: calc(100% + var(--padding-x));
  transform: translateX(-100%);
  background-color: rgb(206, 206, 206);
  transition: all 0.4s ease-in-out;
  transform-origin: center;
  border-radius: 4px;
}
nav ul li a:hover::after {
  height: 140%;
  opacity: 1;
}
nav .line-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  background: transparent;
}
nav .line-btn img {
  mix-blend-mode: difference;
}
nav .line-btn span {
  color: white;
  mix-blend-mode: difference;
}
nav.opened .menu-btn {
  position: relative;
  margin-top: 4px;
}
nav.opened .menu-btn span {
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: white;
}
nav.opened .menu-btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(20deg);
  transform-origin: center;
}
nav.opened .menu-btn span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-20deg);
  transform-origin: center;
}
nav.opened ul {
  display: none;
}

.mobile-nav {
  position: fixed;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 99;
  gap: 12px;
  display: none;
}
@media (max-width: 990px) {
  .mobile-nav {
    display: flex;
  }
}
.mobile-nav button {
  border: none;
  outline: none;
  background-color: #51565c;
  box-shadow: 1px 1px 6px rgb(83, 83, 83);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 16px 0px;
  cursor: pointer;
}
.mobile-nav button.line {
  flex: 1;
  font-size: clamp(14px, 0.94vw, 18px);
}
.mobile-nav button.line img {
  width: 24px;
  margin-top: 4px;
}
.mobile-nav button.toggle-btn {
  flex: 3;
  font-size: clamp(16px, 1.04vw, 20px);
}
.mobile-nav.opened button.line {
  background-color: #06C755;
}
.mobile-nav.opened button.toggle-btn {
  background-color: #9b9b9b;
}

.pin-section {
  width: 100%;
  height: 100vh;
  display: flex;
  padding-left: var(--nav-width);
}
@media (max-width: 990px) {
  .pin-section {
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.pin-section .lg-show {
  display: none;
}
.pin-section .lg-show.logo-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 120px 24px 12px 0px;
  gap: 48px;
  justify-content: space-between;
  align-items: center;
}
.pin-section .lg-show.logo-wrapper .logo {
  width: 100%;
  max-width: 320px;
}
.pin-section .lg-show.logo-wrapper .note {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: clamp(14px, 0.94vw, 18px);
  gap: 0px 12px;
  width: 100%;
  padding-left: 0px;
}
.pin-section .lg-show.logo-wrapper .note .label {
  background-color: var(--main-black);
  color: white;
  padding: 0 4px;
  line-height: 1;
}
.pin-section .lg-show.logo-wrapper .note a,
.pin-section .lg-show.logo-wrapper .note .date {
  color: var(--main-black);
}
@media (max-width: 990px) {
  .pin-section .lg-show.logo-wrapper {
    display: flex;
  }
}
.pin-section .lg-show.text-wrapper {
  padding: 24px 24px 120px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media (max-width: 990px) {
  .pin-section .lg-show.text-wrapper {
    display: flex;
  }
}
.pin-section .lg-show.text-wrapper h2 {
  font-size: clamp(24px, 2.08vw, 40px);
  color: #6d6d6d;
  text-align: start;
  font-weight: 300;
  margin-left: 0px;
}
.pin-section .lg-show.text-wrapper p {
  color: var(--main-black);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  width: 80%;
}
.pin-section .lg-show.text-wrapper button {
  align-self: flex-end;
  background-color: #737B84;
  padding: 12px 40px;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: white;
  font-weight: 400;
  font-size: clamp(16px, 1.04vw, 20px);
  margin: 0 auto;
  margin-top: 24px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.pin-section .lg-show.text-wrapper button .arrow-box {
  background-color: white;
  border-radius: 99px;
  height: 16px;
  width: 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 4px;
  transition: all 0.2s ease-in-out;
}
.pin-section .lg-show.text-wrapper button .arrow-box img {
  padding: 0px 4px;
  width: 20px;
  flex-shrink: 0;
}
.pin-section .lg-show.text-wrapper button:hover {
  background-color: white;
  border: 1px solid #737B84;
  color: #737B84;
}
.pin-section .lg-show.text-wrapper button:hover .arrow-box {
  background-color: #737B84;
  width: 16px;
  margin-left: 16px;
}
.pin-section .lg-show.text-wrapper button:hover .arrow-box img {
  filter: invert(1) brightness(999%);
}
.pin-section .left-col {
  width: 50%;
  position: relative;
}
@media (max-width: 990px) {
  .pin-section .left-col {
    display: none;
  }
}
.pin-section .left-col .block-1 {
  position: absolute;
  inset: 0;
  display: flex;
  padding: 48px clamp(24px, 6.25vw, 120px);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.pin-section .left-col .block-1 .tag {
  color: var(--main-black);
  font-size: 12px;
  font-weight: 400;
}
.pin-section .left-col .block-1 .bottom {
  transition: all 0.5s ease-in-out;
}
.pin-section .left-col .block-1 .bottom img.logo {
  width: clamp(260px, 22.9vw, 440px);
  margin-bottom: 12px;
}
.pin-section .left-col .block-1 .bottom .note {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  gap: 12px;
}
.pin-section .left-col .block-1 .bottom .note .label {
  background-color: var(--main-black);
  color: white;
  padding: 0 4px;
  line-height: 1;
}
.pin-section .left-col .block-1 .bottom .note a,
.pin-section .left-col .block-1 .bottom .note .date {
  color: var(--main-black);
}
.pin-section .left-col .block-2 {
  position: absolute;
  inset: 0;
}
.pin-section .left-col .block-2 .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pin-section .left-col .block-2 .content .content-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
  gap: 36px;
  max-width: 600px;
  padding-bottom: clamp(24px, 6.25vw, 120px);
}
@media (max-width: 768px) {
  .pin-section .left-col .block-2 .content .content-inner {
    padding: 24px;
  }
}
.pin-section .left-col .block-2 .content .content-inner h2 {
  margin-left: 24px;
  font-size: clamp(24px, 2.08vw, 40px);
  color: #6d6d6d;
  text-align: start;
  font-weight: 300;
}
@media (max-width: 768px) {
  .pin-section .left-col .block-2 .content .content-inner h2 {
    margin-left: 0px;
  }
}
.pin-section .left-col .block-2 .content .content-inner p {
  align-self: flex-end;
  color: var(--main-black);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  width: 60%;
}
@media (max-width: 990px) {
  .pin-section .left-col .block-2 .content .content-inner p {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .pin-section .left-col .block-2 .content .content-inner p {
    width: 100%;
  }
}
.pin-section .left-col .block-2 .content .content-inner button {
  align-self: flex-end;
  background-color: var(--main-black);
  padding: 6px 40px;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: white;
  font-weight: 400;
  font-size: 14px;
  margin: 0 auto;
  margin-top: 24px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.pin-section .left-col .block-2 .content .content-inner button .arrow-box {
  background-color: white;
  border-radius: 99px;
  height: 16px;
  width: 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 4px;
  transition: all 0.2s ease-in-out;
}
.pin-section .left-col .block-2 .content .content-inner button .arrow-box img {
  padding: 0px 4px;
  width: 20px;
  flex-shrink: 0;
}
.pin-section .left-col .block-2 .content .content-inner button:hover {
  background-color: white;
  border: 1px solid var(--main-black);
  color: var(--main-black);
}
.pin-section .left-col .block-2 .content .content-inner button:hover .arrow-box {
  background-color: var(--main-black);
  width: 16px;
  margin-left: 16px;
}
.pin-section .left-col .block-2 .content .content-inner button:hover .arrow-box img {
  filter: invert(1) brightness(999%);
}
.pin-section .right-col {
  width: 50%;
  height: 100vh;
  padding: clamp(24px, 1.875vw, 36px);
  position: relative;
}
@media (max-width: 990px) {
  .pin-section .right-col {
    width: 100%;
    height: 50vh;
    padding: 0px 24px 24px 0px;
  }
}
.pin-section .right-col .slogan {
  position: absolute;
  left: clamp(60px, 5.2vw, 100px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}
.pin-section .right-col .slogan p {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  font-feature-settings: initial;
  -webkit-font-feature-settings: initial;
  line-height: 0.9;
  white-space: nowrap;
  color: white;
  letter-spacing: 4px;
  font-size: clamp(12px, 0.937vw, 18px);
  font-weight: 500;
}
.pin-section .right-col .slogan p:nth-child(1) {
  margin-top: 24px;
}
@media (max-width: 480px) {
  .pin-section .right-col .slogan {
    left: clamp(24px, 5.2vw, 100px);
  }
}
.pin-section .right-col .swiper {
  width: 100%;
  height: 100%;
}
.pin-section .right-col .swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.pin-section .right-col .swiper .swiper-wrapper .swiper-slide {
  position: relative;
}
.pin-section .right-col .swiper .swiper-wrapper .swiper-slide .mask {
  position: absolute;
  inset: 0;
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  transform: translate3d(0px, 0px, 0px);
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
}
.pin-section .right-col .swiper .swiper-wrapper .swiper-slide .window {
  position: absolute;
  width: clamp(160px, 18.75vw, 360px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  mask-image: url("../images/mask.png");
  -webkit-mask-image: url("../images/mask.png");
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
@media (max-width: 990px) {
  .pin-section .right-col .swiper .swiper-wrapper .swiper-slide .window {
    width: 200px;
  }
}
.pin-section .right-col .swiper .swiper-wrapper .swiper-slide .window img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  animation: scale 28s infinite;
}
.pin-section .right-col .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.5);
  animation: scale 40s infinite;
}
.pin-section .right-col .swiper .swiper-pagination {
  left: auto;
  right: 0px;
  bottom: 30px;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.pin-section .right-col .swiper .swiper-pagination .swiper-pagination-bullet.custom-pagination {
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  background: transparent;
  opacity: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.pin-section .right-col .swiper .swiper-pagination .swiper-pagination-bullet.custom-pagination .text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: color 0.3s ease-in-out;
}
.pin-section .right-col .swiper .swiper-pagination .swiper-pagination-bullet.custom-pagination .line {
  display: inline-block;
  height: 1px;
  width: 36px;
  position: relative;
}
.pin-section .right-col .swiper .swiper-pagination .swiper-pagination-bullet.custom-pagination .line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0%;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.5);
  transform-origin: left;
  transition: all 0.5s ease-in-out;
}
.pin-section .right-col .swiper .swiper-pagination .swiper-pagination-bullet.custom-pagination.swiper-pagination-bullet-active .text {
  color: #fff;
}
.pin-section .right-col .swiper .swiper-pagination .swiper-pagination-bullet.custom-pagination.swiper-pagination-bullet-active .line::after {
  width: 100%;
  background-color: white;
}

.stack-section {
  width: 100%;
  margin-bottom: 240px;
  z-index: 1;
  position: relative;
  --box-padding: clamp(24px, 3.13vw, 60px);
}
@media (max-width: 990px) {
  .stack-section {
    margin-bottom: 0px;
  }
}
.stack-section .stack-bg {
  width: 100%;
  height: 800px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.stack-section .stack-bg img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.1);
}
.stack-section .stack-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100% 805.578px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}
@media (max-width: 990px) {
  .stack-section .stack-bg {
    height: 520px;
  }
}
.stack-section .text-box {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: clamp(64px, 6.25vw, 120px) var(--box-padding) 120px calc(var(--nav-width) + var(--box-padding));
  z-index: 3;
}
@media (max-width: 990px) {
  .stack-section .text-box {
    padding-bottom: 40px;
    padding-left: var(--box-padding);
  }
}
.stack-section .text-box .text-box-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.stack-section .text-box .text-box-inner h2 {
  font-size: var(--h2-size);
  color: white;
  font-weight: 200;
}
.stack-section .text-box .text-box-inner .bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.stack-section .text-box .text-box-inner .bottom .address {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: white;
  font-weight: 300;
}
.stack-section .text-box .text-box-inner .bottom .address img {
  width: 16px;
  margin-top: 2px;
}
@media (max-width: 990px) {
  .stack-section .text-box .text-box-inner .bottom .address.pc {
    display: none;
  }
}
.stack-section .text-box .text-box-inner .bottom .address.mobile {
  display: none;
}
@media (max-width: 990px) {
  .stack-section .text-box .text-box-inner .bottom .address.mobile {
    display: flex;
  }
}
.stack-section .text-box .text-box-inner .bottom .title {
  color: white;
  font-size: clamp(16px, 1.25vw, 24px);
}
@media (max-width: 990px) {
  .stack-section .text-box .text-box-inner .bottom .title.pc {
    display: none;
  }
}
.stack-section .text-box .text-box-inner .bottom .title.mobile {
  display: none;
}
@media (max-width: 990px) {
  .stack-section .text-box .text-box-inner .bottom .title.mobile {
    display: block;
    width: 100%;
  }
}
.stack-section .text-box .text-box-inner .bottom .arrow-box {
  height: 16px;
  width: 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 4px;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.stack-section .text-box .text-box-inner .bottom .arrow-box::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 99px;
  transform-origin: right center;
  transition: all 0.2s ease-in-out;
}
.stack-section .text-box .text-box-inner .bottom .arrow-box img {
  padding: 0px 4px;
  width: 20px;
  flex-shrink: 0;
}
.stack-section .text-box .text-box-inner .bottom .arrow-box:hover::after {
  width: 50%;
  background-color: var(--main-black);
}
.stack-section .text-box .text-box-inner .bottom .arrow-box:hover img {
  filter: invert(1) brightness(999%);
}
.stack-section .float-circle {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0px;
  aspect-ratio: 1/1;
  color: white;
  font-size: 18px;
  letter-spacing: 1px;
  border-radius: 999px;
  background-color: var(--main-black);
  transition: width 0.5s ease-in-out;
  overflow: hidden;
  pointer-events: none;
  will-change: transform;
}
.stack-section .float-circle.active {
  width: 160px;
}
.stack-section .text-box-inner:has(.float-circle.active) {
  cursor: pointer;
}
.stack-section .stack-list {
  position: absolute;
  left: calc(var(--box-padding) + var(--nav-width));
  top: 240px;
  width: calc(100% - (var(--box-padding) * 2 + var(--nav-width)));
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 990px) {
  .stack-section .stack-list {
    display: none;
  }
}
.stack-section .stack-list .card {
  background-color: white;
  position: absolute;
  left: 0;
  width: 100%;
  border-radius: 8px;
  padding: 28px 28px 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  transition: transform 0.5s ease-in-out;
  pointer-events: auto;
}
.stack-section .stack-list .card .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stack-section .stack-list .card .top .number {
  color: var(--main-black);
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 300;
}
.stack-section .stack-list .card .top .address {
  color: var(--main-black);
  font-size: 18px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  font-weight: 300;
}
.stack-section .stack-list .card .top .address img {
  width: 20px;
  opacity: 0.7;
}
.stack-section .stack-list .card .card-content {
  display: flex;
  gap: 24px;
}
.stack-section .stack-list .card .card-content .detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.stack-section .stack-list .card .card-content .detail .gray-label {
  display: inline-block;
  line-height: 1;
  background-color: var(--main-black);
  color: white;
  padding: 1px 8px;
  font-weight: 300;
}
.stack-section .stack-list .card .card-content .detail .detail-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}
.stack-section .stack-list .card .card-content .detail .detail-bottom .title {
  font-size: clamp(24px, 1.67vw, 32px);
  color: #333;
  font-weight: 300;
  flex: 1;
}
.stack-section .stack-list .card .card-content .detail .detail-bottom .arrow-box {
  height: 16px;
  width: 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 4px;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.stack-section .stack-list .card .card-content .detail .detail-bottom .arrow-box::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--main-black);
  border-radius: 99px;
  transform-origin: right center;
  transition: all 0.2s ease-in-out;
}
.stack-section .stack-list .card .card-content .detail .detail-bottom .arrow-box img {
  padding: 0px 4px;
  width: 20px;
  flex-shrink: 0;
  filter: invert(1) brightness(999%);
}
.stack-section .stack-list .card .card-content .detail .detail-bottom .arrow-box:hover::after {
  width: 50%;
}
.stack-section .stack-list .card .card-content .photos {
  flex: 1;
  display: flex;
  gap: 24px;
}
.stack-section .stack-list .card .card-content .photos .img-box {
  flex: 1;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.stack-section .stack-list .card .card-content .photos .img-box img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 2.4s ease-in-out;
  transform: scale(1);
}
.stack-section .stack-list .card .card-content .photos .img-box:hover img {
  transform: scale(1.12);
}
.stack-section .stack-list .card.card-1 {
  top: 0;
  z-index: 3;
}
.stack-section .stack-list .card.card-2 {
  top: 0px;
  z-index: 4;
  padding-top: 0;
}
.stack-section .stack-list .card.card-2 .top {
  padding-top: 28px;
  border-top: 1px solid #bbbbbb;
}
.stack-section .stack-list .card.card-3 {
  top: 0px;
  z-index: 5;
  padding-top: 0;
  padding-bottom: 120px;
}
.stack-section .stack-list .card.card-3 .top {
  padding-top: 28px;
  border-top: 1px solid #bbbbbb;
}

.stack-list-mobile {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 2;
  pointer-events: none;
  flex-direction: column;
  justify-content: flex-start;
  display: none;
}
@media (max-width: 990px) {
  .stack-list-mobile {
    display: flex;
  }
}
.stack-list-mobile .card {
  background-color: white;
  width: 100%;
  padding: 28px 28px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  transition: transform 0.5s ease-in-out;
  pointer-events: auto;
  border-bottom: 1px solid #bbbbbb;
}
.stack-list-mobile .card:nth-last-child(1) {
  border-bottom: none;
  padding-bottom: 160px;
}
.stack-list-mobile .card .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stack-list-mobile .card .top .number {
  color: var(--main-black);
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 300;
}
.stack-list-mobile .card .top .address {
  color: var(--main-black);
  font-size: 18px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  font-weight: 300;
}
.stack-list-mobile .card .top .address img {
  width: 20px;
  opacity: 0.7;
}
.stack-list-mobile .card .card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.stack-list-mobile .card .card-content .detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.stack-list-mobile .card .card-content .detail .gray-label {
  display: inline-block;
  line-height: 1;
  background-color: var(--main-black);
  color: white;
  padding: 1px 8px;
  font-weight: 300;
}
.stack-list-mobile .card .card-content .detail .detail-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}
.stack-list-mobile .card .card-content .detail .detail-bottom .title {
  font-size: clamp(20px, 1.25vw, 24px);
  color: #333;
  font-weight: 300;
  flex: 1;
}
.stack-list-mobile .card .card-content .detail .detail-bottom .arrow-box {
  height: 24px;
  width: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 4px;
  transition: all 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
}
.stack-list-mobile .card .card-content .detail .detail-bottom .arrow-box::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--main-black);
  border-radius: 99px;
  transform-origin: right center;
  transition: all 0.2s ease-in-out;
}
.stack-list-mobile .card .card-content .detail .detail-bottom .arrow-box img {
  z-index: 2;
  padding-left: 4px;
  width: 20px;
  flex-shrink: 0;
  filter: invert(1) brightness(999%);
}
.stack-list-mobile .card .card-content .photos {
  align-self: flex-end;
  flex: 1;
  max-width: 80%;
  display: flex;
  gap: 24px;
}
.stack-list-mobile .card .card-content .photos .img-box {
  flex: 1;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.stack-list-mobile .card .card-content .photos .img-box img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 2.4s ease-in-out;
  transform: scale(1);
}
.stack-list-mobile .card .card-content .photos .img-box:hover img {
  transform: scale(1.12);
}

.section3 {
  width: 100%;
  background-color: white;
  padding: 24px 24px 24px var(--nav-width);
}
@media (max-width: 990px) {
  .section3 {
    padding: 24px 0px;
  }
}
.section3 .main-bg {
  width: 100%;
  min-height: 820px;
  position: relative;
  overflow: hidden;
  display: flex;
}
.section3 .main-bg .main-video {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.section3 .main-bg .mask {
  --x: 50%;
  --y: 50%;
  --r: 0px;
  /* 預設半徑 0，等於完全沒挖洞，看起來就是純毛玻璃 */
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  transform: translate3d(0px, 0px, 0px);
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* 圓圈內 (0~r) 透明 -> 毛玻璃層被挖空 -> 透出底層清晰圖 */
  mask-image: radial-gradient(circle var(--r) at var(--x) var(--y), rgba(255, 255, 255, 0) calc(var(--r) - 1px), #ffffff var(--r));
  -webkit-mask-image: radial-gradient(circle var(--r) at var(--x) var(--y), rgba(255, 255, 255, 0) calc(var(--r) - 1px), #ffffff var(--r));
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  z-index: 2;
  transition: --r 0.25s ease-out;
}
.section3 .main-bg .mask.is-active {
  --r: 180px;
  /* 滑入時放大的洞 */
}
.section3 .main-bg .content-box {
  width: 100%;
  --x-offset: 48px;
  --box-padding: clamp(24px, 4.17vw, 80px);
  padding: 120px var(--box-padding) var(--box-padding) calc(var(--nav-width) + var(--x-offset));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 3;
  position: relative;
}
.section3 .main-bg .content-box h2 {
  font-size: var(--h2-size);
  color: white;
  font-weight: 200;
}
.section3 .main-bg .content-box .bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.section3 .main-bg .content-box .bottom p.note {
  color: white;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.section3 .main-bg .content-box .bottom .bottom-detail {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.section3 .main-bg .content-box .bottom .bottom-detail .building-cards {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}
.section3 .main-bg .content-box .bottom .bottom-detail .building-cards .build-card {
  background-color: white;
  padding: clamp(24px, 1.67vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 6px;
  gap: 24px;
}
.section3 .main-bg .content-box .bottom .bottom-detail .building-cards .build-card .photo-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: clamp(12px, 2.5vw, 48px);
  align-items: flex-start;
}
.section3 .main-bg .content-box .bottom .bottom-detail .building-cards .build-card .photo-title p.title {
  font-size: 16px;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  font-feature-settings: initial;
  -webkit-font-feature-settings: initial;
  line-height: 0.9;
  white-space: nowrap;
  color: var(--main-black);
  border-right: 1px dashed var(--main-black);
  padding-right: 8px;
  letter-spacing: 2px;
}
.section3 .main-bg .content-box .bottom .bottom-detail .building-cards .build-card .photo-title .img-box {
  flex: 1;
  max-width: 200px;
  overflow: hidden;
  aspect-ratio: 3/2.5;
}
.section3 .main-bg .content-box .bottom .bottom-detail .building-cards .build-card .photo-title .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 1s ease-in-out;
}
.section3 .main-bg .content-box .bottom .bottom-detail .building-cards .build-card .price-addr {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  color: var(--main-black);
  font-size: 16px;
  font-weight: 300;
}
.section3 .main-bg .content-box .bottom .bottom-detail .building-cards .build-card .price-addr .price {
  font-size: 32px;
  margin-right: 8px;
  font-weight: 400;
}
.section3 .main-bg .content-box .bottom .bottom-detail .building-cards .build-card:hover {
  background-color: var(--main-black);
}
.section3 .main-bg .content-box .bottom .bottom-detail .building-cards .build-card:hover .photo-title p.title {
  color: white;
  border-right: 1px dashed white;
}
.section3 .main-bg .content-box .bottom .bottom-detail .building-cards .build-card:hover .photo-title .img-box img {
  transform: scale(1.1);
}
.section3 .main-bg .content-box .bottom .bottom-detail .building-cards .build-card:hover .price-addr {
  color: white;
}
.section3 .main-bg .content-box .bottom .bottom-detail .btn-all {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.08vw, 40px);
  color: white;
  cursor: pointer;
  font-size: clamp(16px, 1.04vw, 20px);
  flex-wrap: wrap;
}
.section3 .main-bg .content-box .bottom .bottom-detail .btn-all .arrow-box {
  border-radius: 99px;
  height: 20px;
  width: 36px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 4px;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.section3 .main-bg .content-box .bottom .bottom-detail .btn-all .arrow-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: white;
  z-index: -1;
}
.section3 .main-bg .content-box .bottom .bottom-detail .btn-all .arrow-box img {
  padding: 0px 4px;
  width: 20px;
  flex-shrink: 0;
  filter: none;
}
.section3 .main-bg .content-box .bottom .bottom-detail .btn-all:hover .arrow-box {
  width: 20px;
  margin-left: 16px;
}
.section3 .main-bg .content-box .bottom .bottom-detail .btn-all:hover .arrow-box::after {
  background-color: var(--main-black);
}
.section3 .main-bg .content-box .bottom .bottom-detail .btn-all:hover .arrow-box img {
  filter: invert(1) brightness(999%);
}
@media (max-width: 990px) {
  .section3 .main-bg .content-box .bottom {
    width: 60%;
    align-self: flex-end;
  }
  .section3 .main-bg .content-box .bottom .bottom-detail {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
  }
  .section3 .main-bg .content-box .bottom .bottom-detail .building-cards {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
  }
  .section3 .main-bg .content-box .bottom .bottom-detail .building-cards .build-card {
    padding: clamp(28px, 2.29vw, 44px);
  }
  .section3 .main-bg .content-box .bottom .bottom-detail .building-cards .build-card .photo-title p.title {
    font-size: clamp(24px, 1.67vw, 32px);
  }
  .section3 .main-bg .content-box .bottom .bottom-detail .building-cards .build-card .photo-title .img-box {
    max-width: 280px;
  }
  .section3 .main-bg .content-box .bottom .bottom-detail .building-cards .build-card .price-addr {
    font-size: clamp(20px, 1.25vw, 24px);
  }
  .section3 .main-bg .content-box .bottom .bottom-detail .building-cards .build-card .price-addr .price {
    font-size: clamp(32px, 2.08vw, 40px);
  }
}
@media (max-width: 768px) {
  .section3 .main-bg .content-box .bottom {
    width: 80%;
  }
  .section3 .main-bg .content-box .bottom .bottom-detail .building-cards .build-card {
    aspect-ratio: 1/1;
  }
}
@media (max-width: 480px) {
  .section3 .main-bg .content-box .bottom {
    width: 100%;
  }
}
@media (max-width: 990px) {
  .section3 .main-bg .content-box {
    padding-left: var(--nav-width);
  }
  .section3 .main-bg .content-box h2 {
    margin-bottom: 120px;
  }
}

.section4 {
  width: 100%;
  --x-offset: 24px;
  padding: 120px var(--x-offset) 180px calc(var(--nav-width) + var(--x-offset));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 120px;
  background-color: white;
}
@media (max-width: 990px) {
  .section4 {
    padding-left: var(--nav-width);
  }
}
.section4 h2 {
  color: var(--main-black);
  font-size: var(--h2-size);
  font-weight: 200;
  margin-left: 44px;
}
@media (max-width: 990px) {
  .section4 h2 {
    margin-left: 0px;
  }
}
.section4 ul {
  width: 60%;
  list-style-type: none;
  align-self: flex-end;
  display: flex;
  flex-direction: column;
}
.section4 ul li a {
  --li-gap: clamp(16px, 1.25vw, 24px);
  padding: var(--li-gap);
  display: flex;
  text-decoration: none;
  position: relative;
}
.section4 ul li a::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #cecece;
}
.section4 ul li a .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--li-gap);
  font-size: clamp(16px, 1.04vw, 20px);
  color: var(--main-black);
}
.section4 ul li a .left .subtitle {
  font-size: clamp(12px, 0.73vw, 14px);
  font-weight: 400;
}
.section4 ul li a .left .title {
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 400;
}
.section4 ul li a img {
  width: 16px;
  transition: all 0.5s ease-in-out;
  transform: translateX(0);
}
.section4 ul li a .hover-line {
  position: absolute;
  display: inline-block;
  width: 100%;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--main-black);
  z-index: 2;
  width: 0px;
  transition: all 0.5s ease-in-out;
}
.section4 ul li a:hover .hover-line {
  width: 100%;
}
.section4 ul li a:hover img {
  transform: translateX(8px);
}
.section4 ul li:nth-last-child(1) a::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #cecece;
}
@media (max-width: 990px) {
  .section4 ul {
    width: 100%;
  }
}

footer {
  width: 100%;
  --x-offset: 24px;
  padding: 0 var(--x-offset) var(--x-offset) calc(var(--x-offset) + var(--nav-width));
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 990px) {
  footer {
    padding: 0px;
  }
}
footer ul.top {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-black);
  gap: 24px;
  padding: 24px 0;
  border-radius: 8px;
}
@media (max-width: 990px) {
  footer ul.top {
    display: none;
  }
}
footer ul.top li a {
  text-decoration: none;
  color: white;
  font-size: clamp(12px, 0.94vw, 18px);
  font-weight: 300;
}
footer ul.top li a:hover {
  opacity: 0.5;
}
footer .bottom {
  width: 100%;
  background-color: var(--main-black);
  padding: 120px 48px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 990px) {
  footer .bottom {
    padding-bottom: 120px;
    border-radius: 80px 80px 0 0;
  }
}
footer .bottom .logo.mobile {
  display: none;
  width: clamp(160px, 12.5vw, 240px);
  align-self: center;
  margin-bottom: 60px;
}
@media (max-width: 990px) {
  footer .bottom .logo.mobile {
    display: block;
  }
}
footer .bottom .info {
  width: 100%;
  display: flex;
}
@media (max-width: 990px) {
  footer .bottom .info {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
    margin-bottom: 48px;
  }
}
footer .bottom .info .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 24px;
}
@media (max-width: 990px) {
  footer .bottom .info .left {
    width: 100%;
  }
}
footer .bottom .info .left .logo.pc {
  width: 120px;
}
@media (max-width: 990px) {
  footer .bottom .info .left .logo.pc {
    display: none;
  }
}
footer .bottom .info .left .white-line {
  display: inline-block;
  height: 1px;
  background-color: white;
}
@media (max-width: 990px) {
  footer .bottom .info .left .white-line {
    display: none;
  }
}
footer .bottom .info .left .addrs {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 36px;
}
footer .bottom .info .left .addrs .addr-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: white;
  font-size: clamp(12px, 0.94vw, 18px);
  font-weight: 300;
}
footer .bottom .info .left .addrs .addr-item .label {
  margin-bottom: 24px;
}
@media (max-width: 990px) {
  footer .bottom .info .left .addrs {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .bottom .info .left .addrs .addr-item {
    width: 100%;
    font-size: clamp(20px, 1.88vw, 36px);
  }
  footer .bottom .info .left .addrs .addr-item .addr-nums,
  footer .bottom .info .left .addrs .addr-item .addr-detail {
    margin-left: 24px;
  }
}
footer .bottom .info a {
  max-width: 440px;
  border: 1px solid white;
  background-color: white;
  text-decoration: none;
  border-radius: 8px;
  padding: 24px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 120px;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 990px) {
  footer .bottom .info a {
    max-width: 100%;
  }
}
footer .bottom .info a .title {
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .bottom .info a .title .text {
  color: var(--main-black);
  line-height: 1;
}
@media (max-width: 990px) {
  footer .bottom .info a .title .text {
    font-size: 22px;
  }
}
footer .bottom .info a .title .arrow {
  padding: 0px 16px;
  border-radius: 999px;
  position: relative;
}
footer .bottom .info a .title .arrow::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 999px;
  background-color: var(--main-black);
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
footer .bottom .info a .title .arrow img {
  position: relative;
  filter: invert(1) brightness(999%);
  transition: all 0.2s ease-in-out;
  transform: translateX(0);
  width: 16px;
  z-index: 2;
}
footer .bottom .info a .slider {
  --width: 440px;
  --height: 28px;
  --quantity: 8;
  --time: 90s;
  height: var(--height);
  overflow: hidden;
}
@media (max-width: 990px) {
  footer .bottom .info a .slider {
    --width: 600px;
  }
}
footer .bottom .info a .slider .list {
  display: flex;
  height: var(--height);
  width: 100%;
  min-width: calc(var(--width) * (var(--quantity) - 1));
  position: relative;
}
footer .bottom .info a .slider .list .item {
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: autoRun var(--time) linear infinite;
  animation-delay: calc(var(--time) / var(--quantity) * (var(--position) - 1) - var(--time)) !important;
  cursor: pointer;
  overflow: visible;
  color: var(--main-black);
}
@media (max-width: 990px) {
  footer .bottom .info a .slider .list .item {
    font-size: 22px;
  }
}
@keyframes autoRun {
  from {
    left: 100%;
  }
  to {
    left: calc(var(--width) * -1);
  }
}
footer .bottom .info a:hover {
  background-color: var(--main-black);
}
footer .bottom .info a:hover .title .text {
  color: white;
}
footer .bottom .info a:hover .title .arrow::after {
  width: 50%;
}
footer .bottom .info a:hover .title .arrow img {
  transform: translateX(4px);
}
footer .bottom .info a:hover .slider .list .item {
  color: white;
}
footer .bottom .copy-right {
  width: 100%;
  color: white;
  font-size: 14px;
}
@media (max-width: 990px) {
  footer .bottom .copy-right {
    text-align: center;
    font-size: 20px;
    padding: 48px 0;
    border-top: 1px solid white;
  }
}

.pc-menu {
  z-index: 98;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  --bg-color: #707881;
  display: none;
}
.pc-menu.active {
  display: flex;
}
.pc-menu .menu-pic {
  flex: 1;
  overflow: hidden;
}
.pc-menu .menu-pic img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  filter: brightness(0.5);
}
.pc-menu .sec_ul {
  flex: 0.8;
  background-color: var(--bg-color);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 40px;
  gap: 80px;
}
.pc-menu .sec_ul ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
.pc-menu .sec_ul ul li a {
  text-decoration: none;
  color: white;
  font-size: clamp(12px, 0.83vw, 16px);
  font-weight: 300;
}
.pc-menu .sec_ul ul li a:hover {
  opacity: 0.5;
}
.pc-menu .sec_ul button.line {
  padding: 8px 18px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background-color: #06C755;
  color: white;
  border: none;
  outline: none;
  font-size: clamp(12px, 0.73vw, 14px);
  cursor: pointer;
}
.pc-menu .sec_ul button.line img {
  width: 20px;
  margin-top: 2px;
}
.pc-menu .sec_ul button.line:hover {
  background-color: #04b14c;
}
.pc-menu .menu-div {
  flex: 1;
  background-color: var(--bg-color);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pc-menu .menu-div::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 1px;
  height: 90%;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
}
.pc-menu .menu-div .title-box {
  padding: 12px;
  color: white;
  font-size: 20px;
  font-weight: 300;
  text-align: start;
  width: 100%;
}
.pc-menu .menu-div .a-box {
  padding: 28px 20px 28px 0px;
  height: 140px;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.pc-menu .menu-div .a-box:nth-child(4) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.pc-menu .menu-div .a-box .img-box {
  flex: 1;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.pc-menu .menu-div .a-box .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1);
  transition: transform 2s ease-in-out;
}
.pc-menu .menu-div .a-box .content {
  flex: 1.8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.pc-menu .menu-div .a-box .content .top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}
.pc-menu .menu-div .a-box .content .top .label {
  background-color: white;
  color: var(--bg-color);
  font-size: clamp(10px, 0.52vw, 10px);
  line-height: 1;
  padding: 2px 4px;
}
.pc-menu .menu-div .a-box .content .top .hash-tag {
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(10px, 0.52vw, 10px);
}
.pc-menu .menu-div .a-box .content .top .addr {
  color: white;
  font-size: clamp(10px, 0.68vw, 13px);
}
.pc-menu .menu-div .a-box .content .title {
  color: white;
  font-size: clamp(14px, 0.83vw, 16px);
  padding-bottom: 2px;
  border-bottom: 1px solid white;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  word-break: break-all;
  /* 關鍵：避免數字或英文成整塊被截掉 */
  white-space: normal;
}
.pc-menu .menu-div .a-box .content p.price {
  color: white;
  font-size: clamp(14px, 0.83vw, 16px);
  align-self: flex-end;
}
.pc-menu .menu-div .a-box .content p.price .big {
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 500;
  margin-right: 4px;
}
.pc-menu .menu-div .a-box:hover .img-box img {
  transform: scale(1.15);
}
.pc-menu .menu-div .bottom-btn-wrapper {
  padding: 12px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.pc-menu .menu-div .bottom-btn-wrapper a {
  text-decoration: none;
  color: white;
  font-family: clamp(10px, 0.63vw, 12px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.pc-menu .menu-div .bottom-btn-wrapper a .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 12px;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.pc-menu .menu-div .bottom-btn-wrapper a .arrow::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: white;
  border-radius: 999px;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
.pc-menu .menu-div .bottom-btn-wrapper a .arrow img {
  width: 10px;
  position: relative;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
.pc-menu .menu-div .bottom-btn-wrapper a:hover .arrow::before {
  width: 50%;
  background-color: #7c7c7c;
}
.pc-menu .menu-div .bottom-btn-wrapper a:hover .arrow img {
  filter: invert(1) brightness(999%);
  transform: translateX(4px);
}

.mobile-menu {
  z-index: 98;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  display: none;
  flex-direction: column;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu .btn-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-menu .btn-wrapper .mobileMenu-closeBtn {
  width: 60px;
  height: 24px;
  position: relative;
  cursor: pointer;
}
.mobile-menu .btn-wrapper .mobileMenu-closeBtn span.line {
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: white;
  width: 32px;
  height: 1px;
  display: inline-block;
}
.mobile-menu .btn-wrapper .mobileMenu-closeBtn span.line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(20deg);
  transform-origin: center;
}
.mobile-menu .btn-wrapper .mobileMenu-closeBtn span.line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-20deg);
  transform-origin: center;
}
.mobile-menu .nav-list {
  height: 88vh;
  max-height: 88vh;
  overflow-y: auto;
  background-color: #4F545A;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  padding-bottom: 120px;
}
.mobile-menu .nav-list img.logo {
  align-self: center;
  width: 160px;
  margin: 40px 0 32px;
}
.mobile-menu .nav-list .sec_ul {
  width: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobile-menu .nav-list .sec_ul ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.mobile-menu .nav-list .sec_ul ul li a {
  text-decoration: none;
  color: white;
  font-size: clamp(12px, 0.83vw, 16px);
  font-weight: 300;
}
.mobile-menu .nav-list .sec_ul ul li a:hover {
  opacity: 0.5;
}
.mobile-menu .nav-list .menu-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mobile-menu .nav-list .menu-div .title-box {
  padding: 12px;
  color: white;
  font-size: 20px;
  font-weight: 300;
  text-align: start;
  width: 100%;
}
.mobile-menu .nav-list .menu-div .a-box {
  padding: 28px 20px;
  height: 140px;
  display: flex;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-menu .nav-list .menu-div .a-box:nth-child(4) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-menu .nav-list .menu-div .a-box .img-box {
  width: 140px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.mobile-menu .nav-list .menu-div .a-box .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1);
  transition: transform 2s ease-in-out;
}
.mobile-menu .nav-list .menu-div .a-box .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.mobile-menu .nav-list .menu-div .a-box .content .top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}
.mobile-menu .nav-list .menu-div .a-box .content .top .label {
  background-color: white;
  color: var(--main-black);
  font-size: clamp(10px, 0.52vw, 10px);
  line-height: 1;
  padding: 2px 4px;
}
.mobile-menu .nav-list .menu-div .a-box .content .top .hash-tag {
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(10px, 0.52vw, 10px);
}
.mobile-menu .nav-list .menu-div .a-box .content .top .addr {
  color: white;
  font-size: clamp(10px, 0.68vw, 13px);
}
.mobile-menu .nav-list .menu-div .a-box .content .title {
  color: white;
  font-size: clamp(14px, 0.83vw, 16px);
  padding-bottom: 2px;
  border-bottom: 1px solid white;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  word-break: break-all;
  /* 關鍵：避免數字或英文成整塊被截掉 */
  white-space: normal;
}
.mobile-menu .nav-list .menu-div .a-box .content p.price {
  color: white;
  font-size: clamp(14px, 0.83vw, 16px);
  align-self: flex-end;
}
.mobile-menu .nav-list .menu-div .a-box .content p.price .big {
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 500;
  margin-right: 4px;
}
.mobile-menu .nav-list .menu-div .a-box:hover .img-box img {
  transform: scale(1.15);
}
.mobile-menu .nav-list .menu-div .bottom-btn-wrapper {
  padding: 12px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.mobile-menu .nav-list .menu-div .bottom-btn-wrapper a {
  text-decoration: none;
  color: white;
  font-family: clamp(10px, 0.63vw, 12px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-menu .nav-list .menu-div .bottom-btn-wrapper a .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 12px;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.mobile-menu .nav-list .menu-div .bottom-btn-wrapper a .arrow::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: white;
  border-radius: 999px;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
.mobile-menu .nav-list .menu-div .bottom-btn-wrapper a .arrow img {
  width: 10px;
  position: relative;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
.mobile-menu .nav-list .menu-div .bottom-btn-wrapper a:hover .arrow::before {
  width: 50%;
  background-color: #7c7c7c;
}
.mobile-menu .nav-list .menu-div .bottom-btn-wrapper a:hover .arrow img {
  filter: invert(1) brightness(999%);
  transform: translateX(4px);
}/*# sourceMappingURL=style.css.map */