@charset "UTF-8";
html {
  font-size: clamp(12px, 1.11vw, 16px); /* 動態調整 */
}

body {
  margin: 0;
  line-height: normal;
}

:root {
  /* Fonts */
  --cy-h2-regular: "Noto Sans TC", sans-serif;
  --font-ntjianzhuan: "Noto Sans TC", sans-serif;
  /* font sizes */
  --cy-c4-bold-size: 0.625rem;
  --cy-c2-bold-size: 1.125rem;
  --cy-p4-regular-size: 0.938rem;
  --cy-p3-medium-size: 1.125rem;
  --cy-p2-regular-size: 1.25rem;
  --cy-p1-regular-size: 1.5rem;
  --cy-h4-bold-size: 1.25rem;
  --cy-h3-bold-size: 1.5rem;
  --cy-h2-regular-size: 1.875rem;
  --cy-h1-bold-size: 2.5rem;
  /* Colors */
  --color-gray: rgba(0, 0, 0, 0.5);
  --color-whitesmoke-100: rgba(247, 248, 245, 0.8);
  /* Gaps */
  --gap-0: 0rem;
  --gap-8xs: 0.312rem;
  --gap-3xs: 0.625rem;
  --gap-xl: 1.25rem;
  --gap-11xl: 1.875rem;
  --gap-21xl: 2.5rem;
  /* Paddings */
  --padding-8xs: 0.312rem;
  --padding-3xs: 0.625rem;
  --padding-2xs: 0.687rem;
  --padding-mini: 0.937rem;
  --padding-xl: 1.25rem;
  --padding-6xl: 1.562rem;
  --padding-8xl: 1.687rem;
  --padding-21xl: 2.5rem;
  --padding-41xl: 3.75rem;
  --padding-101xl: 7.5rem;
  /* Border radiuses */
  --br-8xs: 5px;
  --br-3xs: 10px;
  --br-mini: 15px;
  --br-xl: 20px;
  --br-11xl: 30px;
  /* Figma Variables */
  /* Color Variables */
  --cy-green-dark: #3a492d;
  --cy-green-medium: #5e7649;
  --cy-wh-light: #f7f8f5;
  --cy-accent: #dda15e;
  --cy-accent2: #795832;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
a:hover {
  color: var(--cy-green-dark);
  font-weight: bold;
  text-shadow: 0 0 1px rgba(94, 118, 73, 0.3);
}

/* 頂部導航欄 */
.header {
  width: 100%;
  margin: 0 !important;
  position: fixed;
  top: 0rem;
  left: 0rem;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.25);
  background-color: rgba(247, 248, 245, 0.75);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 999;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  /* 手機版選單按鈕和首頁按鈕 */
  /* 手機版選單圖標樣式 */
  /* 選單打開時的圖標樣式 */
  color: var(--cy-green-dark);
}
.header.header--hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.header.header--show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.header .mobile-menu-button,
.header .mobile-home-button {
  display: none;
}
.header .menu-icon {
  width: 24px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
.header .menu-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--cy-green-dark);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.header .menu-icon span:nth-child(1) {
  top: 0px;
}
.header .menu-icon span:nth-child(2) {
  top: 8px;
}
.header .menu-icon span:nth-child(3) {
  top: 16px;
}
.header .menu-open .menu-icon span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}
.header .menu-open .menu-icon span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.header .menu-open .menu-icon span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}
.header .header-container {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0rem var(--padding-21xl);
  gap: var(--gap-3xs);
}
.header .header-container .logo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ntjianzhuan);
  min-width: 120px;
}
.header .header-container .logo-container .logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header .header-container .logo-container .logo-link:hover {
  color: inherit;
  font-weight: normal;
  transform: none;
  text-shadow: none;
}
.header .header-container .logo-container .logo-link img {
  width: 10rem;
}
.header .header-container .nav {
  align-self: stretch;
  width: 53.563rem;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  align-content: flex-end;
  padding: var(--padding-8xs) 0rem;
  box-sizing: border-box;
  gap: var(--gap-0) 1.875rem;
  font-size: var(--cy-c2-bold-size);
}
.header .header-container .nav .nav-item {
  height: 1.688rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.header .header-container .call-container {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  padding: var(--padding-3xs) 0rem;
  font-size: var(--cy-c4-bold-size);
}
.header .header-container .call-container .call-area {
  width: 15.375rem;
  border-radius: var(--br-mini);
  border: 1px solid var(--cy-green-dark);
  box-sizing: border-box;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0rem var(--padding-xl);
  gap: var(--gap-0);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.header .header-container .call-container .call-area:hover {
  background-color: #f0f5f0;
  transform: translateY(-2px);
  /* 確保 hover 時文字不會變粗 */
}
.header .header-container .call-container .call-area:hover .call-text .call-detail-text {
  font-weight: bold;
}
.header .header-container .call-container .call-area:active {
  transform: translateY(1px);
}
.header .header-container .call-container .call-area .call-icon {
  width: 2.188rem;
  position: relative;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .header-container .call-container .call-area .call-text {
  align-self: stretch;
  width: 9.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: var(--padding-8xs) 0rem;
  box-sizing: border-box;
}
.header .header-container .call-container .call-area .call-text .call-detail-text {
  align-self: stretch;
  position: relative;
}
.header .header-container .call-container .call-area .call-text .call-phone-text {
  align-self: stretch;
  position: relative;
  font-size: var(--cy-h4-bold-size);
  font-weight: bold;
  display: flex;
  align-items: center;
  height: 1.25rem;
  flex-shrink: 0;
}

/* 手機版樣式 (<768px) */
@media (max-width: 768px) {
  .header .header-container {
    padding: 0.5rem 1rem;
  }
  .header .header-container .mobile-menu-button,
  .header .header-container .mobile-home-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 1000;
  }
  .header .header-container .mobile-home-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  .header .header-container .mobile-home-button a:hover {
    transform: scale(1.1);
  }
  .header .header-container .mobile-home-button a:active {
    transform: scale(0.95);
  }
  .header .header-container .mobile-home-button img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header .header-container .logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .header .header-container .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: rgba(247, 248, 245, 0.95);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }
  .header .header-container .nav.active {
    left: 0;
  }
  .header .header-container .nav .nav-item {
    width: 100%;
    margin: 0.5rem 0;
    justify-content: flex-start;
  }
  .header .header-container .nav .nav-item a {
    font-size: 1.2rem;
    padding: 0.5rem 0;
  }
  .header .header-container .call-container {
    display: none;
  }
}
/* 主視覺區域 */
.kv {
  align-self: stretch;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 1;
  text-align: center;
  font-size: var(--cy-h2-regular-size);
  /* 手機版樣式 (<768px) */
}
.kv .kv-container {
  align-self: stretch;
  height: auto;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 23.5rem var(--padding-21xl);
  box-sizing: border-box;
  position: relative;
  gap: var(--gap-3xs);
  /* 輪播圖片容器 */
}
@media (min-width: 1200px) {
  .kv .kv-container {
    aspect-ratio: 1.77;
  }
}
.kv .kv-container .carousel-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.kv .kv-container .carousel-images .carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.kv .kv-container .carousel-images .carousel-image.active {
  opacity: 1;
}
.kv .kv-container .bk-icon {
  width: 100%;
  position: absolute;
  margin: 0 !important;
  top: 0rem;
  left: 0rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.kv .kv-container .slogan-container {
  background-color: rgba(64, 131, 6, 0.7);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: var(--padding-8xs) var(--padding-3xs);
  z-index: 1;
}
.kv .kv-container .slogan-container .slogan {
  position: relative;
  line-height: 120%;
}
@media (max-width: 768px) {
  .kv .kv-container {
    padding: 15rem 1rem;
  }
  .kv .kv-container .slogan-container {
    margin: 0 auto;
    justify-content: center;
    width: auto;
    max-width: 90%;
  }
}

/* 頁腳 */
.footer {
  align-self: center;
  background-color: var(--cy-green-medium);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: var(--padding-41xl) var(--padding-101xl) 0rem;
  gap: 3.75rem;
  z-index: 6;
  font-size: var(--cy-h3-bold-size);
  box-sizing: border-box;
  width: 100%;
  padding: 6.25rem var(--padding-101xl);
  padding-bottom: 0;
}
.footer .contact-info-container {
  align-self: center;
  height: 13.75rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gap-0);
  width: 100%;
  max-width: 1200px;
}
.footer .contact-info-container .info-area {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gap-0);
  font-size: var(--cy-h1-bold-size);
  font-family: var(--font-ntjianzhuan);
}
.footer .contact-info-container .info-area .call-detail-text {
  align-self: stretch;
  position: relative;
}
.footer .contact-info-container .info-area .call-detail-text img {
  width: 10rem;
}
.footer .contact-info-container .info-area .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--gap-3xs);
  font-size: var(--cy-c2-bold-size);
  font-family: var(--cy-h2-regular);
}
.footer .contact-info-container .info-area .info .phone-nb {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.footer .contact-info-container .info-area .info .phone-nb .changyao90301148gmailcom {
  position: relative;
  font-weight: normal;
}
.footer .contact-info-container .contact-area {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-0);
}
.footer .contact-info-container .contact-area .title11 {
  align-self: stretch;
  position: relative;
  letter-spacing: 0.2em;
  font-weight: normal;
}
.footer .contact-info-container .contact-area .btn-area {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--gap-3xs);
  font-size: var(--cy-c4-bold-size);
  color: var(--cy-green-dark);
}
.footer .contact-info-container .contact-area .btn-area .phone-contact-btn {
  width: 15.375rem;
  border-radius: var(--br-mini);
  background-color: var(--cy-wh-light);
  border: 2px solid var(--cy-green-dark);
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0rem var(--padding-xl);
  gap: var(--gap-0);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.footer .contact-info-container .contact-area .btn-area .phone-contact-btn:hover {
  background-color: #f0f5f0;
  transform: translateY(-2px);
}
.footer .contact-info-container .contact-area .btn-area .phone-contact-btn:active {
  transform: translateY(1px);
}
.footer .contact-info-container .contact-area .btn-area .phone-contact-btn .call-icon {
  width: 2.188rem;
  position: relative;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer .contact-info-container .contact-area .btn-area .phone-contact-btn .call-text {
  align-self: stretch;
  width: 9.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: var(--padding-8xs) 0rem;
  box-sizing: border-box;
}
.footer .contact-info-container .contact-area .btn-area .phone-contact-btn .call-text .call-detail-text {
  align-self: stretch;
  position: relative;
}
.footer .contact-info-container .contact-area .btn-area .phone-contact-btn .call-text .call-phone-text {
  align-self: stretch;
  position: relative;
  font-size: var(--cy-h4-bold-size);
  font-weight: bold;
  display: flex;
  align-items: center;
  height: 1.25rem;
  flex-shrink: 0;
}
.footer .contact-info-container .contact-area .btn-area .line-contact-btn {
  width: 15.375rem;
  box-sizing: border-box;
  border-radius: var(--br-mini);
  background-color: #06c755;
  border: 2px solid var(--cy-green-medium);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0rem 0.937rem;
  text-align: center;
  font-size: var(--cy-h4-bold-size);
  color: var(--cy-wh-light);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.footer .contact-info-container .contact-area .btn-area .line-contact-btn:hover {
  background-color: #05b64a;
  transform: translateY(-2px);
}
.footer .contact-info-container .contact-area .btn-area .line-contact-btn:active {
  transform: translateY(1px);
}
.footer .contact-info-container .contact-area .btn-area .line-contact-btn .linc-icon {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: var(--padding-3xs) 0rem;
}
.footer .contact-info-container .contact-area .btn-area .line-contact-btn .linc-icon .line-2-icon {
  width: 2.5rem;
  position: relative;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer .contact-info-container .contact-area .btn-area .line-contact-btn .line-text {
  align-self: stretch;
  width: 9.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer .contact-info-container .contact-area .btn-area .line-contact-btn .line-text .div6 {
  width: 7.5rem;
  position: relative;
  letter-spacing: 0.5em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.125rem;
  flex-shrink: 0;
}
.footer .contact-info-container .nav1-area {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gap-0);
}
.footer .contact-info-container .nav1-area .title11 {
  align-self: stretch;
  position: relative;
  letter-spacing: 0.2em;
  font-weight: normal;
}
.footer .contact-info-container .nav1-area .nav-page-list {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--gap-3xs);
  font-size: var(--cy-c2-bold-size);
}
.footer .contact-info-container .nav1-area .nav-page-list .nav-page {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.footer .contact-info-container .nav1-area .nav-page-list .nav-page .nav-page-child {
  width: 0.75rem;
  position: relative;
  border-radius: 90px;
  background-color: #fcc67a;
  height: 0.75rem;
  display: none;
}
.footer .copyright-container {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: var(--cy-p4-regular-size);
}
.footer .copyright-container .copyright-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: var(--padding-8xs);
  font-weight: normal;
}

/* 手機版 footer 樣式 (<768px) */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 1.5rem 0;
    gap: 2rem;
  }
  .footer .contact-info-container {
    flex-direction: column;
    height: auto;
    gap: 2rem;
  }
  .footer .contact-info-container .info-area {
    width: 100%;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }
  .footer .contact-info-container .info-area .call-detail-text {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .footer .contact-info-container .info-area .info {
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  .footer .contact-info-container .info-area .info .phone-nb {
    align-items: center;
    justify-content: center;
  }
  .footer .contact-info-container .info-area .info .phone-nb .changyao90301148gmailcom {
    margin-bottom: 0;
  }
  .footer .contact-info-container .contact-area {
    width: 100%;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer .contact-info-container .contact-area .title11 {
    text-align: center;
    margin-bottom: 1rem;
  }
  .footer .contact-info-container .contact-area .btn-area {
    width: 100%;
    align-items: center;
  }
  .footer .contact-info-container .contact-area .btn-area .phone-contact-btn,
  .footer .contact-info-container .contact-area .btn-area .line-contact-btn {
    margin-bottom: 0.75rem;
  }
  .footer .contact-info-container .nav1-area {
    width: 100%;
    margin-bottom: 0;
  }
  .footer .contact-info-container .nav1-area .title11 {
    text-align: center;
    margin-bottom: 0.75rem;
  }
  .footer .contact-info-container .nav1-area .nav-page-list {
    align-items: center;
    gap: 0;
  }
  .footer .contact-info-container .nav1-area .nav-page-list .nav-page {
    margin-bottom: 0.5rem;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .footer .contact-info-container .nav1-area .nav-page-list .nav-page a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .footer .copyright-container {
    margin-top: 0;
    padding: 0;
  }
  .footer .copyright-container .copyright-area {
    text-align: center;
    font-size: 0.75rem;
  }
}
.line-contact-button {
  position: fixed;
  bottom: 3rem;
  right: 0rem;
  width: 7rem;
  height: 7rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(100%);
}
.line-contact-button.show {
  opacity: 0.8;
  transform: translateX(0);
}
.line-contact-button:hover {
  opacity: 1;
  transform: scale(1.1);
}
.line-contact-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.line-contact-button img {
  width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .line-contact-button {
    bottom: 2.5rem;
    left: auto;
    right: 0;
  }
  .line-contact-button a {
    justify-content: end;
  }
  .line-contact-button.show {
    opacity: 0.5;
    transform: translateX(0);
  }
  .line-contact-button:hover {
    opacity: 1;
    transform: scale(1.1);
  }
  .line-contact-button img {
    width: 60%;
    padding: 0.5rem;
  }
}

.call-contact-button {
  position: fixed;
  bottom: 9rem;
  right: 0rem;
  width: 7rem;
  height: 7rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(100%);
}
.call-contact-button.show {
  opacity: 0.8;
  transform: translateX(0);
}
.call-contact-button:hover {
  opacity: 1;
  transform: scale(1.1);
}
.call-contact-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.call-contact-button img {
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .call-contact-button {
    bottom: 7.5rem;
    left: auto;
    right: 0;
  }
  .call-contact-button a {
    justify-content: end;
  }
  .call-contact-button.show {
    opacity: 0.5;
    transform: translateX(0);
  }
  .call-contact-button:hover {
    opacity: 1;
    transform: scale(1.1);
  }
  .call-contact-button img {
    width: 60%;
    padding: 0.5rem;
  }
}/*# sourceMappingURL=global.css.map */