@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;
}
.sticky{
  position: sticky;
}
.inset-0{
  inset: 0px;
}
.-bottom-1\/2{
  bottom: -50%;
}
.-left-\[1px\]{
  left: -1px;
}
.-right-\[1px\]{
  right: -1px;
}
.-top-\[14px\]{
  top: -14px;
}
.bottom-0{
  bottom: 0px;
}
.bottom-\[1px\]{
  bottom: 1px;
}
.bottom-\[36\%\]{
  bottom: 36%;
}
.bottom-\[44\%\]{
  bottom: 44%;
}
.bottom-\[calc\(2\/5\*100\%\)\]{
  bottom: calc(2 / 5 * 100%);
}
.left-0{
  left: 0px;
}
.left-1\/2{
  left: 50%;
}
.left-16{
  left: 4rem;
}
.left-4{
  left: 1rem;
}
.left-\[43px\]{
  left: 43px;
}
.left-\[5\%\]{
  left: 5%;
}
.left-\[calc\(400\/19\.2\*1vw\)\]{
  left: calc(400 / 19.2 * 1vw);
}
.right-0{
  right: 0px;
}
.top-0{
  top: 0px;
}
.top-1\/2{
  top: 50%;
}
.top-14{
  top: 3.5rem;
}
.top-\[36\%\]{
  top: 36%;
}
.top-\[calc\(\(490\/19\.2\*1vw\)\+80px\)\]{
  top: calc((490 / 19.2 * 1vw) + 80px);
}
.top-\[clamp\(47px\2c 59\/19\.2\*1vw\2c 59px\)\]{
  top: clamp(47px, 59 / 19.2 * 1vw, 59px);
}
.top-full{
  top: 100%;
}
.z-0{
  z-index: 0;
}
.z-10{
  z-index: 10;
}
.z-50{
  z-index: 50;
}
.z-60{
  z-index: 60;
}
.z-90{
  z-index: 90;
}
.z-\[0\]{
  z-index: 0;
}
.z-\[119\]{
  z-index: 119;
}
.z-\[1\]{
  z-index: 1;
}
.z-\[2\]{
  z-index: 2;
}
.z-\[64\]{
  z-index: 64;
}
.z-\[65\]{
  z-index: 65;
}
.z-\[99999\]{
  z-index: 99999;
}
.z-\[99\]{
  z-index: 99;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.-mt-\[clamp\(2px\2c 4\/19\.2\*1vw\2c 4px\)\]{
  margin-top: calc(clamp(2px, 4 / 19.2 * 1vw, 4px) * -1);
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-\[10px\]{
  margin-bottom: 10px;
}
.mb-\[25px\]{
  margin-bottom: 25px;
}
.mb-\[43px\]{
  margin-bottom: 43px;
}
.mb-\[calc\(28\/3\.75\*1vw\)\]{
  margin-bottom: calc(28 / 3.75 * 1vw);
}
.mb-\[calc\(30\/3\.75\*1vw\)\]{
  margin-bottom: calc(30 / 3.75 * 1vw);
}
.mb-\[clamp\(8px\*0\.8\2c 8\/19\.2\*1vw\2c 8px\)\]{
  margin-bottom: clamp(8px * 0.8, 8 / 19.2 * 1vw, 8px);
}
.me-3{
  margin-inline-end: 0.75rem;
}
.me-\[6px\]{
  margin-inline-end: 6px;
}
.me-auto{
  margin-inline-end: auto;
}
.ml-\[clamp\(10px\*0\.8\2c 10\/19\.2\*1vw\2c 10px\)\]{
  margin-left: clamp(10px * 0.8, 10 / 19.2 * 1vw, 10px);
}
.ml-\[clamp\(6px\*0\.8\2c 6\/19\.2\*1vw\2c 6px\)\]{
  margin-left: clamp(6px * 0.8, 6 / 19.2 * 1vw, 6px);
}
.ms-2{
  margin-inline-start: 0.5rem;
}
.ms-\[29px\]{
  margin-inline-start: 29px;
}
.ms-\[calc\(400\/19\.2\*1vw\)\]{
  margin-inline-start: calc(400 / 19.2 * 1vw);
}
.ms-auto{
  margin-inline-start: auto;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-3{
  margin-top: 0.75rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-8{
  margin-top: 2rem;
}
.mt-\[calc\(50\/3\.75\*1vw\)\]{
  margin-top: calc(50 / 3.75 * 1vw);
}
.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-\[1920\/655\]{
  aspect-ratio: 1920/655;
}
.aspect-\[1920\/768\]{
  aspect-ratio: 1920/768;
}
.aspect-\[360\/201\]{
  aspect-ratio: 360/201;
}
.aspect-\[377\/234\]{
  aspect-ratio: 377/234;
}
.aspect-\[454\/297\]{
  aspect-ratio: 454/297;
}
.aspect-\[464\/310\]{
  aspect-ratio: 464/310;
}
.aspect-\[480\/270\]{
  aspect-ratio: 480/270;
}
.aspect-\[621\/414\]{
  aspect-ratio: 621/414;
}
.aspect-\[834\/594\]{
  aspect-ratio: 834/594;
}
.aspect-square{
  aspect-ratio: 1 / 1;
}
.size-\[3px\]{
  width: 3px;
  height: 3px;
}
.size-\[calc\(73\/19\.2\*1vw\)\]{
  width: calc(73 / 19.2 * 1vw);
  height: calc(73 / 19.2 * 1vw);
}
.size-\[clamp\(34px\2c 34\/3\.75\*1vw\2c 50px\)\]{
  width: clamp(34px, 34 / 3.75 * 1vw, 50px);
  height: clamp(34px, 34 / 3.75 * 1vw, 50px);
}
.size-full{
  width: 100%;
  height: 100%;
}
.h-\[17px\]{
  height: 17px;
}
.h-\[1px\]{
  height: 1px;
}
.h-\[2\.3px\]{
  height: 2.3px;
}
.h-\[2px\]{
  height: 2px;
}
.h-\[50px\]{
  height: 50px;
}
.h-\[52px\]{
  height: 52px;
}
.h-\[56px\]{
  height: 56px;
}
.h-\[57px\]{
  height: 57px;
}
.h-\[60px\]{
  height: 60px;
}
.h-\[686px\]{
  height: 686px;
}
.h-\[80px\]{
  height: 80px;
}
.h-\[calc\(3\/5\*100\%\)\]{
  height: calc(3 / 5 * 100%);
}
.h-\[calc\(515\/686\*100\%\)\]{
  height: calc(515 / 686 * 100%);
}
.h-\[calc\(800\/19\.2\*1vw\)\]{
  height: calc(800 / 19.2 * 1vw);
}
.h-\[clamp\(98px\*0\.8\2c 98\/19\.2\*1vw\2c 98px\)\]{
  height: clamp(98px * 0.8, 98 / 19.2 * 1vw, 98px);
}
.h-auto{
  height: auto;
}
.h-dvh{
  height: 100dvh;
}
.h-full{
  height: 100%;
}
.h-lvh{
  height: 100lvh;
}
.h-px{
  height: 1px;
}
.max-h-\[90dvh\]{
  max-height: 90dvh;
}
.min-h-\[222px\]{
  min-height: 222px;
}
.min-h-\[3em\]{
  min-height: 3em;
}
.min-h-full{
  min-height: 100%;
}
.w-0{
  width: 0px;
}
.w-1\/2{
  width: 50%;
}
.w-10{
  width: 2.5rem;
}
.w-3{
  width: 0.75rem;
}
.w-6{
  width: 1.5rem;
}
.w-\[0\.25px\]{
  width: 0.25px;
}
.w-\[100px\]{
  width: 100px;
}
.w-\[101px\]{
  width: 101px;
}
.w-\[10px\]{
  width: 10px;
}
.w-\[11px\]{
  width: 11px;
}
.w-\[162px\]{
  width: 162px;
}
.w-\[182px\]{
  width: 182px;
}
.w-\[1px\]{
  width: 1px;
}
.w-\[21px\]{
  width: 21px;
}
.w-\[230px\]{
  width: 230px;
}
.w-\[25px\]{
  width: 25px;
}
.w-\[267px\]{
  width: 267px;
}
.w-\[2px\]{
  width: 2px;
}
.w-\[33px\]{
  width: 33px;
}
.w-\[37px\]{
  width: 37px;
}
.w-\[407px\]{
  width: 407px;
}
.w-\[42px\]{
  width: 42px;
}
.w-\[90\%\]{
  width: 90%;
}
.w-\[9px\]{
  width: 9px;
}
.w-\[calc\(177\/3\.75\*1vw\)\]{
  width: calc(177 / 3.75 * 1vw);
}
.w-\[calc\(806\/3\.75\*1vw\)\]{
  width: calc(806 / 3.75 * 1vw);
}
.w-\[clamp\(143px\*0\.8\2c 143\/19\.2\*1vw\2c 143px\)\]{
  width: clamp(143px * 0.8, 143 / 19.2 * 1vw, 143px);
}
.w-\[clamp\(63px\*0\.8\2c 63\/19\.2\*1vw\2c 63px\)\]{
  width: clamp(63px * 0.8, 63 / 19.2 * 1vw, 63px);
}
.w-auto{
  width: auto;
}
.w-full{
  width: 100%;
}
.w-max{
  width: -moz-max-content;
  width: max-content;
}
.w-min{
  width: -moz-min-content;
  width: min-content;
}
.min-w-\[365px\]{
  min-width: 365px;
}
.min-w-full{
  min-width: 100%;
}
.max-w-\[1300px\]{
  max-width: 1300px;
}
.max-w-\[1712px\]{
  max-width: 1712px;
}
.max-w-\[1760px\]{
  max-width: 1760px;
}
.max-w-\[480px\]{
  max-width: 480px;
}
.max-w-\[557px\]{
  max-width: 557px;
}
.max-w-\[596px\]{
  max-width: 596px;
}
.max-w-\[728px\]{
  max-width: 728px;
}
.max-w-\[735px\]{
  max-width: 735px;
}
.max-w-\[802px\]{
  max-width: 802px;
}
.max-w-full{
  max-width: 100%;
}
.flex-\[1_1_0\]{
  flex: 1 1 0;
}
.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-\[calc\(20\/19\.2\*1vw\)\]{
  --tw-translate-x: calc(calc(20 / 19.2 * 1vw) * -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-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-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-\[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-\[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-y-\[calc\(12\/19\.2\*1vw\)\]{
  --tw-translate-y: calc(12 / 19.2 * 1vw);
  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-\[clamp\(6px\*0\.8\2c 6\/19\.2\*1vw\2c 6px\)\]{
  --tw-translate-y: clamp(6px * 0.8, 6 / 19.2 * 1vw, 6px);
  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));
}
.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));
}
.cursor-pointer{
  cursor: pointer;
}
.resize{
  resize: both;
}
.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-7{
  gap: 1.75rem;
}
.gap-x-1{
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
.gap-x-3{
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
.gap-x-4{
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-x-5{
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
.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;
}
.gap-y-3{
  row-gap: 0.75rem;
}
.overflow-auto{
  overflow: auto;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-clip{
  overflow: clip;
}
.overflow-y-auto{
  overflow-y: auto;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-bl-\[calc\(180\/19\.2\*1vw\)\]{
  border-bottom-left-radius: calc(180 / 19.2 * 1vw);
}
.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\(105\/19\.2\*1vw\)\]{
  border-top-left-radius: calc(105 / 19.2 * 1vw);
}
.rounded-tl-\[calc\(151\/19\.2\*1vw\)\]{
  border-top-left-radius: calc(151 / 19.2 * 1vw);
}
.rounded-tl-\[calc\(42\/19\.2\*1vw\)\]{
  border-top-left-radius: calc(42 / 19.2 * 1vw);
}
.rounded-tl-\[calc\(54\/19\.2\*1vw\)\]{
  border-top-left-radius: calc(54 / 19.2 * 1vw);
}
.rounded-tl-full{
  border-top-left-radius: 9999px;
}
.rounded-tr-\[calc\(120\/19\.2\*1vw\)\]{
  border-top-right-radius: calc(120 / 19.2 * 1vw);
}
.rounded-tr-full{
  border-top-right-radius: 9999px;
}
.border{
  border-width: 1px;
}
.border-x-\[0\.25px\]{
  border-left-width: 0.25px;
  border-right-width: 0.25px;
}
.border-x-\[0\.5px\]{
  border-left-width: 0.5px;
  border-right-width: 0.5px;
}
.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-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-b-\[0\.8px\]{
  border-bottom-width: 0.8px;
}
.border-e-\[0\.25px\]{
  border-inline-end-width: 0.25px;
}
.border-l-\[0\.25px\]{
  border-left-width: 0.25px;
}
.border-l-\[0\.5px\]{
  border-left-width: 0.5px;
}
.border-l-\[0\.75px\]{
  border-left-width: 0.75px;
}
.border-r-\[0\.25px\]{
  border-right-width: 0.25px;
}
.border-r-\[0\.5px\]{
  border-right-width: 0.5px;
}
.border-t-\[0\.5px\]{
  border-top-width: 0.5px;
}
.border-\[\#666\]{
  --tw-border-opacity: 1;
  border-color: rgb(102 102 102 / var(--tw-border-opacity, 1));
}
.border-black{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}
.border-green-main{
  --tw-border-opacity: 1;
  border-color: rgb(103 133 133 / var(--tw-border-opacity, 1));
}
.border-green-main\/20{
  border-color: rgb(103 133 133 / 0.2);
}
.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-\[\#e5e5e5\]{
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
}
.bg-\[\#eff0f0\]{
  --tw-bg-opacity: 1;
  background-color: rgb(239 240 240 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f4f4f4\]{
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 244 / 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\/40{
  background-color: rgb(0 0 0 / 0.4);
}
.bg-black\/50{
  background-color: rgb(0 0 0 / 0.5);
}
.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%);
}
.bg-cover{
  background-size: cover;
}
.bg-center{
  background-position: center;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.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-5{
  padding: 1.25rem;
}
.p-8{
  padding: 2rem;
}
.p-\[14px\]{
  padding: 14px;
}
.px-12{
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-\[10px\]{
  padding-left: 10px;
  padding-right: 10px;
}
.px-\[calc\(28\/3\.75\*1vw\)\]{
  padding-left: calc(28 / 3.75 * 1vw);
  padding-right: calc(28 / 3.75 * 1vw);
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-\[14px\]{
  padding-top: 14px;
  padding-bottom: 14px;
}
.py-\[160px\]{
  padding-top: 160px;
  padding-bottom: 160px;
}
.py-\[clamp\(4px\2c 8\/19\.2\*1vw\2c 8px\)\]{
  padding-top: clamp(4px, 8 / 19.2 * 1vw, 8px);
  padding-bottom: clamp(4px, 8 / 19.2 * 1vw, 8px);
}
.pb-1{
  padding-bottom: 0.25rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pb-\[120px\]{
  padding-bottom: 120px;
}
.pb-\[calc\(57\/3\.75\*1vw\)\]{
  padding-bottom: calc(57 / 3.75 * 1vw);
}
.pe-9{
  padding-inline-end: 2.25rem;
}
.ps-4{
  padding-inline-start: 1rem;
}
.ps-\[42px\]{
  padding-inline-start: 42px;
}
.pt-3{
  padding-top: 0.75rem;
}
.pt-\[160px\]{
  padding-top: 160px;
}
.pt-\[30vh\]{
  padding-top: 30vh;
}
.pt-\[calc\(36\/3\.75\*1vw\)\]{
  padding-top: calc(36 / 3.75 * 1vw);
}
.text-center{
  text-align: center;
}
.text-justify{
  text-align: justify;
}
.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-\[13px\]{
  font-size: 13px;
}
.text-\[15px\]{
  font-size: 15px;
}
.text-\[17px\]{
  font-size: 17px;
}
.text-\[21px\]{
  font-size: 21px;
}
.text-\[22px\]{
  font-size: 22px;
}
.text-\[30px\]{
  font-size: 30px;
}
.text-\[33px\]{
  font-size: 33px;
}
.text-\[36px\]{
  font-size: 36px;
}
.text-\[61px\]{
  font-size: 61px;
}
.text-\[66px\]{
  font-size: 66px;
}
.text-\[75px\]{
  font-size: 75px;
}
.text-\[7px\]{
  font-size: 7px;
}
.text-\[8px\]{
  font-size: 8px;
}
.text-base{
  font-size: 16px;
}
.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-extrabold{
  font-weight: 800;
}
.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\.4\]{
  line-height: 1.4;
}
.leading-\[1\.6\]{
  line-height: 1.6;
}
.leading-\[1\.7\]{
  line-height: 1.7;
}
.leading-\[1\.8\]{
  line-height: 1.8;
}
.leading-none{
  line-height: 1;
}
.tracking-\[1\.8px\]{
  letter-spacing: 1.8px;
}
.tracking-\[2px\]{
  letter-spacing: 2px;
}
.tracking-\[4px\]{
  letter-spacing: 4px;
}
.tracking-normal{
  letter-spacing: 1px;
}
.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-\[\#808080\]{
  --tw-text-opacity: 1;
  color: rgb(128 128 128 / 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-gray-600{
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / 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-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;
}
.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300{
  transition-duration: 300ms;
}
.duration-\[0\.8s\]{
  transition-duration: 0.8s;
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.will-change-\[clip-path\]{
  will-change: clip-path;
}
.vw-text-\[122\]{
  font-size: clamp(97.60000000000001px, calc(122 / 19.2 * 1vw), 122px);
}
.vw-text-\[130\]{
  font-size: clamp(104px, calc(130 / 19.2 * 1vw), 130px);
}
.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-\[20\]{
  font-size: clamp(16px, calc(20 / 19.2 * 1vw), 20px);
}
.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-\[24\]{
  font-size: clamp(19.200000000000003px, calc(24 / 19.2 * 1vw), 24px);
}
.vw-text-\[26\]{
  font-size: clamp(20.8px, calc(26 / 19.2 * 1vw), 26px);
}
.vw-text-\[27\]{
  font-size: clamp(21.6px, calc(27 / 19.2 * 1vw), 27px);
}
.vw-text-\[28\]{
  font-size: clamp(22.400000000000002px, calc(28 / 19.2 * 1vw), 28px);
}
.vw-text-\[30\]{
  font-size: clamp(24px, calc(30 / 19.2 * 1vw), 30px);
}
.vw-text-\[32\]{
  font-size: clamp(25.6px, calc(32 / 19.2 * 1vw), 32px);
}
.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-\[38\]{
  font-size: clamp(30.400000000000002px, calc(38 / 19.2 * 1vw), 38px);
}
.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-\[53\]{
  font-size: clamp(42.400000000000006px, calc(53 / 19.2 * 1vw), 53px);
}
.vw-text-\[54\]{
  font-size: clamp(43.2px, calc(54 / 19.2 * 1vw), 54px);
}
.vw-text-\[58\]{
  font-size: clamp(46.400000000000006px, calc(58 / 19.2 * 1vw), 58px);
}
.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-\[68\]{
  font-size: clamp(54.400000000000006px, calc(68 / 19.2 * 1vw), 68px);
}
.vw-text-\[75\]{
  font-size: clamp(60px, calc(75 / 19.2 * 1vw), 75px);
}
.vw-text-\[78\]{
  font-size: clamp(62.400000000000006px, calc(78 / 19.2 * 1vw), 78px);
}
.vw-text-\[92\]{
  font-size: clamp(73.60000000000001px, calc(92 / 19.2 * 1vw), 92px);
}
.vw-text-base{
  font-size: clamp(12.8px, calc(16 / 19.2 * 1vw), 16px);
}
.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-gap-3{
  gap: calc(12 / 19.2 * 1vw);
}
.vw-gap-x-10{
  -moz-column-gap: calc(40 / 19.2 * 1vw);
       column-gap: calc(40 / 19.2 * 1vw);
}
.vw-gap-x-12{
  -moz-column-gap: calc(48 / 19.2 * 1vw);
       column-gap: calc(48 / 19.2 * 1vw);
}
.vw-gap-x-4{
  -moz-column-gap: calc(16 / 19.2 * 1vw);
       column-gap: calc(16 / 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-\[123\]{
  -moz-column-gap: calc(123 / 19.2 * 1vw);
       column-gap: calc(123 / 19.2 * 1vw);
}
.vw-gap-x-\[188\]{
  -moz-column-gap: calc(188 / 19.2 * 1vw);
       column-gap: calc(188 / 19.2 * 1vw);
}
.vw-gap-x-\[53\]{
  -moz-column-gap: calc(53 / 19.2 * 1vw);
       column-gap: calc(53 / 19.2 * 1vw);
}
.vw-gap-x-\[55\]{
  -moz-column-gap: calc(55 / 19.2 * 1vw);
       column-gap: calc(55 / 19.2 * 1vw);
}
.vw-gap-x-\[8\]{
  -moz-column-gap: calc(8 / 19.2 * 1vw);
       column-gap: calc(8 / 19.2 * 1vw);
}
.vw-gap-y-\[157\]{
  row-gap: calc(157 / 19.2 * 1vw);
}
.vw-gap-y-\[44\]{
  row-gap: calc(44 / 19.2 * 1vw);
}
.vw-gap-y-\[70\]{
  row-gap: calc(70 / 19.2 * 1vw);
}
.vw-h-\[151\]{
  height: calc(151 / 19.2 * 1vw);
}
.vw-h-\[234\]{
  height: calc(234 / 19.2 * 1vw);
}
.vw-h-\[293\]{
  height: calc(293 / 19.2 * 1vw);
}
.vw-h-\[440\]{
  height: calc(440 / 19.2 * 1vw);
}
.vw-left-\[100\]{
  left: calc(100 / 19.2 * 1vw);
}
.vw-left-\[1420\]{
  left: calc(1420 / 19.2 * 1vw);
}
.vw-left-\[224\]{
  left: calc(224 / 19.2 * 1vw);
}
.vw-left-\[83\]{
  left: calc(83 / 19.2 * 1vw);
}
.vw-mb-12{
  margin-bottom: calc(48 / 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-\[130\]{
  margin-bottom: calc(130 / 19.2 * 1vw);
}
.vw-mb-\[150\]{
  margin-bottom: calc(150 / 19.2 * 1vw);
}
.vw-mb-\[159\]{
  margin-bottom: calc(159 / 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-mb-\[38\]{
  margin-bottom: calc(38 / 19.2 * 1vw);
}
.vw-mb-\[50\]{
  margin-bottom: calc(50 / 19.2 * 1vw);
}
.vw-mb-\[54\]{
  margin-bottom: calc(54 / 19.2 * 1vw);
}
.vw-mb-\[6\]{
  margin-bottom: calc(6 / 19.2 * 1vw);
}
.vw-ml-\[310\]{
  margin-left: calc(310 / 19.2 * 1vw);
}
.vw-ml-\[450\]{
  margin-left: calc(450 / 19.2 * 1vw);
}
.vw-mr-3{
  margin-right: calc(12 / 19.2 * 1vw);
}
.vw-mr-\[210\]{
  margin-right: calc(210 / 19.2 * 1vw);
}
.vw-mr-\[23\]{
  margin-right: calc(23 / 19.2 * 1vw);
}
.vw-mt-10{
  margin-top: calc(40 / 19.2 * 1vw);
}
.vw-mt-2{
  margin-top: calc(8 / 19.2 * 1vw);
}
.vw-mt-3{
  margin-top: calc(12 / 19.2 * 1vw);
}
.vw-mt-6{
  margin-top: calc(24 / 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-\[195\]{
  margin-top: calc(195 / 19.2 * 1vw);
}
.vw-mt-\[44\]{
  margin-top: calc(44 / 19.2 * 1vw);
}
.vw-mt-\[56\]{
  margin-top: calc(56 / 19.2 * 1vw);
}
.vw-mt-\[60\]{
  margin-top: calc(60 / 19.2 * 1vw);
}
.vw-mt-\[65\]{
  margin-top: calc(65 / 19.2 * 1vw);
}
.vw-mt-\[68\]{
  margin-top: calc(68 / 19.2 * 1vw);
}
.vw-mt-\[72\]{
  margin-top: calc(72 / 19.2 * 1vw);
}
.vw-mt-\[86\]{
  margin-top: calc(86 / 19.2 * 1vw);
}
.vw-mx-2{
  margin-left: calc(8 / 19.2 * 1vw);
  margin-right: calc(8 / 19.2 * 1vw);
}
.vw-my-\[14\]{
  margin-top: calc(14 / 19.2 * 1vw);
  margin-bottom: calc(14 / 19.2 * 1vw);
}
.vw-p-9{
  padding: calc(36 / 19.2 * 1vw);
}
.vw-pb-7{
  padding-bottom: calc(28 / 19.2 * 1vw);
}
.vw-pb-\[120\]{
  padding-bottom: calc(120 / 19.2 * 1vw);
}
.vw-pb-\[158\]{
  padding-bottom: calc(158 / 19.2 * 1vw);
}
.vw-pb-\[162\]{
  padding-bottom: calc(162 / 19.2 * 1vw);
}
.vw-pb-\[170\]{
  padding-bottom: calc(170 / 19.2 * 1vw);
}
.vw-pb-\[218\]{
  padding-bottom: calc(218 / 19.2 * 1vw);
}
.vw-pb-\[223\]{
  padding-bottom: calc(223 / 19.2 * 1vw);
}
.vw-pb-\[240\]{
  padding-bottom: calc(240 / 19.2 * 1vw);
}
.vw-pb-\[260\]{
  padding-bottom: calc(260 / 19.2 * 1vw);
}
.vw-pb-\[330\]{
  padding-bottom: calc(330 / 19.2 * 1vw);
}
.vw-pb-\[525\]{
  padding-bottom: calc(525 / 19.2 * 1vw);
}
.vw-pb-\[66\]{
  padding-bottom: calc(66 / 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-10{
  padding-left: calc(40 / 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-\[47\]{
  padding-left: calc(47 / 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-10{
  padding-right: calc(40 / 19.2 * 1vw);
}
.vw-pr-\[130\]{
  padding-right: calc(130 / 19.2 * 1vw);
}
.vw-pr-\[26\]{
  padding-right: calc(26 / 19.2 * 1vw);
}
.vw-pr-\[30\]{
  padding-right: calc(30 / 19.2 * 1vw);
}
.vw-pr-\[50\]{
  padding-right: calc(50 / 19.2 * 1vw);
}
.vw-pr-\[73\]{
  padding-right: calc(73 / 19.2 * 1vw);
}
.vw-pt-14{
  padding-top: calc(56 / 19.2 * 1vw);
}
.vw-pt-3{
  padding-top: calc(12 / 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-\[173\]{
  padding-top: calc(173 / 19.2 * 1vw);
}
.vw-pt-\[177\]{
  padding-top: calc(177 / 19.2 * 1vw);
}
.vw-pt-\[221\]{
  padding-top: calc(221 / 19.2 * 1vw);
}
.vw-pt-\[226\]{
  padding-top: calc(226 / 19.2 * 1vw);
}
.vw-pt-\[250\]{
  padding-top: calc(250 / 19.2 * 1vw);
}
.vw-pt-\[252\]{
  padding-top: calc(252 / 19.2 * 1vw);
}
.vw-pt-\[256\]{
  padding-top: calc(256 / 19.2 * 1vw);
}
.vw-pt-\[300\]{
  padding-top: calc(300 / 19.2 * 1vw);
}
.vw-pt-\[338\]{
  padding-top: calc(338 / 19.2 * 1vw);
}
.vw-pt-\[80\]{
  padding-top: calc(80 / 19.2 * 1vw);
}
.vw-px-5{
  padding-left: calc(20 / 19.2 * 1vw);
  padding-right: calc(20 / 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-\[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-px-\[354\]{
  padding-left: calc(354 / 19.2 * 1vw);
  padding-right: calc(354 / 19.2 * 1vw);
}
.vw-px-\[42\]{
  padding-left: calc(42 / 19.2 * 1vw);
  padding-right: calc(42 / 19.2 * 1vw);
}
.vw-px-\[54\]{
  padding-left: calc(54 / 19.2 * 1vw);
  padding-right: calc(54 / 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-\[100\]{
  padding-top: calc(100 / 19.2 * 1vw);
  padding-bottom: calc(100 / 19.2 * 1vw);
}
.vw-py-\[26\]{
  padding-top: calc(26 / 19.2 * 1vw);
  padding-bottom: calc(26 / 19.2 * 1vw);
}
.vw-py-\[26px\]{
  padding-top: calc(26 / 19.2 * 1vw);
  padding-bottom: calc(26 / 19.2 * 1vw);
}
.vw-py-\[30\]{
  padding-top: calc(30 / 19.2 * 1vw);
  padding-bottom: calc(30 / 19.2 * 1vw);
}
.vw-py-\[33\]{
  padding-top: calc(33 / 19.2 * 1vw);
  padding-bottom: calc(33 / 19.2 * 1vw);
}
.vw-py-\[490\]{
  padding-top: calc(490 / 19.2 * 1vw);
  padding-bottom: calc(490 / 19.2 * 1vw);
}
.vw-right-\[224\]{
  right: calc(224 / 19.2 * 1vw);
}
.vw-top-\[110\]{
  top: calc(110 / 19.2 * 1vw);
}
.vw-top-\[221\]{
  top: calc(221 / 19.2 * 1vw);
}
.vw-translate-x-\[127\]{
  --tw-translate-x: calc(127 / 19.2 * 1vw);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y));
}
.vw-w-\[1108\]{
  width: calc(1108 / 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-\[328\]{
  width: calc(328 / 19.2 * 1vw);
}
.vw-w-\[330\]{
  width: calc(330 / 19.2 * 1vw);
}
.vw-w-\[352\]{
  width: calc(352 / 19.2 * 1vw);
}
.vw-w-\[353\]{
  width: calc(353 / 19.2 * 1vw);
}
.vw-w-\[360\]{
  width: calc(360 / 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-\[569\]{
  width: calc(569 / 19.2 * 1vw);
}
.vw-w-\[608\]{
  width: calc(608 / 19.2 * 1vw);
}
.vw-w-\[611\]{
  width: calc(611 / 19.2 * 1vw);
}
.vw-w-\[621\]{
  width: calc(621 / 19.2 * 1vw);
}
.vw-w-\[640\]{
  width: calc(640 / 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);
}
.img-cover {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
.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;
}
.\[clip-path\:circle\(0\%_at_100\%_0\%\)\]{
  clip-path: circle(0% at 100% 0%);
}
.\[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%;
}
@media (max-width: 900px) {
  footer {
    background-image: url("images/footer-bg-mobile.svg");
    background-size: cover;
    background-position: top center;
  }
}

nav ul.menu a.active .text-\[\#989898\] {
  color: black;
}
nav ul.menu a.active .deco {
  opacity: 1;
}

footer ul a.active {
  color: black;
}
footer ul a.active ~ .deco {
  opacity: 1;
}

main > article{
  width: 100%;
}

.container {
  max-width: 900px;
}

.container-99{
  margin-left: auto;
  margin-right: auto;
  width: calc(1070 / 19.2 * 1vw);
  padding-left: calc(40 / 19.2 * 1vw);
  padding-right: calc(40 / 19.2 * 1vw);
}

@media (max-width: 600px){
  .container-99{
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .container-99 {
    width: 82.2222222222vw;
  }
}
@media (max-width: 600px) {
  .container-99 {
    width: 89.0666666667vw;
    padding: 0 12px 0 12px;
  }
}

.container-14{
  margin-left: auto;
  margin-right: auto;
  width: calc(1456 / 19.2 * 1vw);
}
@media (max-width: 600px) {
  .container-14 {
    width: clamp(308px, 82.1333333333vw, 400.4px);
  }
}

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

.mask.white-linear {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.55) 33%, rgba(255, 255, 255, 0) 87%);
}

/* 分頁按鈕 */
nav.page .pagination li a::before {
  content: "";
  width: 100%;
  height: 1.6px;
  background-color: black;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
nav.page .pagination li a.active::before {
  opacity: 1;
}
nav.page .pagination li a:hover::before {
  opacity: 1;
}

.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);
}

@media (max-width: 600px){
  .info-content{
    font-size: 13px;
  }
}

ul.cate-menu a.active div:first-child {
  color: black;
}
ul.cate-menu a.active div.deco {
  opacity: 1;
}
.after\:absolute::after{
  content: var(--tw-content);
  position: absolute;
}
.after\:left-0::after{
  content: var(--tw-content);
  left: 0px;
}
.after\:top-0::after{
  content: var(--tw-content);
  top: 0px;
}
.after\:h-0\.5::after{
  content: var(--tw-content);
  height: 0.125rem;
}
.after\:w-full::after{
  content: var(--tw-content);
  width: 100%;
}
.after\:scale-x-0::after{
  content: var(--tw-content);
  --tw-scale-x: 0;
  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));
}
.after\:bg-black::after{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.after\:duration-500::after{
  content: var(--tw-content);
  transition-duration: 500ms;
}
.last\:mb-\[unset\]:last-child{
  margin-bottom: unset;
}
.hover\:font-bold:hover{
  font-weight: 700;
}
.hover\:text-black:hover{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.hover\:opacity-50:hover{
  opacity: 0.5;
}
.hover\:vw-text-\[28\]:hover{
  font-size: clamp(22.400000000000002px, calc(28 / 19.2 * 1vw), 28px);
}
.group:hover .group-hover\:w-\[105\%\]{
  width: 105%;
}
.group:hover .group-hover\:-translate-x-\[20\%\]{
  --tw-translate-x: -20%;
  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));
}
.group:hover .group-hover\:translate-x-\[20\%\]{
  --tw-translate-x: 20%;
  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));
}
.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 (min-width: 1201px) and (max-width: 1700px){
  .xl\:max-w-\[55\%\]{
    max-width: 55%;
  }
  .xl\:vw-text-\[48\]{
    font-size: clamp(38.400000000000006px, calc(48 / 19.2 * 1vw), 48px);
  }
  .xl\:vw-gap-x-\[146\]{
    -moz-column-gap: calc(146 / 19.2 * 1vw);
         column-gap: calc(146 / 19.2 * 1vw);
  }
  .xl\:vw-left-\[38\]{
    left: calc(38 / 19.2 * 1vw);
  }
  .xl\:vw-pl-\[188\]{
    padding-left: calc(188 / 19.2 * 1vw);
  }
  .xl\:vw-pl-\[38\]{
    padding-left: calc(38 / 19.2 * 1vw);
  }
}
@media (max-width: 1200px){
  .lg\:left-\[24px\]{
    left: 24px;
  }
  .lg\:left-6{
    left: 1.5rem;
  }
  .lg\:top-6{
    top: 1.5rem;
  }
  .lg\:ml-\[4px\]{
    margin-left: 4px;
  }
  .lg\:block{
    display: block;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:h-\[57px\]{
    height: 57px;
  }
  .lg\:h-auto{
    height: auto;
  }
  .lg\:w-\[180px\]{
    width: 180px;
  }
  .lg\:w-\[38px\]{
    width: 38px;
  }
  .lg\:w-\[40px\]{
    width: 40px;
  }
  .lg\:w-\[42\%\]{
    width: 42%;
  }
  .lg\:w-\[48\%\]{
    width: 48%;
  }
  .lg\:w-\[85\%\]{
    width: 85%;
  }
  .lg\:w-\[calc\(400\*2\/19\.2\*1vw\)\]{
    width: calc(400 * 2 / 19.2 * 1vw);
  }
  .lg\:w-full{
    width: 100%;
  }
  .lg\:w-\[154px\]{
    width: 154px;
  }
  .lg\:min-w-\[unset\]{
    min-width: unset;
  }
  .lg\:items-center{
    align-items: center;
  }
  .lg\:py-\[72px\]{
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .lg\:ps-\[26px\]{
    padding-inline-start: 26px;
  }
  .lg\:text-\[20px\]{
    font-size: 20px;
  }
  .lg\:text-\[24px\]{
    font-size: 24px;
  }
  .lg\:text-\[46px\]{
    font-size: 46px;
  }
  .lg\:text-\[48px\]{
    font-size: 48px;
  }
  .lg\:text-\[72px\]{
    font-size: 72px;
  }
  .lg\:text-lg{
    font-size: 18px;
  }
  .lg\:vw-px-\[150\]{
    padding-left: calc(150 / 19.2 * 1vw);
    padding-right: calc(150 / 19.2 * 1vw);
  }
  .lg\:vw-w-\[1330\]{
    width: calc(1330 / 19.2 * 1vw);
  }
  .lg\:vw-w-\[350\]{
    width: calc(350 / 19.2 * 1vw);
  }
  .lg\:zoom-70 {
    zoom: 0.7;
  }
}
@media (max-width: 900px){
  .md\:bottom-\[5\%\]{
    bottom: 5%;
  }
  .md\:left-1\/2{
    left: 50%;
  }
  .md\:top-\[calc\(\(490\/19\.2\*1vw\)\+61px\)\]{
    top: calc((490 / 19.2 * 1vw) + 61px);
  }
  .md\:top-\[clamp\(33px\2c 33\/3\.75\*1vw\2c 33px\*1\.2\)\]{
    top: clamp(33px, 33 / 3.75 * 1vw, 33px * 1.2);
  }
  .md\:top-\[unset\]{
    top: unset;
  }
  .md\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }
  .md\:mb-3{
    margin-bottom: 0.75rem;
  }
  .md\:mb-\[32px\]{
    margin-bottom: 32px;
  }
  .md\:ms-auto{
    margin-inline-start: auto;
  }
  .md\:mt-0{
    margin-top: 0px;
  }
  .md\:mt-4{
    margin-top: 1rem;
  }
  .md\:mt-\[clamp\(42px\2c 42\/3\.75\*1vw\2c 48px\)\]{
    margin-top: clamp(42px, 42 / 3.75 * 1vw, 48px);
  }
  .md\:block{
    display: block;
  }
  .md\:hidden{
    display: none;
  }
  .md\:h-9{
    height: 2.25rem;
  }
  .md\:h-\[calc\(170\/3\.75\*1vw\)\]{
    height: calc(170 / 3.75 * 1vw);
  }
  .md\:w-\[32px\]{
    width: 32px;
  }
  .md\:w-\[70\%\]{
    width: 70%;
  }
  .md\:w-\[70vw\]{
    width: 70vw;
  }
  .md\:w-\[calc\(200\/9\*1vw\)\]{
    width: calc(200 / 9 * 1vw);
  }
  .md\:w-\[calc\(213\/3\.75\*1vw\)\]{
    width: calc(213 / 3.75 * 1vw);
  }
  .md\:w-\[calc\(262\/3\.75\*1vw\)\]{
    width: calc(262 / 3.75 * 1vw);
  }
  .md\:w-\[calc\(49\/3\.75\*1vw\)\]{
    width: calc(49 / 3.75 * 1vw);
  }
  .md\:w-\[clamp\(68px\2c 68\/19\.2\*1vw\2c 68px\*1\.2\)\]{
    width: clamp(68px, 68 / 19.2 * 1vw, 68px * 1.2);
  }
  .md\:w-full{
    width: 100%;
  }
  .md\:max-w-\[400px\]{
    max-width: 400px;
  }
  .md\:max-w-\[75\%\]{
    max-width: 75%;
  }
  .md\:-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));
  }
  .md\: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));
  }
  .md\:-rotate-90{
    --tw-rotate: -90deg;
    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));
  }
  .md\:rotate-90{
    --tw-rotate: 90deg;
    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));
  }
  .md\:flex-col{
    flex-direction: column;
  }
  .md\:flex-wrap{
    flex-wrap: wrap;
  }
  .md\:items-start{
    align-items: flex-start;
  }
  .md\:justify-center{
    justify-content: center;
  }
  .md\:gap-x-\[calc\(25\/3\.75\*1vw\)\]{
    -moz-column-gap: calc(25 / 3.75 * 1vw);
         column-gap: calc(25 / 3.75 * 1vw);
  }
  .md\:gap-y-16{
    row-gap: 4rem;
  }
  .md\:gap-y-\[70px\]{
    row-gap: 70px;
  }
  .md\:border-y-\[0\]{
    border-top-width: 0;
    border-bottom-width: 0;
  }
  .md\:border-green-main\/20{
    border-color: rgb(103 133 133 / 0.2);
  }
  .md\:px-\[clamp\(40px\2c 40\/3\.75\*1vw\2c 60px\)\]{
    padding-left: clamp(40px, 40 / 3.75 * 1vw, 60px);
    padding-right: clamp(40px, 40 / 3.75 * 1vw, 60px);
  }
  .md\:pb-8{
    padding-bottom: 2rem;
  }
  .md\:pb-\[150px\]{
    padding-bottom: 150px;
  }
  .md\:pb-\[45px\]{
    padding-bottom: 45px;
  }
  .md\:pl-\[45px\]{
    padding-left: 45px;
  }
  .md\:ps-2{
    padding-inline-start: 0.5rem;
  }
  .md\:pt-\[100px\]{
    padding-top: 100px;
  }
  .md\:pt-\[10vh\]{
    padding-top: 10vh;
  }
  .md\:pt-\[45px\]{
    padding-top: 45px;
  }
  .md\:text-\[15px\]{
    font-size: 15px;
  }
  .md\:text-\[17px\]{
    font-size: 17px;
  }
  .md\:text-\[20px\]{
    font-size: 20px;
  }
  .md\:text-\[24px\]{
    font-size: 24px;
  }
  .md\:text-\[34px\]{
    font-size: 34px;
  }
  .md\:text-\[40px\]{
    font-size: 40px;
  }
  .md\:text-\[42px\]{
    font-size: 42px;
  }
  .md\:text-\[46px\]{
    font-size: 46px;
  }
  .md\:text-\[76px\]{
    font-size: 76px;
  }
  .md\:text-\[clamp\(15px\2c 15\/3\.75\*1vw\2c 15px\*1\.2\)\]{
    font-size: clamp(15px, 15 / 3.75 * 1vw, 15px * 1.2);
  }
  .md\:text-\[clamp\(27px\2c 27\/3\.75\*1vw\2c 27px\*1\.2\)\]{
    font-size: clamp(27px, 27 / 3.75 * 1vw, 27px * 1.2);
  }
  .md\:text-\[clamp\(60px\*0\.6\2c 60\/9\*1vw\2c 60px\)\]{
    font-size: clamp(60px * 0.6, 60 / 9 * 1vw, 60px);
  }
  .md\:text-base{
    font-size: 16px;
  }
  .md\:text-sm{
    font-size: 14px;
  }
  .md\:leading-\[1\.1\]{
    line-height: 1.1;
  }
}
@media (max-width: 600px){
  .sm\:relative{
    position: relative;
  }
  .sm\:inset-\[unset\]{
    inset: unset;
  }
  .sm\:bottom-1\/2{
    bottom: 50%;
  }
  .sm\:bottom-\[calc\(5\%_\+_40px\)\]{
    bottom: calc(5% + 40px);
  }
  .sm\:left-1\/2{
    left: 50%;
  }
  .sm\:left-\[calc\(59\/3\.75\*1vw\)\]{
    left: calc(59 / 3.75 * 1vw);
  }
  .sm\:top-1\/2{
    top: 50%;
  }
  .sm\:top-\[13px\]{
    top: 13px;
  }
  .sm\:top-\[249px\]{
    top: 249px;
  }
  .sm\:top-\[68\%\]{
    top: 68%;
  }
  .sm\:top-\[unset\]{
    top: unset;
  }
  .sm\:top-full{
    top: 100%;
  }
  .sm\:order-2{
    order: 2;
  }
  .sm\:order-3{
    order: 3;
  }
  .sm\:order-4{
    order: 4;
  }
  .sm\:order-5{
    order: 5;
  }
  .sm\:m-0{
    margin: 0px;
  }
  .sm\:-mx-\[40\%\]{
    margin-left: -40%;
    margin-right: -40%;
  }
  .sm\:mx-\[5px\]{
    margin-left: 5px;
    margin-right: 5px;
  }
  .sm\:mx-\[calc\(20\/3\.75\*1vw\)\]{
    margin-left: calc(20 / 3.75 * 1vw);
    margin-right: calc(20 / 3.75 * 1vw);
  }
  .sm\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }
  .sm\:mb-0{
    margin-bottom: 0px;
  }
  .sm\:mb-10{
    margin-bottom: 2.5rem;
  }
  .sm\:mb-2{
    margin-bottom: 0.5rem;
  }
  .sm\:mb-4{
    margin-bottom: 1rem;
  }
  .sm\:mb-5{
    margin-bottom: 1.25rem;
  }
  .sm\:mb-6{
    margin-bottom: 1.5rem;
  }
  .sm\:mb-7{
    margin-bottom: 1.75rem;
  }
  .sm\:mb-\[10px\]{
    margin-bottom: 10px;
  }
  .sm\:mb-\[23px\]{
    margin-bottom: 23px;
  }
  .sm\:mb-\[6px\]{
    margin-bottom: 6px;
  }
  .sm\:mb-\[70px\]{
    margin-bottom: 70px;
  }
  .sm\:mb-\[90px\]{
    margin-bottom: 90px;
  }
  .sm\:me-0{
    margin-inline-end: 0px;
  }
  .sm\:ms-\[calc\(-20\/3\.75\*1vw\)\]{
    margin-inline-start: calc(-20 / 3.75 * 1vw);
  }
  .sm\:ms-\[calc\(59\/3\.75\*1vw\)\]{
    margin-inline-start: calc(59 / 3.75 * 1vw);
  }
  .sm\:mt-1{
    margin-top: 0.25rem;
  }
  .sm\:mt-10{
    margin-top: 2.5rem;
  }
  .sm\:mt-16{
    margin-top: 4rem;
  }
  .sm\:mt-2{
    margin-top: 0.5rem;
  }
  .sm\:mt-3{
    margin-top: 0.75rem;
  }
  .sm\:mt-5{
    margin-top: 1.25rem;
  }
  .sm\:mt-6{
    margin-top: 1.5rem;
  }
  .sm\:mt-\[110px\]{
    margin-top: 110px;
  }
  .sm\:mt-\[172px\]{
    margin-top: 172px;
  }
  .sm\:mt-\[30px\]{
    margin-top: 30px;
  }
  .sm\:mt-\[46px\]{
    margin-top: 46px;
  }
  .sm\:mt-\[50px\]{
    margin-top: 50px;
  }
  .sm\:mt-\[82px\]{
    margin-top: 82px;
  }
  .sm\:block{
    display: block;
  }
  .sm\:flex{
    display: flex;
  }
  .sm\:hidden{
    display: none;
  }
  .sm\:aspect-\[250\/193\]{
    aspect-ratio: 250/193;
  }
  .sm\:aspect-\[308\/161\]{
    aspect-ratio: 308/161;
  }
  .sm\:aspect-\[375\/266\]{
    aspect-ratio: 375/266;
  }
  .sm\:h-1\/2{
    height: 50%;
  }
  .sm\:h-\[0\.4px\]{
    height: 0.4px;
  }
  .sm\:h-\[1\.4px\]{
    height: 1.4px;
  }
  .sm\:h-\[20px\]{
    height: 20px;
  }
  .sm\:h-\[42px\]{
    height: 42px;
  }
  .sm\:h-\[70vh\]{
    height: 70vh;
  }
  .sm\:h-\[calc\(154\.8\/3\.75\*1vw\)\]{
    height: calc(154.8 / 3.75 * 1vw);
  }
  .sm\:h-auto{
    height: auto;
  }
  .sm\:h-full{
    height: 100%;
  }
  .sm\:min-h-\[391px\]{
    min-height: 391px;
  }
  .sm\:\!w-max{
    width: -moz-max-content !important;
    width: max-content !important;
  }
  .sm\:w-2{
    width: 0.5rem;
  }
  .sm\:w-4{
    width: 1rem;
  }
  .sm\:w-\[113px\]{
    width: 113px;
  }
  .sm\:w-\[14px\]{
    width: 14px;
  }
  .sm\:w-\[154px\]{
    width: 154px;
  }
  .sm\:w-\[1665px\]{
    width: 1665px;
  }
  .sm\:w-\[180\%\]{
    width: 180%;
  }
  .sm\:w-\[182px\]{
    width: 182px;
  }
  .sm\:w-\[227px\]{
    width: 227px;
  }
  .sm\:w-\[22px\]{
    width: 22px;
  }
  .sm\:w-\[46px\]{
    width: 46px;
  }
  .sm\:w-\[6px\]{
    width: 6px;
  }
  .sm\:w-\[7px\]{
    width: 7px;
  }
  .sm\:w-\[calc\(\(59\*2\)\/3\.75\*1vw\)\]{
    width: calc((59 * 2) / 3.75 * 1vw);
  }
  .sm\:w-\[calc\(105\/3\.75\*1vw\)\]{
    width: calc(105 / 3.75 * 1vw);
  }
  .sm\:w-\[calc\(119\/3\.75\*1vw\)\]{
    width: calc(119 / 3.75 * 1vw);
  }
  .sm\:w-\[calc\(144\/3\.75\*1vw\)\]{
    width: calc(144 / 3.75 * 1vw);
  }
  .sm\:w-\[calc\(196\/3\.75\*1vw\)\]{
    width: calc(196 / 3.75 * 1vw);
  }
  .sm\:w-\[calc\(217\/3\.75\*1vw\)\]{
    width: calc(217 / 3.75 * 1vw);
  }
  .sm\:w-\[calc\(24\/3\.75\*1vw\)\]{
    width: calc(24 / 3.75 * 1vw);
  }
  .sm\:w-\[calc\(262\/3\.75\*1vw\)\]{
    width: calc(262 / 3.75 * 1vw);
  }
  .sm\:w-\[calc\(266\/3\.75\*1vw\)\]{
    width: calc(266 / 3.75 * 1vw);
  }
  .sm\:w-\[calc\(288\/3\.75\*1vw\)\]{
    width: calc(288 / 3.75 * 1vw);
  }
  .sm\:w-\[calc\(308\/3\.75\*1vw\)\]{
    width: calc(308 / 3.75 * 1vw);
  }
  .sm\:w-\[calc\(334\/3\.75\*1vw\)\]{
    width: calc(334 / 3.75 * 1vw);
  }
  .sm\:w-\[calc\(355\/3\.75\*1vw\)\]{
    width: calc(355 / 3.75 * 1vw);
  }
  .sm\:w-\[clamp\(164px\2c 164\/3\.75\*1vw\2c 300px\)\]{
    width: clamp(164px, 164 / 3.75 * 1vw, 300px);
  }
  .sm\:w-full{
    width: 100%;
  }
  .sm\:w-max{
    width: -moz-max-content;
    width: max-content;
  }
  .sm\:min-w-\[unset\]{
    min-width: unset;
  }
  .sm\:max-w-full{
    max-width: 100%;
  }
  .sm\:flex-\[1_1_0\]{
    flex: 1 1 0;
  }
  .sm\:flex-grow{
    flex-grow: 1;
  }
  .sm\:-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));
  }
  .sm\:-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));
  }
  .sm\:-translate-y-\[50px\]{
    --tw-translate-y: -50px;
    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));
  }
  .sm\:translate-x-\[30\%\]{
    --tw-translate-x: 30%;
    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));
  }
  .sm\:translate-x-\[60\%\]{
    --tw-translate-x: 60%;
    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));
  }
  .sm\:translate-x-\[calc\(20\/3\.75\*1vw\)\]{
    --tw-translate-x: calc(20 / 3.75 * 1vw);
    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));
  }
  .sm\:translate-y-0{
    --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));
  }
  .sm\: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));
  }
  .sm\:translate-y-\[unset\]{
    --tw-translate-y: unset;
    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));
  }
  .sm\:flex-row-reverse{
    flex-direction: row-reverse;
  }
  .sm\:flex-col{
    flex-direction: column;
  }
  .sm\:flex-col-reverse{
    flex-direction: column-reverse;
  }
  .sm\:flex-wrap{
    flex-wrap: wrap;
  }
  .sm\:flex-nowrap{
    flex-wrap: nowrap;
  }
  .sm\:items-start{
    align-items: flex-start;
  }
  .sm\:items-end{
    align-items: flex-end;
  }
  .sm\:justify-end{
    justify-content: flex-end;
  }
  .sm\:justify-between{
    justify-content: space-between;
  }
  .sm\:gap-4{
    gap: 1rem;
  }
  .sm\:gap-\[unset\]{
    gap: unset;
  }
  .sm\:gap-x-3{
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
  .sm\:gap-x-\[10px\]{
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .sm\:gap-y-10{
    row-gap: 2.5rem;
  }
  .sm\:gap-y-\[43px\]{
    row-gap: 43px;
  }
  .sm\:gap-y-\[calc\(6\/3\.75\*1vw\)\]{
    row-gap: calc(6 / 3.75 * 1vw);
  }
  .sm\:overflow-hidden{
    overflow: hidden;
  }
  .sm\:overflow-clip{
    overflow: clip;
  }
  .sm\:rounded-none{
    border-radius: 0px;
  }
  .sm\:rounded-tl-\[28px\]{
    border-top-left-radius: 28px;
  }
  .sm\:rounded-tl-\[43px\]{
    border-top-left-radius: 43px;
  }
  .sm\:border-0{
    border-width: 0px;
  }
  .sm\:border-x-\[0\.25px\]{
    border-left-width: 0.25px;
    border-right-width: 0.25px;
  }
  .sm\:border-y-\[0\.5px\]{
    border-top-width: 0.5px;
    border-bottom-width: 0.5px;
  }
  .sm\:border-b-\[0\.5px\]{
    border-bottom-width: 0.5px;
  }
  .sm\:border-e-0{
    border-inline-end-width: 0px;
  }
  .sm\:border-green-main\/30{
    border-color: rgb(103 133 133 / 0.3);
  }
  .sm\:bg-black\/60{
    background-color: rgb(0 0 0 / 0.6);
  }
  .sm\:bg-\[url\(\'images\/about-connect-bg\.svg\'\)\]{
    background-image: url('images/about-connect-bg.svg');
  }
  .sm\:bg-contain{
    background-size: contain;
  }
  .sm\:bg-\[top_center\]{
    background-position: top center;
  }
  .sm\:p-0{
    padding: 0px;
  }
  .sm\:p-4{
    padding: 1rem;
  }
  .sm\:p-\[30px\]{
    padding: 30px;
  }
  .sm\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .sm\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .sm\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:px-\[calc\(42\/3\.75\*1vw\)\]{
    padding-left: calc(42 / 3.75 * 1vw);
    padding-right: calc(42 / 3.75 * 1vw);
  }
  .sm\:px-\[calc\(46\/3\.75\*1vw\)\]{
    padding-left: calc(46 / 3.75 * 1vw);
    padding-right: calc(46 / 3.75 * 1vw);
  }
  .sm\:px-\[calc\(62\/3\.75\*1vw\)\]{
    padding-left: calc(62 / 3.75 * 1vw);
    padding-right: calc(62 / 3.75 * 1vw);
  }
  .sm\:py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .sm\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .sm\:py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .sm\:py-7{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
  .sm\:py-\[200px\]{
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .sm\:py-\[30px\]{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .sm\:pb-0{
    padding-bottom: 0px;
  }
  .sm\:pb-10{
    padding-bottom: 2.5rem;
  }
  .sm\:pb-16{
    padding-bottom: 4rem;
  }
  .sm\:pb-2{
    padding-bottom: 0.5rem;
  }
  .sm\:pb-3{
    padding-bottom: 0.75rem;
  }
  .sm\:pb-8{
    padding-bottom: 2rem;
  }
  .sm\:pb-\[120px\]{
    padding-bottom: 120px;
  }
  .sm\:pb-\[165px\]{
    padding-bottom: 165px;
  }
  .sm\:pb-\[172px\]{
    padding-bottom: 172px;
  }
  .sm\:pb-\[26px\]{
    padding-bottom: 26px;
  }
  .sm\:pb-\[43px\]{
    padding-bottom: 43px;
  }
  .sm\:pb-\[50px\]{
    padding-bottom: 50px;
  }
  .sm\:pb-\[60px\]{
    padding-bottom: 60px;
  }
  .sm\:pb-\[70px\]{
    padding-bottom: 70px;
  }
  .sm\:pb-\[72px\]{
    padding-bottom: 72px;
  }
  .sm\:pb-\[calc\(220\/3\.75\*1vw\)\]{
    padding-bottom: calc(220 / 3.75 * 1vw);
  }
  .sm\:pb-\[calc\(58\/3\.75\*1vw\)\]{
    padding-bottom: calc(58 / 3.75 * 1vw);
  }
  .sm\:pe-0{
    padding-inline-end: 0px;
  }
  .sm\:pe-2{
    padding-inline-end: 0.5rem;
  }
  .sm\:pe-3{
    padding-inline-end: 0.75rem;
  }
  .sm\:pe-5{
    padding-inline-end: 1.25rem;
  }
  .sm\:pe-\[23px\]{
    padding-inline-end: 23px;
  }
  .sm\:pe-\[26px\]{
    padding-inline-end: 26px;
  }
  .sm\:pe-\[calc\(30\/3\.75\*1vw\)\]{
    padding-inline-end: calc(30 / 3.75 * 1vw);
  }
  .sm\:pl-\[calc\(28\/3\.75\*1vw\)\]{
    padding-left: calc(28 / 3.75 * 1vw);
  }
  .sm\:ps-0{
    padding-inline-start: 0px;
  }
  .sm\:ps-3{
    padding-inline-start: 0.75rem;
  }
  .sm\:ps-5{
    padding-inline-start: 1.25rem;
  }
  .sm\:ps-\[13px\]{
    padding-inline-start: 13px;
  }
  .sm\:ps-\[15px\]{
    padding-inline-start: 15px;
  }
  .sm\:ps-\[6px\]{
    padding-inline-start: 6px;
  }
  .sm\:ps-\[calc\(57\/3\.75\*1vw\)\]{
    padding-inline-start: calc(57 / 3.75 * 1vw);
  }
  .sm\:pt-0{
    padding-top: 0px;
  }
  .sm\:pt-2{
    padding-top: 0.5rem;
  }
  .sm\:pt-3{
    padding-top: 0.75rem;
  }
  .sm\:pt-\[100px\]{
    padding-top: 100px;
  }
  .sm\:pt-\[134px\]{
    padding-top: 134px;
  }
  .sm\:pt-\[22px\]{
    padding-top: 22px;
  }
  .sm\:pt-\[50px\]{
    padding-top: 50px;
  }
  .sm\:pt-\[54px\]{
    padding-top: 54px;
  }
  .sm\:pt-\[88px\]{
    padding-top: 88px;
  }
  .sm\:pt-\[90px\]{
    padding-top: 90px;
  }
  .sm\:pt-\[calc\(110\/3\.75\*1vw\)\]{
    padding-top: calc(110 / 3.75 * 1vw);
  }
  .sm\:pt-\[calc\(200\/3\.75\*1vw\)\]{
    padding-top: calc(200 / 3.75 * 1vw);
  }
  .sm\:text-center{
    text-align: center;
  }
  .sm\:text-start{
    text-align: start;
  }
  .sm\:text-\[10px\]{
    font-size: 10px;
  }
  .sm\:text-\[12px\]{
    font-size: 12px;
  }
  .sm\:text-\[13px\]{
    font-size: 13px;
  }
  .sm\:text-\[14px\]{
    font-size: 14px;
  }
  .sm\:text-\[15px\]{
    font-size: 15px;
  }
  .sm\:text-\[19px\]{
    font-size: 19px;
  }
  .sm\:text-\[20px\]{
    font-size: 20px;
  }
  .sm\:text-\[21px\]{
    font-size: 21px;
  }
  .sm\:text-\[22px\]{
    font-size: 22px;
  }
  .sm\:text-\[24px\]{
    font-size: 24px;
  }
  .sm\:text-\[25px\]{
    font-size: 25px;
  }
  .sm\:text-\[26px\]{
    font-size: 26px;
  }
  .sm\:text-\[30px\]{
    font-size: 30px;
  }
  .sm\:text-\[49px\]{
    font-size: 49px;
  }
  .sm\:text-\[8px\]{
    font-size: 8px;
  }
  .sm\:text-\[calc\(13\/3\.75\*1vw\)\]{
    font-size: calc(13 / 3.75 * 1vw);
  }
  .sm\:text-\[calc\(15\/3\.75\*1vw\)\]{
    font-size: calc(15 / 3.75 * 1vw);
  }
  .sm\:text-\[calc\(30\/3\.75\*1vw\)\]{
    font-size: calc(30 / 3.75 * 1vw);
  }
  .sm\:text-\[clamp\(15px\2c 15\/3\.75\*1vw\2c 15px\*1\.2\)\]{
    font-size: clamp(15px, 15 / 3.75 * 1vw, 15px * 1.2);
  }
  .sm\:text-\[clamp\(27px\2c 27\/3\.75\*1vw\2c 27px\*1\.2\)\]{
    font-size: clamp(27px, 27 / 3.75 * 1vw, 27px * 1.2);
  }
  .sm\:text-\[clamp\(32px\2c 32\/3\.75\*1vw\2c 32px\*1\.2\)\]{
    font-size: clamp(32px, 32 / 3.75 * 1vw, 32px * 1.2);
  }
  .sm\:text-\[clamp\(37px\2c 37\/3\.75\*1vw\2c 37px\*1\.2\)\]{
    font-size: clamp(37px, 37 / 3.75 * 1vw, 37px * 1.2);
  }
  .sm\:text-\[clamp\(62px\2c 62\/3\.75\*1vw\2c 62px\*1\.2\)\]{
    font-size: clamp(62px, 62 / 3.75 * 1vw, 62px * 1.2);
  }
  .sm\:text-sm{
    font-size: 14px;
  }
  .sm\:text-xs{
    font-size: 12px;
  }
  .sm\:font-medium{
    font-weight: 500;
  }
  .sm\:leading-\[1\.1\]{
    line-height: 1.1;
  }
  .sm\:leading-\[1\.3\]{
    line-height: 1.3;
  }
  .sm\:leading-\[1\.5\]{
    line-height: 1.5;
  }
  .sm\:leading-none{
    line-height: 1;
  }
  .sm\:tracking-\[2px\]{
    letter-spacing: 2px;
  }
  .sm\:tracking-normal{
    letter-spacing: 1px;
  }
  .sm\:tracking-tight{
    letter-spacing: -1px;
  }
  .sm\:text-\[\#666\]{
    --tw-text-opacity: 1;
    color: rgb(102 102 102 / var(--tw-text-opacity, 1));
  }
  .sm\:text-\[\#808080\]{
    --tw-text-opacity: 1;
    color: rgb(128 128 128 / var(--tw-text-opacity, 1));
  }
  .sm\:text-gray-600{
    --tw-text-opacity: 1;
    color: rgb(51 51 51 / var(--tw-text-opacity, 1));
  }
  .sm\:opacity-20{
    opacity: 0.2;
  }
  .sm\:vw-gap-x-\[8\]{
    -moz-column-gap: calc(8 / 19.2 * 1vw);
         column-gap: calc(8 / 19.2 * 1vw);
  }
  .sm\:last\:pb-\[30px\]:last-child{
    padding-bottom: 30px;
  }
}
@media (orientation: portrait){
  .portrait\:hidden{
    display: none;
  }
}
.\[\&\.active\]\:\[clip-path\:circle\(143\%_at_100\%_0\%\)\].active{
  clip-path: circle(143% at 100% 0%);
}
.\[\&\.current\]\:after\:scale-x-100.current::after{
  content: var(--tw-content);
  --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));
}
.\[\&\.is-animating\]\:z-\[61\].is-animating{
  z-index: 61;
}
/*# sourceMappingURL=style.css.map */
