@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=LXGW+WenKai+Mono+TC:wght@700&display=swap");
:root {
  font-size: clamp(16px, 2.8vw, 18px);
}

h1 {
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 500;
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  font-weight: 500;
}

h5 {
  font-size: clamp(1.125rem, 1.7vw, 1.2rem);
  font-weight: 400;
}

h6 {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
}

p,
a,
span {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
}

small {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400;
}

li {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
}

button,
input,
textarea,
select {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 768px) {
  html {
    scroll-margin-top: 20rem;
  }
}

body {
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: rgb(60, 60, 60);
  background: #eee9e3;
}

/* CSS */
[data-aos=blur-up] {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(10px);
  transition: all 0.1s ease;
}

[data-aos=blur-up].aos-animate {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 2.5rem;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 2px;
  background-color: #d6c9bf;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}
.section-title .subtitle {
  color: #673d30;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.section-title .title {
  color: #673d30;
  font-family: "LXGW WenKai Mono TC", monospace;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .section-title .title {
    font-size: 1.75rem;
  }
}

.split {
  display: inline-block;
  overflow: hidden;
  text-shadow: 0 1.3em currentColor; /* 和 JS 位移一致 */
  will-change: transform;
  padding: 1 1rem;
}

.char {
  display: inline-block;
  position: relative;
}

section {
  padding: 8rem 0rem;
}
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
    scroll-margin-top: 5rem;
  }
}

a {
  text-decoration: none;
  color: #673d30;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}

p {
  line-height: 2;
}

.all-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  opacity: 0.35;
}
.all-bg img {
  width: 100%;
  height: 100%;
}

.cta-link {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  z-index: 999;
  flex-direction: column;
  display: flex;
  gap: 1rem;
  /* 避免子項目被等寬拉伸，同時維持靠右貼齊 */
  align-items: flex-end;
}
@media (max-width: 768px) {
  .cta-link {
    bottom: 1rem;
    right: 0.5rem;
  }
}
.cta-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 2rem;
  overflow: hidden;
}
.cta-link a.line {
  background: #39cd00;
}
.cta-link a.tel {
  background: #673d30;
}
.cta-link a.tel svg #background {
  fill: #673d30;
}
.cta-link a.tel svg #icon {
  fill: white;
  fill: #333;
}
.cta-link a .icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.cta-link a .icon svg {
  width: 50px;
}
.cta-link a .label {
  white-space: nowrap;
  overflow: hidden;
  color: white;
  /* 用可動畫屬性取代 display */
  opacity: 0;
  visibility: hidden;
  max-width: 0; /* 或用 width，依喜好 */
  margin-left: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, max-width 0.3s ease, margin-left 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}
.cta-link a:hover {
  gap: 0.5rem;
}
.cta-link a:hover .label {
  opacity: 1;
  visibility: visible;
  max-width: 200px;
  margin-left: 0rem;
  padding-right: 1rem;
  transform: translateX(0);
  transition: opacity 0.3s ease, max-width 0.3s ease, margin-left 0.3s ease, transform 0.3s ease, visibility 0s;
}
.cta-link .dropdown-menu {
  margin-right: 0.25rem;
  margin-left: 0;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.559);
  background: #eee9e3;
  backdrop-filter: blur(8px);
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-brand {
  transition: 0.5s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar .navbar-brand img {
  width: 80px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 70px;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse {
    padding-top: 1rem;
  }
}
.navbar .navbar-collapse .navbar-nav {
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse .navbar-nav {
    gap: 0.5rem;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: #673d30;
}

#hero {
  width: 100%;
  height: 85vh;
  position: relative;
  overflow: hidden;
  margin-top: 109.09px;
  border-radius: 0;
}
@media (max-width: 768px) {
  #hero {
    margin-top: 90px;
    height: calc(100vh - 133.95px - 95.86px);
  }
}
#hero .swiper {
  position: absolute;
  top: 0%; /* 往上預留位移空間 */
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
}
@media (max-width: 768px) {
  #hero .swiper {
    position: relative;
  }
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #hero .swiper .swiper-wrapper .swiper-slide img {
    -o-object-position: right;
       object-position: right;
  }
}
#hero .cta-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 50%);
  background: rgba(0, 0, 0, 0.599);
}
#hero .cta-box .cta-content {
  text-align: center;
  color: #673d30;
  padding: 2rem 3rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content {
    padding: 0;
    text-align: center;
  }
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 2rem;
  text-align: center;
  color: #673d30;
  font-family: "LXGW WenKai Mono TC", monospace;
  font-weight: 700;
  font-style: normal;
  color: white;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content h1 {
    text-align: center;
  }
}
#hero .cta-box .cta-content p {
  text-align: start;
  margin-bottom: 2rem;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 500;
  font-weight: 400;
  line-height: 1.8;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content p {
    text-align: center;
  }
}
#hero .cta-box .cta-content .btn-box {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content .btn-box {
    flex-direction: column;
  }
}
#hero .cta-box .cta-content .btn-box a {
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  transition: 0.5s;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content .btn-box a {
    padding: 0.5rem 1rem;
  }
}
#hero .cta-box .cta-content .btn-box a i {
  padding-left: 0.5rem;
  font-size: 1.3rem;
}
#hero .cta-box .cta-content .btn-box a:first-child {
  background: #ddceb8;
  color: #673d30;
}
#hero .cta-box .cta-content .btn-box a:last-child {
  color: rgb(255, 255, 255);
  background: white;
  background: #ddceb8;
  color: #673d30;
}
#hero .cta-box .cta-content .btn-box a:last-child:hover {
  background: #673d30;
  color: white;
}

