@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap");
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  -webkit-text-size-adjust: 100%;
  background-color: #F4F4F4;
}

:focus-visible {
  outline: none;
}
@keyframes AnimeBtnLink_Next {
  0% {
    transform: translateX(0%);
  }
  45.99% {
    transform: translateX(100%);
    opacity: 0;
  }
  46% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes gradient-bar {
  0% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: 200%;
  }
}
/* Swiper 容器 (最外層 DIV) */
.swiper{
  position: relative;
  z-index: 1;
  display: flex;
  flex-grow: 1;
  list-style-type: none;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.swiper .swiper-notification {
  display: none !important;
}

/* Slide 內容的包裹器 (負責橫向移動) */
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  /* 必須是 Flex 佈局，讓 Slides 橫向排列 */
  transition-property: transform;
  /* 確保 CSS 過渡只作用於 transform */
  box-sizing: content-box;
  /* 確保寬度計算正確 */
  transform: translate3d(0px, 0, 0);
  /* 性能優化 */
}

/* 單個 Slide 元素 */
.swiper-slide {
  flex-shrink: 0;
  /* 必須，阻止 Slides 在 Flex 容器中收縮 */
  width: 100%;
  /* 確保每個 Slide 佔滿容器寬度 (單一 Slide 顯示模式) */
  height: 100%;
  position: relative;
  backface-visibility: hidden;
  transition-property: transform;
  /* 注意：如果 freeMode 中每個 item 尺寸不同，需要調整 w-full */
  /* * 例如，freeMode 常用於不滿一屏的 items，
     * 此時可能使用 w-[200px] 或 w-1/3 等。
     */
}

/* 基礎狀態：所有 Slides 預設為透明（隱藏）*/
.swiper-fade .swiper-slide {
  transition-property: opacity;
  opacity: 0;
}

/* 激活狀態：只有當前被選中的 Slide 才顯示 */
.swiper-fade .swiper-slide-active {
  opacity: 1;
}

/* 確保切換時，舊的 Slide 會在新的 Slide 淡入前一直顯示，避免閃爍。 */
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* 確保新的 Slide 在淡入期間，舊的 Slide 不會消失 */
.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  z-index: 10;
}

/* 確保未選中的 Slide 處於底層 */
.swiper-fade .swiper-slide:not(.swiper-slide-active) {
  z-index: 0;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: auto;
}

.swiper-pagination-bullet.default{
  aspect-ratio: 1 / 1;
  height: auto;
  width: 0.5rem;
  cursor: pointer;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(103 133 133 / var(--tw-bg-opacity, 1));
}

