@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");
:root {
  font-size: clamp(15px, 2.8vw, 18px);
}

h1 {
  font-size: clamp(12rem, 18vw, 16rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.5rem);
  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;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #f0d8b6;
  overflow-x: hidden;
}

h2 {
  margin-bottom: 3rem;
  display: inline-block;
}
@media (max-width: 768px) {
  h2 {
    margin-left: 1rem;
  }
}
h2 span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #9f1919;
  border-radius: 100%/100%;
  position: relative;
  z-index: 10;
  margin-right: 1rem;
  width: 75px; /* 寬度較長 */
  height: 100px; /* 高度較短 */
  color: white;
  font-size: clamp(1.8rem, 3vw, 2rem);
  font-weight: 600;
}
@media (max-width: 768px) {
  h2 span {
    width: 50px;
    height: 70px;
  }
}
h2 span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px; /* 寬度較長 */
  height: 75px; /* 高度較短 */
  background: #9f1919;
  border-radius: 100%/100%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 768px) {
  h2 span::before {
    width: 70px;
    height: 50px;
  }
}

section {
  padding: 10rem 0rem;
}
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

a {
  text-decoration: none;
  color: #9f2c2c;
}

.navbar.scrolled {
  background: #f0d8b6;
}
.navbar.scrolled .navbar-brand {
  opacity: 1;
}
.navbar.scrolled .navbar-brand img {
  width: 50px;
}
@media (max-width: 768px) {
  .navbar.scrolled .navbar-brand img {
    width: 50px;
  }
}
.navbar.scrolled .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: #4f4f4f;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-brand {
  transition: 0.5s;
  opacity: 0;
}
.navbar .navbar-brand img {
  width: 40px;
  transition: 0.5s;
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
  color: white;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 1rem 1em;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: #9f2c2c;
}

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (max-width: 768px) {
  #hero {
    height: auto;
    margin-top: 104px;
  }
}
#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: rgba(0, 0, 0, 0.246);
}
@media (max-width: 768px) {
  #hero .cta-box {
    padding: 2rem 1rem;
    position: static;
    background: none;
    display: none;
  }
}
#hero .cta-box .cta-content {
  text-align: center;
  color: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content {
    background: rgba(0, 0, 0, 0.293);
  }
}
#hero .cta-box .cta-content .img-box {
  width: 160px;
  position: relative;
}
#hero .cta-box .cta-content .img-box::before {
  content: "1212";
  position: absolute;
  bottom: 3rem;
  right: 1rem;
  width: 20%;
  height: 40%;
  background: white;
  background: #f0d8b6;
  border-radius: 50px;
  z-index: -1;
}
#hero .cta-box .cta-content .img-box img {
  width: 100%;
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 1rem;
  text-align: center;
}
#hero .cta-box .cta-content p {
  margin-bottom: 2rem;
}
#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;
}
#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: #9f2c2c;
  color: white;
}
#hero .cta-box .cta-content .btn-box a:last-child {
  color: white;
}
#hero .cta-box .cta-content .btn-box a:last-child:hover {
  background: white;
  color: #9f2c2c;
}
#hero .swiper {
  width: 100%;
  height: 100%;
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cloud {
  position: absolute;
  filter: grayscale(100%) brightness(0);
  opacity: 0.2;
}
@media (max-width: 768px) {
  .cloud {
    display: none;
  }
}