.slogan {
  padding: 1.5rem 0;
  text-align: center;
  background: #000;
  background: #673d30;
  /* CSS */
  background-image: linear-gradient(135deg, #d1a882 0%, #e6d0b3 50%, #f4eee1 100%);
  background: #d6c9bf;
  color: white;
  color: #673d30;
  font-weight: 500;
}
.slogan h2 {
  letter-spacing: 3px;
}
.slogan svg {
  fill: white;
  fill: #673d30;
  width: 60px;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .slogan svg {
    width: 45px;
  }
}

.info .text-box h3 {
  margin-bottom: 3rem;
  position: relative;
  color: #673d30;
}
.info .text-box h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1.5rem;
  width: 20%;
  height: 5px;
  background: #673d30;
}
.info .img-box {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .info .img-box {
    height: 200px;
  }
}
.info .img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .info .img-box img {
    transform: scale(2.5);
  }
}

.feature {
  background: linear-gradient(to bottom, #eee9e3, #d6c9bf);
}
.feature .flip-card {
  background-color: transparent;
  width: 100%;
  height: 420px;
  perspective: 1000px;
}
@media (max-width: 991px) {
  .feature .flip-card {
    height: 380px;
  }
}
@media (max-width: 768px) {
  .feature .flip-card {
    height: 280px;
  }
}
.feature .flip-card .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.feature .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.feature .flip-card .flip-card-front,
.feature .flip-card .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .feature .flip-card .flip-card-front,
  .feature .flip-card .flip-card-back {
    padding: 10px 10px;
    border-radius: 10px;
  }
}
.feature .flip-card .flip-card-front {
  background-color: #ffffff;
}
.feature .flip-card .flip-card-front .card-number {
  font-family: serif;
  color: #9c7b6d;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .feature .flip-card .flip-card-front .card-number {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}
.feature .flip-card .flip-card-front img {
  width: 100%;
  max-width: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: auto;
}
@media (max-width: 768px) {
  .feature .flip-card .flip-card-front img {
    max-width: 80px;
    margin-bottom: 15px;
  }
}
.feature .flip-card .flip-card-front .card-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  letter-spacing: 0.5px;
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .feature .flip-card .flip-card-front .card-title {
    font-size: 1.1rem;
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .feature .flip-card .flip-card-front .card-title {
    font-size: 1rem;
    margin-bottom: 4px;
  }
}
.feature .flip-card .flip-card-front .card-subtitle {
  font-size: 1rem;
  color: #444444;
  margin: 0;
}
@media (max-width: 991px) {
  .feature .flip-card .flip-card-front .card-subtitle {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .feature .flip-card .flip-card-front .card-subtitle {
    font-size: 0.85rem;
  }
}
.feature .flip-card .flip-card-back {
  background-color: #9c7b6d;
  color: #ffffff;
  transform: rotateY(180deg);
  padding: 3rem;
  position: relative;
}
@media (max-width: 768px) {
  .feature .flip-card .flip-card-back {
    padding: 1rem;
  }
}
.feature .flip-card .flip-card-back::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  transform: scale(0.9);
  border-radius: 20px;
}
@media (max-width: 768px) {
  .feature .flip-card .flip-card-back::after {
    border-radius: 10px;
    transform: scale(0.95);
  }
}
.feature .flip-card .flip-card-back p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}
@media (max-width: 991px) {
  .feature .flip-card .flip-card-back p {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .feature .flip-card .flip-card-back p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

.about {
  background-color: #eee9e3;
}
@media (max-width: 768px) {
  .about {
    padding: 50px 0;
  }
}
.about .image-wrapper {
  position: relative;
  padding: 0 1rem 1rem 0;
}
@media (max-width: 991px) {
  .about .image-wrapper {
    padding: 0 0 1rem 1rem;
  }
}
.about .image-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 90%;
  background-color: #d6c9bf;
  border-radius: 8px;
  z-index: 0;
}
@media (max-width: 991px) {
  .about .image-wrapper::after {
    right: auto;
    left: 0;
  }
}
.about .image-wrapper img {
  position: relative;
  z-index: 1;
  border-radius: 8px;
}
.about .content-wrapper .core-title {
  color: #673d30;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .about .content-wrapper .core-title {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
  }
}
.about .content-wrapper .quote-text {
  font-size: 1.1rem;
  color: #673d30;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 500;
  border-bottom: 1px dashed rgba(103, 61, 48, 0.2);
  padding-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .about .content-wrapper .quote-text {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
.about .content-wrapper .quote-text p {
  margin: 0;
}
.about .content-wrapper .body-text p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
}
.about .content-wrapper .body-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .about .content-wrapper .body-text p {
    font-size: 0.95rem;
  }
}