.marquee {
  animation: marquee 60s linear 0s infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/* ! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #727171; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Noto Sans TC, sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #4d4d4d; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #4d4d4d; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.pointer-events-none{
  pointer-events: none;
}
.visible{
  visibility: visible;
}
.collapse{
  visibility: collapse;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.inset-0{
  inset: 0px;
}
.-top-\[14px\]{
  top: -14px;
}
.bottom-0{
  bottom: 0px;
}
.bottom-1\/2{
  bottom: 50%;
}
.bottom-\[calc\(2\/5\*100\%\)\]{
  bottom: calc(2 / 5 * 100%);
}
.left-0{
  left: 0px;
}
.left-1\/2{
  left: 50%;
}
.left-4{
  left: 1rem;
}
.right-0{
  right: 0px;
}
.top-0{
  top: 0px;
}
.top-1\/2{
  top: 50%;
}
.top-\[clamp\(47px\2c 59\/19\.2\*1vw\2c 59px\)\]{
  top: clamp(47px, 59 / 19.2 * 1vw, 59px);
}
.top-full{
  top: 100%;
}
.top-\[calc\(1\/2\*100\%-20px\)\]{
  top: calc(1 / 2 * 100% - 20px);
}
.top-\[calc\(1\/2\*100\%-8px\)\]{
  top: calc(1 / 2 * 100% - 8px);
}
.z-0{
  z-index: 0;
}
.z-10{
  z-index: 10;
}
.z-50{
  z-index: 50;
}
.z-60{
  z-index: 60;
}
.z-\[119\]{
  z-index: 119;
}
.z-\[1\]{
  z-index: 1;
}
.z-\[2\]{
  z-index: 2;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-\[10px\]{
  margin-bottom: 10px;
}
.mb-\[43px\]{
  margin-bottom: 43px;
}
.me-3{
  margin-inline-end: 0.75rem;
}
.ms-auto{
  margin-inline-start: auto;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-3{
  margin-top: 0.75rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.contents{
  display: contents;
}
.hidden{
  display: none;
}
.aspect-\[464\/310\]{
  aspect-ratio: 464/310;
}
.aspect-\[621\/414\]{
  aspect-ratio: 621/414;
}
.aspect-\[834\/594\]{
  aspect-ratio: 834/594;
}
.aspect-square{
  aspect-ratio: 1 / 1;
}
.aspect-\[377\/234\]{
  aspect-ratio: 377/234;
}
.aspect-\[1920\/768\]{
  aspect-ratio: 1920/768;
}
.size-full{
  width: 100%;
  height: 100%;
}
.size-\[3px\]{
  width: 3px;
  height: 3px;
}
.h-\[1200px\]{
  height: 1200px;
}
.h-\[1px\]{
  height: 1px;
}
.h-\[2\.3px\]{
  height: 2.3px;
}
.h-\[30px\]{
  height: 30px;
}
.h-\[56px\]{
  height: 56px;
}
.h-\[57px\]{
  height: 57px;
}
.h-\[60px\]{
  height: 60px;
}
.h-\[calc\(3\/5\*100\%\)\]{
  height: calc(3 / 5 * 100%);
}
.h-auto{
  height: auto;
}
.h-dvh{
  height: 100dvh;
}
.h-full{
  height: 100%;
}
.min-h-\[222px\]{
  min-height: 222px;
}
.w-0{
  width: 0px;
}
.w-1\/2{
  width: 50%;
}
.w-10{
  width: 2.5rem;
}
.w-\[0\.25px\]{
  width: 0.25px;
}
.w-\[100px\]{
  width: 100px;
}
.w-\[143px\]{
  width: 143px;
}
.w-\[1px\]{
  width: 1px;
}
.w-\[21px\]{
  width: 21px;
}
.w-\[2px\]{
  width: 2px;
}
.w-\[42px\]{
  width: 42px;
}
.w-auto{
  width: auto;
}
.w-dvw{
  width: 100dvw;
}
.w-full{
  width: 100%;
}
.w-max{
  width: -moz-max-content;
  width: max-content;
}
.w-min{
  width: -moz-min-content;
  width: min-content;
}
.max-w-\[1300px\]{
  max-width: 1300px;
}
.max-w-\[1712px\]{
  max-width: 1712px;
}
.max-w-\[1760px\]{
  max-width: 1760px;
}
.max-w-\[300px\]{
  max-width: 300px;
}
.max-w-\[328px\]{
  max-width: 328px;
}
.max-w-\[353px\]{
  max-width: 353px;
}
.max-w-\[557px\]{
  max-width: 557px;
}
.max-w-\[596px\]{
  max-width: 596px;
}
.max-w-\[735px\]{
  max-width: 735px;
}
.max-w-\[802px\]{
  max-width: 802px;
}
.flex-shrink{
  flex-shrink: 1;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.flex-grow{
  flex-grow: 1;
}
.border-collapse{
  border-collapse: collapse;
}
.-translate-x-1\/2{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-full{
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2{
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-\[1px\]{
  --tw-translate-y: -1px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-\[70\%\]{
  --tw-translate-y: -70%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-\[calc\(50\%-43px\)\]{
  --tw-translate-y: calc(calc(50% - 43px) * -1);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-full{
  --tw-translate-y: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-full{
  --tw-translate-x: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[13\%\]{
  --tw-translate-y: 13%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[14px\]{
  --tw-translate-y: 14px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[5\%\]{
  --tw-translate-y: 5%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[9\%\]{
  --tw-translate-y: 9%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-1\/2{
  --tw-translate-x: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-\[10px\]{
  --tw-translate-x: -10px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[10px\]{
  --tw-translate-y: 10px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-\[20px\]{
  --tw-translate-x: -20px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[12px\]{
  --tw-translate-y: 12px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-45{
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-scale-x-100{
  --tw-scale-x: -1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-y-\[0\.9\]{
  --tw-scale-y: 0.9;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.columns-1{
  -moz-columns: 1;
       columns: 1;
}
.columns-2{
  -moz-columns: 2;
       columns: 2;
}
.columns-3{
  -moz-columns: 3;
       columns: 3;
}
.columns-4{
  -moz-columns: 4;
       columns: 4;
}
.columns-5{
  -moz-columns: 5;
       columns: 5;
}
.columns-6{
  -moz-columns: 6;
       columns: 6;
}
.columns-7{
  -moz-columns: 7;
       columns: 7;
}
.columns-8{
  -moz-columns: 8;
       columns: 8;
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-row-reverse{
  flex-direction: row-reverse;
}
.flex-col{
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-3{
  gap: 0.75rem;
}
.gap-x-12{
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.gap-x-3{
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
.gap-x-9{
  -moz-column-gap: 2.25rem;
       column-gap: 2.25rem;
}
.gap-x-\[10px\]{
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.gap-y-10{
  row-gap: 2.5rem;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-clip{
  overflow: clip;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-bl-\[clamp\(100px\2c 190\/19\.2\*1vw\2c 190px\)\]{
  border-bottom-left-radius: clamp(100px, 190 / 19.2 * 1vw, 190px);
}
.rounded-tl-\[calc\(151\/19\.2\*1vw\)\]{
  border-top-left-radius: calc(151 / 19.2 * 1vw);
}
.rounded-tr-\[calc\(120\/19\.2\*1vw\)\]{
  border-top-right-radius: calc(120 / 19.2 * 1vw);
}
.rounded-tl-\[calc\(42\/19\.2\*1vw\)\]{
  border-top-left-radius: calc(42 / 19.2 * 1vw);
}
.border{
  border-width: 1px;
}
.border-x-\[0\.25px\]{
  border-left-width: 0.25px;
  border-right-width: 0.25px;
}
.border-y-\[0\.25px\]{
  border-top-width: 0.25px;
  border-bottom-width: 0.25px;
}
.border-y-\[0\.5px\]{
  border-top-width: 0.5px;
  border-bottom-width: 0.5px;
}
.border-y{
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-b-\[0\.1px\]{
  border-bottom-width: 0.1px;
}
.border-b-\[0\.25px\]{
  border-bottom-width: 0.25px;
}
.border-b-\[0\.3px\]{
  border-bottom-width: 0.3px;
}
.border-b-\[0\.5px\]{
  border-bottom-width: 0.5px;
}
.border-e-\[0\.25px\]{
  border-inline-end-width: 0.25px;
}
.border-l-\[0\.25px\]{
  border-left-width: 0.25px;
}
.border-r-\[0\.25px\]{
  border-right-width: 0.25px;
}
.border-green-main{
  --tw-border-opacity: 1;
  border-color: rgb(103 133 133 / var(--tw-border-opacity, 1));
}
.border-green-main\/30{
  border-color: rgb(103 133 133 / 0.3);
}
.border-green-main\/50{
  border-color: rgb(103 133 133 / 0.5);
}
.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.bg-\[\#989898\]{
  --tw-bg-opacity: 1;
  background-color: rgb(152 152 152 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f4f4f4\]\/90{
  background-color: rgb(244 244 244 / 0.9);
}
.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-black\/95{
  background-color: rgb(0 0 0 / 0.95);
}
.bg-green-main{
  --tw-bg-opacity: 1;
  background-color: rgb(103 133 133 / var(--tw-bg-opacity, 1));
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-\[linear-gradient\(to_bottom\2c \#f4f4f4_20\%\2c transparent_85\%\)\]{
  background-image: linear-gradient(to bottom,#f4f4f4 20%,transparent 85%);
}
.bg-\[linear-gradient\(to_bottom\2c rgba\(255\2c 255\2c 255\2c 0\.5_0\%\2c transparent_100\%\)\)\]{
  background-image: linear-gradient(to bottom,rgba(255,255,255,0.5 0%,transparent 100%));
}
.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.object-center{
  -o-object-position: center;
     object-position: center;
}
.p-8{
  padding: 2rem;
}
.p-\[14px\]{
  padding: 14px;
}
.px-12{
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-\[10px\]{
  padding-left: 10px;
  padding-right: 10px;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-\[160px\]{
  padding-top: 160px;
  padding-bottom: 160px;
}
.pb-1{
  padding-bottom: 0.25rem;
}
.pb-\[120px\]{
  padding-bottom: 120px;
}
.pe-9{
  padding-inline-end: 2.25rem;
}
.ps-4{
  padding-inline-start: 1rem;
}
.pt-3{
  padding-top: 0.75rem;
}
.pt-\[160px\]{
  padding-top: 160px;
}
.pt-\[30vh\]{
  padding-top: 30vh;
}
.text-center{
  text-align: center;
}
.font-en{
  font-family: Cormorant Garamond, serif;
}
.font-sans{
  font-family: Noto Sans TC, sans-serif;
}
.font-serif{
  font-family: Noto Serif TC, serif;
}
.text-\[130px\]{
  font-size: 130px;
}
.text-\[13px\]{
  font-size: 13px;
}
.text-\[15px\]{
  font-size: 15px;
}
.text-\[17px\]{
  font-size: 17px;
}
.text-\[22px\]{
  font-size: 22px;
}
.text-\[28px\]{
  font-size: 28px;
}
.text-\[30px\]{
  font-size: 30px;
}
.text-\[33px\]{
  font-size: 33px;
}
.text-\[36px\]{
  font-size: 36px;
}
.text-\[38px\]{
  font-size: 38px;
}
.text-\[61px\]{
  font-size: 61px;
}
.text-\[75px\]{
  font-size: 75px;
}
.text-\[78px\]{
  font-size: 78px;
}
.text-lg{
  font-size: 18px;
}
.text-sm{
  font-size: 14px;
}
.text-xl{
  font-size: 20px;
}
.font-black{
  font-weight: 900;
}
.font-bold{
  font-weight: 700;
}
.font-light{
  font-weight: 300;
}
.font-medium{
  font-weight: 500;
}
.font-normal{
  font-weight: 400;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.lowercase{
  text-transform: lowercase;
}
.italic{
  font-style: italic;
}
.leading-\[0\.65\]{
  line-height: 0.65;
}
.leading-\[0\.8\]{
  line-height: 0.8;
}
.leading-\[0\.9\]{
  line-height: 0.9;
}
.leading-\[1\.2\]{
  line-height: 1.2;
}
.leading-\[1\.3\]{
  line-height: 1.3;
}
.leading-\[1\.7\]{
  line-height: 1.7;
}
.leading-\[1\.8\]{
  line-height: 1.8;
}
.leading-none{
  line-height: 1;
}
.leading-\[0\.7\]{
  line-height: 0.7;
}
.tracking-\[1\.8px\]{
  letter-spacing: 1.8px;
}
.tracking-\[2px\]{
  letter-spacing: 2px;
}
.tracking-wide{
  letter-spacing: 3px;
}
.tracking-wider{
  letter-spacing: 6px;
}
.text-\[\#333\]{
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}
.text-\[\#666\]{
  --tw-text-opacity: 1;
  color: rgb(102 102 102 / var(--tw-text-opacity, 1));
}
.text-\[\#989898\]{
  --tw-text-opacity: 1;
  color: rgb(152 152 152 / var(--tw-text-opacity, 1));
}
.text-\[\#b2b2b2\]{
  --tw-text-opacity: 1;
  color: rgb(178 178 178 / var(--tw-text-opacity, 1));
}
.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(77 77 77 / var(--tw-text-opacity, 1));
}
.text-green-main{
  --tw-text-opacity: 1;
  color: rgb(103 133 133 / var(--tw-text-opacity, 1));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.underline{
  text-decoration-line: underline;
}
.opacity-0{
  opacity: 0;
}
.opacity-100{
  opacity: 1;
}
.opacity-30{
  opacity: 0.3;
}
.opacity-40{
  opacity: 0.4;
}
.opacity-50{
  opacity: 0.5;
}
.outline{
  outline-style: solid;
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300{
  transition-duration: 300ms;
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.vw-text-\[122\]{
  font-size: clamp(97.60000000000001px, calc(122 / 19.2 * 1vw), 122px);
}
.vw-text-\[15\]{
  font-size: clamp(12px, calc(15 / 19.2 * 1vw), 15px);
}
.vw-text-\[17\]{
  font-size: clamp(13.600000000000001px, calc(17 / 19.2 * 1vw), 17px);
}
.vw-text-\[19\]{
  font-size: clamp(15.200000000000001px, calc(19 / 19.2 * 1vw), 19px);
}
.vw-text-\[22\]{
  font-size: clamp(17.6px, calc(22 / 19.2 * 1vw), 22px);
}
.vw-text-\[23\]{
  font-size: clamp(18.400000000000002px, calc(23 / 19.2 * 1vw), 23px);
}
.vw-text-\[26\]{
  font-size: clamp(20.8px, calc(26 / 19.2 * 1vw), 26px);
}
.vw-text-\[28\]{
  font-size: clamp(22.400000000000002px, calc(28 / 19.2 * 1vw), 28px);
}
.vw-text-\[33\]{
  font-size: clamp(26.400000000000002px, calc(33 / 19.2 * 1vw), 33px);
}
.vw-text-\[34\]{
  font-size: clamp(27.200000000000003px, calc(34 / 19.2 * 1vw), 34px);
}
.vw-text-\[36\]{
  font-size: clamp(28.8px, calc(36 / 19.2 * 1vw), 36px);
}
.vw-text-\[40\]{
  font-size: clamp(32px, calc(40 / 19.2 * 1vw), 40px);
}
.vw-text-\[42\]{
  font-size: clamp(33.6px, calc(42 / 19.2 * 1vw), 42px);
}
.vw-text-\[48\]{
  font-size: clamp(38.400000000000006px, calc(48 / 19.2 * 1vw), 48px);
}
.vw-text-\[60\]{
  font-size: clamp(48px, calc(60 / 19.2 * 1vw), 60px);
}
.vw-text-\[61\]{
  font-size: clamp(48.800000000000004px, calc(61 / 19.2 * 1vw), 61px);
}
.vw-text-\[78\]{
  font-size: clamp(62.400000000000006px, calc(78 / 19.2 * 1vw), 78px);
}
.vw-text-lg{
  font-size: clamp(14.4px, calc(18 / 19.2 * 1vw), 18px);
}
.vw-text-sm{
  font-size: clamp(11.200000000000001px, calc(14 / 19.2 * 1vw), 14px);
}
.vw-text-xl{
  font-size: clamp(16px, calc(20 / 19.2 * 1vw), 20px);
}
.vw-text-\[92\]{
  font-size: clamp(73.60000000000001px, calc(92 / 19.2 * 1vw), 92px);
}
.vw-gap-x-6{
  -moz-column-gap: calc(24 / 19.2 * 1vw);
       column-gap: calc(24 / 19.2 * 1vw);
}
.vw-gap-x-\[110\]{
  -moz-column-gap: calc(110 / 19.2 * 1vw);
       column-gap: calc(110 / 19.2 * 1vw);
}
.vw-gap-x-\[178\]{
  -moz-column-gap: calc(178 / 19.2 * 1vw);
       column-gap: calc(178 / 19.2 * 1vw);
}
.vw-gap-x-\[188\]{
  -moz-column-gap: calc(188 / 19.2 * 1vw);
       column-gap: calc(188 / 19.2 * 1vw);
}
.vw-gap-y-\[157\]{
  row-gap: calc(157 / 19.2 * 1vw);
}
.vw-h-\[151\]{
  height: calc(151 / 19.2 * 1vw);
}
.vw-h-\[440\]{
  height: calc(440 / 19.2 * 1vw);
}
.vw-h-\[98\]{
  height: calc(98 / 19.2 * 1vw);
}
.vw-left-\[100\]{
  left: calc(100 / 19.2 * 1vw);
}
.vw-left-\[83\]{
  left: calc(83 / 19.2 * 1vw);
}
.vw-mb-2{
  margin-bottom: calc(8 / 19.2 * 1vw);
}
.vw-mb-8{
  margin-bottom: calc(32 / 19.2 * 1vw);
}
.vw-mb-\[106px\]{
  margin-bottom: calc(106 / 19.2 * 1vw);
}
.vw-mb-\[188\]{
  margin-bottom: calc(188 / 19.2 * 1vw);
}
.vw-mb-\[18\]{
  margin-bottom: calc(18 / 19.2 * 1vw);
}
.vw-mb-\[23\]{
  margin-bottom: calc(23 / 19.2 * 1vw);
}
.vw-mb-\[245\]{
  margin-bottom: calc(245 / 19.2 * 1vw);
}
.vw-ml-\[10\]{
  margin-left: calc(10 / 19.2 * 1vw);
}
.vw-ml-\[310\]{
  margin-left: calc(310 / 19.2 * 1vw);
}
.vw-ml-\[450\]{
  margin-left: calc(450 / 19.2 * 1vw);
}
.vw-ml-\[6\]{
  margin-left: calc(6 / 19.2 * 1vw);
}
.vw-mt-2{
  margin-top: calc(8 / 19.2 * 1vw);
}
.vw-mt-8{
  margin-top: calc(32 / 19.2 * 1vw);
}
.vw-mt-\[-188\]{
  margin-top: calc(-188 / 19.2 * 1vw);
}
.vw-mt-\[102\]{
  margin-top: calc(102 / 19.2 * 1vw);
}
.vw-mt-\[146\]{
  margin-top: calc(146 / 19.2 * 1vw);
}
.vw-mt-\[190\]{
  margin-top: calc(190 / 19.2 * 1vw);
}
.vw-mt-\[60\]{
  margin-top: calc(60 / 19.2 * 1vw);
}
.vw-mt-\[68\]{
  margin-top: calc(68 / 19.2 * 1vw);
}
.vw-mt-\[86\]{
  margin-top: calc(86 / 19.2 * 1vw);
}
.vw-pb-\[120\]{
  padding-bottom: calc(120 / 19.2 * 1vw);
}
.vw-pb-\[240\]{
  padding-bottom: calc(240 / 19.2 * 1vw);
}
.vw-pb-\[330\]{
  padding-bottom: calc(330 / 19.2 * 1vw);
}
.vw-pb-\[90\]{
  padding-bottom: calc(90 / 19.2 * 1vw);
}
.vw-pb-\[94\]{
  padding-bottom: calc(94 / 19.2 * 1vw);
}
.vw-pl-16{
  padding-left: calc(64 / 19.2 * 1vw);
}
.vw-pl-\[100\]{
  padding-left: calc(100 / 19.2 * 1vw);
}
.vw-pl-\[22\]{
  padding-left: calc(22 / 19.2 * 1vw);
}
.vw-pl-\[233\]{
  padding-left: calc(233 / 19.2 * 1vw);
}
.vw-pl-\[50\]{
  padding-left: calc(50 / 19.2 * 1vw);
}
.vw-pl-\[94\]{
  padding-left: calc(94 / 19.2 * 1vw);
}
.vw-pr-\[130\]{
  padding-right: calc(130 / 19.2 * 1vw);
}
.vw-pr-\[50\]{
  padding-right: calc(50 / 19.2 * 1vw);
}
.vw-pt-14{
  padding-top: calc(56 / 19.2 * 1vw);
}
.vw-pt-8{
  padding-top: calc(32 / 19.2 * 1vw);
}
.vw-pt-\[157\]{
  padding-top: calc(157 / 19.2 * 1vw);
}
.vw-pt-\[177\]{
  padding-top: calc(177 / 19.2 * 1vw);
}
.vw-pt-\[226\]{
  padding-top: calc(226 / 19.2 * 1vw);
}
.vw-pt-\[252\]{
  padding-top: calc(252 / 19.2 * 1vw);
}
.vw-pt-\[300\]{
  padding-top: calc(300 / 19.2 * 1vw);
}
.vw-pt-\[338\]{
  padding-top: calc(338 / 19.2 * 1vw);
}
.vw-px-6{
  padding-left: calc(24 / 19.2 * 1vw);
  padding-right: calc(24 / 19.2 * 1vw);
}
.vw-px-8{
  padding-left: calc(32 / 19.2 * 1vw);
  padding-right: calc(32 / 19.2 * 1vw);
}
.vw-px-\[354\]{
  padding-left: calc(354 / 19.2 * 1vw);
  padding-right: calc(354 / 19.2 * 1vw);
}
.vw-px-\[60\]{
  padding-left: calc(60 / 19.2 * 1vw);
  padding-right: calc(60 / 19.2 * 1vw);
}
.vw-py-20{
  padding-top: calc(80 / 19.2 * 1vw);
  padding-bottom: calc(80 / 19.2 * 1vw);
}
.vw-py-6{
  padding-top: calc(24 / 19.2 * 1vw);
  padding-bottom: calc(24 / 19.2 * 1vw);
}
.vw-py-\[26px\]{
  padding-top: calc(26 / 19.2 * 1vw);
  padding-bottom: calc(26 / 19.2 * 1vw);
}
.vw-top-\[110\]{
  top: calc(110 / 19.2 * 1vw);
}
.vw-w-\[1120\]{
  width: calc(1120 / 19.2 * 1vw);
}
.vw-w-\[124\]{
  width: calc(124 / 19.2 * 1vw);
}
.vw-w-\[1520\]{
  width: calc(1520 / 19.2 * 1vw);
}
.vw-w-\[1526\]{
  width: calc(1526 / 19.2 * 1vw);
}
.vw-w-\[1688\]{
  width: calc(1688 / 19.2 * 1vw);
}
.vw-w-\[234\]{
  width: calc(234 / 19.2 * 1vw);
}
.vw-w-\[24\]{
  width: calc(24 / 19.2 * 1vw);
}
.vw-w-\[29\]{
  width: calc(29 / 19.2 * 1vw);
}
.vw-w-\[352\]{
  width: calc(352 / 19.2 * 1vw);
}
.vw-w-\[464\]{
  width: calc(464 / 19.2 * 1vw);
}
.vw-w-\[520\]{
  width: calc(520 / 19.2 * 1vw);
}
.vw-w-\[556\]{
  width: calc(556 / 19.2 * 1vw);
}
.vw-w-\[608\]{
  width: calc(608 / 19.2 * 1vw);
}
.vw-w-\[610\]{
  width: calc(610 / 19.2 * 1vw);
}
.vw-w-\[621\]{
  width: calc(621 / 19.2 * 1vw);
}
.vw-w-\[63\]{
  width: calc(63 / 19.2 * 1vw);
}
.vw-w-\[640\]{
  width: calc(640 / 19.2 * 1vw);
}
.vw-w-\[65\]{
  width: calc(65 / 19.2 * 1vw);
}
.vw-w-\[6729\]{
  width: calc(6729 / 19.2 * 1vw);
}
.vw-w-\[760\]{
  width: calc(760 / 19.2 * 1vw);
}
.vw-w-\[770\]{
  width: calc(770 / 19.2 * 1vw);
}
.vw-w-\[804\]{
  width: calc(804 / 19.2 * 1vw);
}
.vw-w-\[834\]{
  width: calc(834 / 19.2 * 1vw);
}
.vw-w-\[910\]{
  width: calc(910 / 19.2 * 1vw);
}
.vw-w-\[912\]{
  width: calc(912 / 19.2 * 1vw);
}
.vw-w-\[994\]{
  width: calc(994 / 19.2 * 1vw);
}
.vw-h-\[234\]{
  height: calc(234 / 19.2 * 1vw);
}
.vw-gap-x-\[55\]{
  -moz-column-gap: calc(55 / 19.2 * 1vw);
       column-gap: calc(55 / 19.2 * 1vw);
}
.vw-px-\[120\]{
  padding-left: calc(120 / 19.2 * 1vw);
  padding-right: calc(120 / 19.2 * 1vw);
}
.vw-px-\[21\]{
  padding-left: calc(21 / 19.2 * 1vw);
  padding-right: calc(21 / 19.2 * 1vw);
}
.vw-py-\[33\]{
  padding-top: calc(33 / 19.2 * 1vw);
  padding-bottom: calc(33 / 19.2 * 1vw);
}
.vw-mr-\[23\]{
  margin-right: calc(23 / 19.2 * 1vw);
}
.vw-mt-\[44\]{
  margin-top: calc(44 / 19.2 * 1vw);
}
.vw-mr-\[180\]{
  margin-right: calc(180 / 19.2 * 1vw);
}
.vw-mr-\[340\]{
  margin-right: calc(340 / 19.2 * 1vw);
}
.vw-left-\[1600\]{
  left: calc(1600 / 19.2 * 1vw);
}
.vw-left-\[1420\]{
  left: calc(1420 / 19.2 * 1vw);
}
.vw-pt-\[250\]{
  padding-top: calc(250 / 19.2 * 1vw);
}
.vw-h-\[293\]{
  height: calc(293 / 19.2 * 1vw);
}
.tf {
    top: 50%;
    left: 50%;
    --tw-translate-y: -50%;
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
.tf-x {
    left: 50%;
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
.tf-y {
    top: 50%;
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
.text-justify-center{
  text-align: justify;
    -moz-text-align-last: center;
         text-align-last: center;
}
.\[writing-mode\:vertical-lr\]{
  writing-mode: vertical-lr;
}
.basic-hover {
  cursor: pointer;
  transition: all 0.3s;
}
.basic-hover:hover {
  opacity: 0.6;
}

@media (max-width: 1200px) {
  input,
  textarea,
  select {
    border-radius: 0;
  }
}

input[type=text].error,
textarea.error,
select.error {
  border-bottom: 1px solid #f00 !important;
}

.check-area.error input[type=checkbox] {
  border: 1px solid #f00 !important;
}

svg {
  overflow: visible;
}

body {
  overflow-x: clip;
  --lock: 0px;
}
body.is-lock {
  overflow-y: hidden;
  margin-right: var(--lock);
}
@media (max-width: 900px) {
  body.is-lock {
    margin-right: 0;
    overflow: hidden;
  }
}

.topmenu-fixed{
  --tw-translate-y: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.topmenu-fixed.is-show{
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

footer {
  background-image: url("images/footer-bg.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

main > article{
  width: 100%;
}

.container {
  max-width: 900px;
}

.container-99{
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1070px;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.circle{
  border-radius: 9999px;
  border-width: 0.25px;
  border-color: rgb(103 133 133 / 0.3);
}

.info-content{
  font-family: Noto Serif TC, serif;
  --tw-text-opacity: 1;
  color: rgb(102 102 102 / var(--tw-text-opacity, 1));
  font-size: clamp(15.200000000000001px, calc(19 / 19.2 * 1vw), 19px);
}

.last\:mb-\[unset\]:last-child{
  margin-bottom: unset;
}

.hover\:text-black:hover{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.group:hover .group-hover\:w-\[105\%\]{
  width: 105%;
}

.group:hover .group-hover\:text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.group:hover .group-hover\:text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.group:hover .group-hover\:opacity-100{
  opacity: 1;
}

@media (orientation: portrait){
  .portrait\:hidden{
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