#about {
  position: relative;
}
#about .cloud-1 {
  top: 5rem;
  left: 6rem;
  width: 18%;
}
#about .cloud-2 {
  top: 50%;
  transform: translateY(-50%);
  right: -6rem;
  width: 20%;
}
#about .cloud-3 {
  bottom: 2rem;
  left: 40%;
  transform: translateX(-50%);
  width: 20%;
}
#about .inner-corner-border {
  position: relative;
  margin: auto;
  width: 100%;
  padding: 1.5rem 0;
  background: radial-gradient(30px at 30px 30px, transparent calc(98% - 5px), #9f2c2c calc(100% - 5px) 98%, transparent), linear-gradient(#9f2c2c, #9f2c2c), linear-gradient(#9f2c2c, #9f2c2c), linear-gradient(#9f2c2c, #9f2c2c), linear-gradient(#9f2c2c, #9f2c2c);
  background-position: -30px -30px, 29px 0, 29px 100%, 0 29px, 100% 29px;
  background-size: 100% 100%, calc(100% - 58px) 5px, calc(100% - 58px) 5px, 5px calc(100% - 58px), 5px calc(100% - 58px);
  background-repeat: repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
#about .inside {
  position: relative;
  margin: auto;
  width: 95%;
  background: radial-gradient(30px at 30px 30px, transparent calc(98% - 5px), #9f2c2c calc(100% - 5px) 98%, transparent), linear-gradient(#9f2c2c, #9f2c2c), linear-gradient(#9f2c2c, #9f2c2c), linear-gradient(#9f2c2c, #9f2c2c), linear-gradient(#9f2c2c, #9f2c2c);
  background-position: -30px -30px, 29px 0, 29px 100%, 0 29px, 100% 29px;
  background-size: 100% 100%, calc(100% - 58px) 5px, calc(100% - 58px) 5px, 5px calc(100% - 58px), 5px calc(100% - 58px);
  background-repeat: repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3rem 5rem 2rem;
  line-height: 2;
}
@media (max-width: 768px) {
  #about .inside {
    width: 90%;
    padding: 2rem 1rem;
  }
}
#about .inside p {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #about .inside p {
    margin-bottom: 1.5rem;
  }
}

#products {
  background: #9f2c2c;
  padding: 10rem 8rem;
}
@media (max-width: 768px) {
  #products {
    padding: 5rem 0rem;
  }
}
#products h2 span {
  color: #9f2c2c;
  background: #f0d8b6;
}
#products h2 span::before {
  background: #f0d8b6;
}
#products .products-card {
  background: #f0d8b6;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 1rem;
  position: relative;
  margin-bottom: 10rem;
}
#products .products-card .h4-box {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  overflow: hidden;
}
#products .products-card .h4-box h4 {
  font-size: clamp(12rem, 18vw, 16rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.46);
  margin-left: -2.5rem;
}
#products .products-card .img-box {
  display: flex;
  justify-content: center;
  z-index: 2;
  transform: translateY(-3rem) rotate(0deg);
  position: relative;
  z-index: 2;
}
#products .products-card .img-box img {
  height: 500px;
}
@media (max-width: 768px) {
  #products .products-card .img-box img {
    height: 350px;
  }
}
#products .products-card .price-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#products .products-card .price-box .info {
  display: flex;
  align-items: center;
  padding: 0 1rem;
}
#products .products-card .price-box .price {
  flex-shrink: 0;
  display: flex;
  background: #9f2c2c;
  padding: 0.5rem 0rem 0 1rem;
  border-radius: 0.5rem 0 0 0;
  color: white;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  #products .products-card .price-box .price {
    align-items: end;
    padding: 0.5rem 1rem;
  }
}
#products .products-card .price-box .price h3 {
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  font-weight: 500;
}
#products .products-card .price-box .price span {
  font-size: clamp(1.8rem, 3vw, 2rem);
  font-weight: 600;
}
#products .other-title h2 {
  margin-bottom: 5rem;
}
#products .other-card {
  background: #f0d8b6;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 768px) {
  #products .other-card {
    margin-bottom: 3rem;
    height: auto;
  }
}
#products .other-card img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #products .other-card img {
    height: 300px;
  }
}
#products .other-card .price {
  padding: 1rem 1.5rem;
}
#products .other-card .price span {
  font-size: clamp(1.8rem, 3vw, 2rem);
  font-weight: 600;
  color: #9f2c2c;
}
#products .other-card p {
  color: rgb(72, 72, 72);
  margin-top: 1rem;
}
#products .info-title h2 {
  margin-bottom: 3rem;
}
#products .inner-corner-border {
  position: relative;
  margin: 8rem auto;
  width: 100%;
  padding: 1.5rem 0;
  background: radial-gradient(30px at 30px 30px, transparent calc(98% - 5px), #f0d8b6 calc(100% - 5px) 98%, transparent), linear-gradient(#f0d8b6, #f0d8b6), linear-gradient(#f0d8b6, #f0d8b6), linear-gradient(#f0d8b6, #f0d8b6), linear-gradient(#f0d8b6, #f0d8b6);
  background-position: -30px -30px, 29px 0, 29px 100%, 0 29px, 100% 29px;
  background-size: 100% 100%, calc(100% - 58px) 5px, calc(100% - 58px) 5px, 5px calc(100% - 58px), 5px calc(100% - 58px);
  background-repeat: repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #products .inner-corner-border {
    margin: 3rem 0;
  }
}
#products .inside {
  position: relative;
  margin: auto;
  width: 95%;
  background: radial-gradient(30px at 30px 30px, transparent calc(98% - 5px), #f0d8b6 calc(100% - 5px) 98%, transparent), linear-gradient(#f0d8b6, #f0d8b6), linear-gradient(#f0d8b6, #f0d8b6), linear-gradient(#f0d8b6, #f0d8b6), linear-gradient(#f0d8b6, #f0d8b6);
  background-position: -30px -30px, 29px 0, 29px 100%, 0 29px, 100% 29px;
  background-size: 100% 100%, calc(100% - 58px) 5px, calc(100% - 58px) 5px, 5px calc(100% - 58px), 5px calc(100% - 58px);
  background-repeat: repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3rem 5rem 2rem;
  line-height: 2;
}
@media (max-width: 768px) {
  #products .inside {
    width: 90%;
    padding: 2rem 1rem;
  }
}
#products .inside ul {
  list-style: none;
  padding: 0;
  color: white;
}
@media (max-width: 768px) {
  #products .inside ul {
    padding: 0 2rem;
  }
}
#products .inside ul li {
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
#products .inside ul ul {
  list-style: circle;
  padding: 0 2rem;
  margin-bottom: 2.5rem;
}
#products .inside ul ul li {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
}