.certification {
  background-color: #ffffff;
  background: linear-gradient(to top, white, #eee9e3);
}
@media (max-width: 768px) {
  .certification {
    padding: 50px 0;
  }
}
.certification .section-title {
  margin-bottom: 2rem;
}
.certification .cert-img-box {
  background-color: #fcfcfc;
  border: 1px solid #f2f2f2;
  border-radius: 8px;
  padding: 15px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .certification .cert-img-box {
    padding: 10px;
  }
}
.certification .cert-img-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}
.certification .cert-img-box img {
  width: 100%;
  max-height: 280px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .certification .cert-img-box img {
    max-height: 220px;
  }
}
@media (max-width: 768px) {
  .certification .cert-img-box img {
    max-height: 160px;
  }
}

.works-section {
  background: linear-gradient(to bottom, white, #eee9e3);
  padding: 8rem 0;
}
@media (max-width: 768px) {
  .works-section {
    padding: 50px 0;
  }
}
.works-section .category-slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
  padding: 0;
}
@media (max-width: 768px) {
  .works-section .category-slider-container {
    padding: 0 30px;
    margin-bottom: 2rem;
  }
}
.works-section .category-slider-container .category-swiper {
  width: 100%;
  overflow: hidden;
}
.works-section .category-slider-container .category-slide {
  width: auto;
}
.works-section .category-slider-container .category-btn {
  background-color: transparent;
  border: 1px solid #d6c9bf;
  color: #673d30;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .works-section .category-slider-container .category-btn {
    padding: 6px 16px;
    font-size: 0.9rem;
  }
}
.works-section .category-slider-container .category-btn:hover, .works-section .category-slider-container .category-btn.active {
  background-color: #673d30;
  color: #ffffff;
  border-color: #673d30;
}
.works-section .category-slider-container .cat-btn-prev,
.works-section .category-slider-container .cat-btn-next {
  display: none;
}
@media (max-width: 768px) {
  .works-section .category-slider-container .cat-btn-prev,
  .works-section .category-slider-container .cat-btn-next {
    display: flex;
    color: #673d30;
    width: 20px;
    height: 30px;
    margin-top: -15px;
  }
  .works-section .category-slider-container .cat-btn-prev::after,
  .works-section .category-slider-container .cat-btn-next::after {
    font-size: 1rem;
    font-weight: bold;
  }
}
.works-section .category-slider-container .cat-btn-prev {
  left: 0;
}
.works-section .category-slider-container .cat-btn-next {
  right: 0;
}
.works-section .works-slider-container {
  position: relative;
  padding-bottom: 4rem;
}
.works-section .works-slider-container .works-swiper {
  width: 100%;
  overflow: hidden;
  padding: 10px;
}
.works-section .works-slider-container .image-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  background-color: #eee9e3;
  transition: all 0.3s ease;
}
.works-section .works-slider-container .image-box a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.works-section .works-slider-container .image-box a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}
.works-section .works-slider-container .image-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.works-section .works-slider-container .image-box:hover a::after {
  background-color: rgba(0, 0, 0, 0.2);
}
.works-section .works-slider-container .image-box:hover img {
  transform: scale(1.05);
}
.works-section .works-slider-container .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.works-section .works-slider-container .works-btn-prev,
.works-section .works-slider-container .works-btn-next {
  color: #ffffff;
  background-color: rgba(103, 61, 48, 0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: -20px;
  transition: background-color 0.3s;
}
.works-section .works-slider-container .works-btn-prev:hover,
.works-section .works-slider-container .works-btn-next:hover {
  background-color: #673d30;
}
.works-section .works-slider-container .works-btn-prev::after,
.works-section .works-slider-container .works-btn-next::after {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .works-section .works-slider-container .works-btn-prev,
  .works-section .works-slider-container .works-btn-next {
    display: none;
  }
}
.works-section .works-slider-container .works-pagination {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.works-section .works-slider-container .works-pagination .swiper-pagination-bullet {
  background-color: #d6c9bf;
  opacity: 0.6;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}
.works-section .works-slider-container .works-pagination .swiper-pagination-bullet-active {
  background-color: #673d30;
  opacity: 1;
  width: 24px;
  border-radius: 5px;
}

.faq-section {
  background: #d6c9bf;
}
.faq-section .custom-accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-width: 0;
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
}
.faq-section .custom-accordion .accordion-item {
  border-bottom: 1px solid rgba(103, 61, 48, 0.15);
  margin-bottom: 0.5rem;
}
.faq-section .custom-accordion .accordion-item:last-child {
  border-bottom: none;
}
.faq-section .custom-accordion .accordion-button {
  color: #673d30;
  font-size: 1.15rem;
  font-weight: 500;
  padding: 1.5rem 1rem;
  background-color: transparent;
  box-shadow: none;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .faq-section .custom-accordion .accordion-button {
    font-size: 1.05rem;
    padding: 1.25rem 0.5rem;
  }
}
.faq-section .custom-accordion .accordion-button .q-icon {
  font-family: "LXGW WenKai Mono TC", monospace;
  font-size: 1.4rem;
  font-weight: 700;
  margin-right: 12px;
  color: rgba(103, 61, 48, 0.5);
  transition: color 0.3s ease;
}
.faq-section .custom-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23673d30'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-section .custom-accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #673d30;
  font-weight: 700;
  padding-bottom: 0.5rem;
}
.faq-section .custom-accordion .accordion-button:not(.collapsed) .q-icon {
  color: #673d30;
}
.faq-section .custom-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23673d30'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-section .custom-accordion .accordion-button:hover {
  color: rgb(68.2119205298, 40.3973509934, 31.7880794702);
}
.faq-section .custom-accordion .accordion-button:hover .q-icon {
  color: #673d30;
}
.faq-section .custom-accordion .accordion-body {
  padding: 0 1rem 1.5rem 3.2rem;
  color: #4a4a4a;
}
@media (max-width: 768px) {
  .faq-section .custom-accordion .accordion-body {
    padding: 0 0.5rem 1.25rem 2.5rem;
  }
}
.faq-section .custom-accordion .accordion-body p {
  margin: 0;
  text-align: justify;
  line-height: 1.8;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/env/img-1.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}
@media (max-width: 768px) {
  .cta-section::before {
    background-attachment: scroll;
    transform: scale(1.1);
    will-change: transform;
  }
}
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}
.cta-section .container {
  position: relative;
  z-index: 2;
}
.cta-section .cta-title {
  color: #673d30;
  font-family: "LXGW WenKai Mono TC", monospace;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cta-section .cta-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.cta-section .cta-btn-wrapper .cta-btn {
  background-color: #673d30;
  color: white;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta-section .cta-btn-wrapper .cta-btn:hover {
  background-color: rgb(68.2119205298, 40.3973509934, 31.7880794702);
  transform: translateY(-3px);
}
.cta-section .cta-social-wrapper {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.cta-section .cta-social-wrapper .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #673d30;
  color: white;
  font-size: 1.5rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta-section .cta-social-wrapper .social-icon:hover {
  background-color: rgb(68.2119205298, 40.3973509934, 31.7880794702);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact-minimal-section {
    padding-bottom: 2rem;
  }
}
.contact-minimal-section .contact-brand {
  font-size: 1.4rem;
  font-weight: 500;
  color: #222222;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  text-align: center;
}
.contact-minimal-section .contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 420px;
}
.contact-minimal-section .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #555555;
  font-size: 1.1rem;
  line-height: 1.6;
  text-decoration: none;
}
.contact-minimal-section .contact-item i {
  font-size: 1.4rem;
  color: #666666;
  margin-top: 3px;
}
.contact-minimal-section .contact-item span {
  flex: 1;
}
.contact-minimal-section .contact-item span small {
  font-size: 0.85rem;
  color: #888888;
}
.contact-minimal-section .contact-item.link-item {
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact-minimal-section .contact-item.link-item:hover {
  color: #673d30;
}
.contact-minimal-section .contact-item.link-item:hover i {
  color: #673d30;
}

.auto-carousel {
  padding: 0;
}
.auto-carousel .swiper {
  width: 100%;
  transform: rotate(0deg);
  position: relative;
}
.auto-carousel .swiper .swiper-wrapper {
  transition-timing-function: linear !important; /* 平滑線性移動 */
}
.auto-carousel .swiper .swiper-slide {
  width: 600px;
  aspect-ratio: 3/2;
}
@media (max-width: 768px) {
  .auto-carousel .swiper .swiper-slide {
    width: 300px;
  }
}
.auto-carousel .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

footer {
  padding-bottom: 1rem;
}
footer a {
  text-decoration: underline;
}/*# sourceMappingURL=all.css.map */