#info .info-box {
  background: url(../images/info/bg.jpg) no-repeat;
  background-size: cover;
  position: relative;
}
#info .info-box::after {
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.3);
  filter: blur(5px) grayscale(1);
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}
#info .info-box .img-box {
  position: relative;
  width: 35%;
  z-index: 5;
  transform: translateY(-6rem);
}
@media (max-width: 768px) {
  #info .info-box .img-box {
    width: 40%;
    transform: translateY(-3rem);
  }
}
#info .info-box .img-box img {
  width: 100%;
}
@media (max-width: 768px) {
  #info .info-box .img-box img {
    width: 90%;
  }
}
#info .big-img-box {
  position: relative;
  width: 60%;
  margin-top: -20rem;
  margin-left: -1.5rem;
  z-index: 10;
  position: relative;
  transform: rotate(5deg);
}
@media (max-width: 768px) {
  #info .big-img-box {
    margin-top: -5rem;
    width: 50%;
  }
}
#info .big-img-box img {
  width: 100%;
}
#info .text-box {
  z-index: 4;
  background: #9f2c2c;
  border-radius: 1rem;
  padding: 1rem;
}
#info .text-box .text {
  border: 2px solid #f0d8b6;
  padding: 2rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #info .text-box .text {
    padding: 1rem;
    border-radius: 0.5rem;
  }
  #info .text-box .text::-webkit-scrollbar {
    width: 25px; /* 滾動條寬度 */
  }
  #info .text-box .text::-webkit-scrollbar-thumb {
    background-color: #ffffff; /* 滾動塊顏色 */
    border-radius: 11000px;
    border: 10px solid #9f2c2c; /* 外框讓滾動塊有內縮感 */
  }
}
#info .text-box .text ul {
  list-style: none;
  padding: 0;
  color: white;
}
#info .text-box .text ul li {
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
#info .text-box .text ul ul {
  list-style: circle;
  padding: 0 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  #info .text-box .text ul ul {
    padding: 0 1rem;
  }
}
#info .text-box .text ul ul li {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
}

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

@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact .contact-box {
  display: flex;
  gap: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #contact .contact-box {
    margin-bottom: 1rem;
  }
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box .icon-box {
  background: #9f2c2c;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
#contact .contact-box .icon-box i {
  color: white;
  font-size: 2rem;
}
#contact .contact-box a {
  color: #9f2c2c;
  font-weight: 600;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

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