
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');

body {
  font-family:"Noto Sans TC", serif;
  font-style: normal;
  font-variation-settings:"wdth" 100;
  line-height: 28px;
  color: #333;
  font-size: 15px;
  background-color: #f5f5f5; 
}
a {
  text-decoration: none;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #2f2f2f;
}
a:hover {
  color: #2f2f2f;
  text-decoration: none; 
}
p{
  text-align: justify;
}

/* 
---------------------------------------------------------------------------------------------
nav
---------------------------------------------------------------------------------------------
*/
.menu-button {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 10px;
  font-size: 20px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
}

/* Fullscreen overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: end;
  z-index: 1000;
}
.menu-overlay.active {
  display: flex;
}

/* White Menu Box */
.menu-box {
  min-width: 300px;
  min-height: 73%;
  margin-right: 15px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.menu-logo{
  width: 100%;
  max-width: 150px;
  margin:20px 0 20px 50px;
}

.menu-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-box .main-nav li{
  padding: 10px 0;
}
.menu-box .main-nav{
  padding-top: 20px;
  width: 100%;
  border-top: 1px solid #e5e7eb;
}
.menu-box .main-nav a {
  text-decoration: none;
  color: #333;
  font-size: 22px;
  padding-left: 50px;
  letter-spacing: 0.05em;
}

.menu-box .sub-nav li{
  padding: 3px 0;
}
.menu-box .sub-nav{
  margin-top: 20px;
  padding-top: 20px;
  width: 100%;
  border-top: 1px solid #e5e7eb;
}
.menu-box .sub-nav a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  padding-left: 50px;
  font-weight: 200;
}
.menu-box a:hover {
  color: #007BFF;
}

@media (max-width: 768px) {
  .menu-button{
    top: 10px;
    right: 10px;
  }
}

/* 
---------------------------------------------------------------------------------------------
hero - banner
---------------------------------------------------------------------------------------------
*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: transparent;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, height 0.3s ease;
  z-index: 10;
}
.navbar.shrunk {
  background: none;
  height: 50px;
  opacity: 0;
}
.navbar-logo {
  position: fixed;
  width: 100px;
  opacity: 0; /* Initially hidden */
  display: none;
}

.navbar.shrunk .navbar-logo {
  opacity: 0; /* Fade to visible */
}
.logo-container {
  display: flex;
  align-items: center;
  padding-left: 1%;
  padding-top:0%;
}
.logo {
  transition: opacity 0.3s ease; /* Change to opacity for fade effect */
}
.hero-logo {
  position: absolute;
  z-index: 3;
  top: 3%;
  left: 15%;
  width: 70%;
  transition: opacity 0.3s ease; /* Change to opacity for fade effect */
}
@media (max-width: 768px) {
  .hero-logo{
    left: 5%;
  }
}


/* 
---------------------------------------------------------------------------------------------
herobg
---------------------------------------------------------------------------------------------
*/
.herobg{
  position: relative;
  background-image: url("../images/herobg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 150vh;
}

.herobg h1{
  position: absolute;
  width: 100%;
  bottom: 15%;
  right: 8.5%;
  font-size: 20px;
  line-height: 20px;
  font-weight: normal;
  text-align: end;
}
.herop{
  position: absolute;
  bottom: 20%;
  right:9%;
}

.herobg p{
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.5em;
  text-align: end;
  font-weight: normal;
  margin:10px auto 0;
  padding:5px 0 5px 5px;
}

.herobg .arrow-down{
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  font-size:30px;
}


@media (max-width: 768px) {
  .herobg{
    height: 700px;
    background-position: 0;
  }
  .herop{
    right: 0;
  }
  .herobg p{
    width: 100%;
    text-align: center;
    letter-spacing: 0.05em;
    }
  .herobg h1{
    position: absolute;
    width: 100%;
    bottom:6%;
    right:0;
    text-align: center;
    font-size: 15px;
    line-height: 20px;
    font-weight: normal;
    color: #fff;
  }
  .herobg .arrow-down{
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    font-size:20px;
  }
}


/* 
---------------------------------------------------------------------------------------------
index-features-iconbar
---------------------------------------------------------------------------------------------
*/

.features-icon-fullbg .carousel-indicators {
  position: absolute;
  border-radius:50px;
  margin:20px auto;
  filter: brightness(0) invert(1);
}
.features-icon-fullbg .carousel-indicators [data-bs-target] {
    width: 80px;
    height: 80px;
    background:none;
    border: none;
    border-radius: 50%;
    margin: 5px;
    opacity: 0.5;
    text-indent:0;
}
.features-icon-fullbg .carousel-indicators .active {
    opacity: 1;
    background: rgba(255,255,255,.5);
}

.featureicon-bgcard{
  background-size: cover;
  background-position: center;
  color: #fff;
  height: 100vh;
  text-align: center;
  padding-top: 30px;
}
.featureicon-bgcard img{
  max-width: 450px;
}


@media (max-width: 768px) {
  .features-icon-fullbg .carousel-indicators {
    max-width: 90%;
  }
  .features-icon-fullbg .carousel-indicators [data-bs-target] {
    width: 35px;
    height: 35px;
  }
  .featureicon-bgcard{
    height:75vh;
  }
  .featureicon-bgcard img{
    max-width: 80%;
  }
  .features-icon-fullbg .carousel-control-prev,.features-icon-fullbg .carousel-control-next{
    display: none;
  }

}
/* 
---------------------------------------------------------------------------------------------
index-product-slider
---------------------------------------------------------------------------------------------
*/
.index-product-slider{
  padding: 100px 0 30px;
}
.index-product-title{
  margin: auto;
}
.index-product-title h2{
  border-bottom: 1px solid #000;
  font-weight: bold;
  text-align: center;
  display: block; /* 使用 block 顯示，這樣才能完全占滿父元素的寬度 */
  margin: 0 auto; /* 讓標題的外邊距居中 */
  width: fit-content; /* 讓標題的寬度適應內容 */
  font-size: 3em;
}


/* 
---------------------------------------------------------------------------------------------
index-intro-1
---------------------------------------------------------------------------------------------
*/
.index-brand-intro2{
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image:linear-gradient(to right, rgba(0, 0, 0,.3), rgba(0, 0, 0,0)), url('../images/index2.jpg'); /* 背景圖 */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1), 
                0px 10px 30px rgba(0, 0, 0, 0.1);
}

.index-brand-intro2 .slogan{
  position: absolute;
  top: 10%;
  left:5%;
  /*background:rgba(74, 40, 34, .5);*/
  color: #fff;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl
}

.index-brand-intro2 .slogan2{
  position: absolute;
  bottom: 5%;
  right: 5%;
  /*background:rgba(74, 40, 34, .5);*/
  color: #fff;
}

.index-brand-intro2 .slogan h2{
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
  font-size: 2em;
}
.slogan4 h2{
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
  font-size: 1.3em;
  text-align: end;
}


.index-brand-intro3{
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image:linear-gradient(to top, rgba(255,255,255,0),rgba(255,255,255,0)), url('../images/index3.jpg'); /* 背景圖 */
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
  box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1), 
                0px 10px 30px rgba(0, 0, 0, 0.1);
}
.index-brand-intro3 .slogan{
  position: absolute;
  bottom:10%;
  right:1%;
}
.index-brand-intro3 .slogan h2{
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
  font-size: 1.7em;
    color: rgba(70, 40, 34, 1);
}


@media (max-width: 768px) {
  .index-brand-intro2{
    background-attachment: scroll;
    min-height: 300px;
  }
  .index-brand-intro2 .slogan{
    top: auto;
    bottom:15px;
    left:15px;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
  }
  .index-brand-intro2 .slogan h2{
    font-weight: bold;
    line-height: 1.5;
    margin-bottom:0;
    font-size: 1em;
  }

  .index-brand-intro3{
    background-attachment: scroll;
    min-height: 300px;
  }
  .index-brand-intro3 .slogan{
    top:15px;
    right: 15px;
    bottom: auto;
    text-align: end;
  }
  .index-brand-intro3 .slogan h2{
    margin-bottom: 0;
    font-size: 1em;
    color: #000
  }



}

/* 
---------------------------------------------------------------------------------------------
index-stair-intro
---------------------------------------------------------------------------------------------
*/
.index-stair-intro{
  position: relative;
  width: 100%;
  padding:50px 0 50px;
  text-align: center;
  background-image: url('../images/sloganbg.jpg'); /* 背景圖 */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1), 
                0px 10px 30px rgba(0, 0, 0, 0.1);
}
.index-stair-intro img{
  max-width:70%;
}

@media (max-width: 768px) {
  .index-stair-intro {
    position: relative;
    padding:50px 0 ;
    text-align: right;
    background-attachment: scroll;
  }
  .index-stair-intro img{
    max-width: 100%;
  }
}

/* 
---------------------------------------------------------------------------------------------
exclusive agency
---------------------------------------------------------------------------------------------
*/
.exclusive-agency{
  position: relative;
  width: 100%;
  background-image:linear-gradient(to top, rgba(0, 0, 0,.2), rgba(0, 0, 0, .2)),url('../images/exclusiveagent.jpg'); /* 背景圖 */
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0 200px;
  text-align: center;
}
.exclusive-agency h3{
  font-weight: 900;
  font-size: 40px;
}
.exclusive-agency span{
  font-weight: 900;
  font-size: 20px;
  display: block;
  margin-bottom: 250px;
}
.exclusive-agency img{
  max-width: 400px;
}
@media (max-width: 768px) {
  .exclusive-agency{
    padding: 50px 0;
  }
  .exclusive-agency span{
    margin-bottom: 50px;
  }
  .exclusive-agency img{
    max-width: 200px;
  }
}
/* 
---------------------------------------------------------------------------------------------
index-designer-intro
---------------------------------------------------------------------------------------------
*/

.index-designer-intro{
  padding: 100px 0;
}

.index-designer-intro .designer-content h3{
  font-weight: 900;
  margin-bottom: 50px;
  font-size: 35px;
}
.index-designer-intro .designer-content img{
  max-width: 90%;
}
.index-designer-intro .designer-content p{
  max-width: 50%;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .index-designer-intro{
    padding: 5em 0 3em;
  }
  .index-designer-intro .designer-content h3{
    font-size: 30px;
    margin-bottom: 15px;
  }
  .index-designer-intro .designer-content p{
    max-width: 100%;
    margin:0 auto 30px;
  }
}

/* 
---------------------------------------------------------------------------------------------
index-contact
---------------------------------------------------------------------------------------------
*/

.index-contact{
  position: relative;
  width: 100%;
  background-image:linear-gradient(to top, rgba(0, 0, 0,.0), rgba(0, 0, 0, .0)),url('../images/index1.jpg'); /* 背景圖 */
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding: 200px 0;
}
.contact-card{
  background: rgba(70, 40, 34, 1.0);
  padding: 50px;
  border-radius: 10px;
}
.index-contact h3{
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 35px;
  margin-bottom: 20px;
  border-bottom: 0.5px solid #fff;
  padding-bottom: 20px;
  color: #fff;
}
.index-contact p{
  margin-bottom: 20px;
  color: #fff;
}
.index-contact a{
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 2px 30px;
}
.index-contact a:hover{
  color: #000;
  background: #fff;
}


@media (max-width: 768px) {
  .index-contact{
    padding: 50px 0;
  }
  .contact-card{
    text-align: center;
    padding:30px 15px;
  }
  .index-contact h3{
    font-size: 23px;
    margin-bottom: 15px;
    padding-bottom:15px;
  }
  .index-contact p{
    font-size: 13px;
    text-align: left;
  }
}


/* 
---------------------------------------------------------------------------------------------
footer
---------------------------------------------------------------------------------------------
*/

.footer-section {
  padding: 50px 0 ;
  background: #000;
  color: #fff;
}
.footer-section .relative {
  position: relative;
}
.footer-section a {
  text-decoration: none;
  color: #fff;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; 
}
.footer-section a:hover {
  color: #fff; 
}
.footer-section .footer-logo-wrap .footer-logo {
  width: 100%;
  max-width: 100px;
}
.footer-section .custom-social li {
  margin: 2px;
  display: inline-block;
  font-size: 20px;
}
.footer-section .custom-social li a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  color: #fff;
}
.footer-section .custom-social li a:hover {
  color: #fff; 
}
.footer-section .border-top {
  border-color: #fff; 
}
.footer-section .border-top.copyright {
  font-size: 13px !important; 
}


@media (max-width: 768px) {
  .footer-section{
    font-size: 13px;
  }
}


/* 
---------------------------------------------------------------------------------------------
sub page logo area
---------------------------------------------------------------------------------------------
*/

.sub-logo{
  background: #fff;
  top: 0!important;
  left: 50%;
  width: 80%;
  padding:0 30px 0;
  transform: translateX(-50%);
  border-bottom-right-radius:15px;
  border-bottom-left-radius:15px;
}
.sub-logo img{
  max-width: 400px;
}
.sub-logo .top-title{
  margin-top: 50px;
  padding: 15px 15px 15px 0;
  border-top:1px dashed #000;
}
.sub-logo .top-title h2{
  text-align: right;
  font-weight: 900;
  margin: 0;
}


@media (max-width: 768px) {
  .sub-logo{
    width:98%;
  }
  .sub-logo img{
    max-width: 200px;
  }
  .sub-logo .top-title{
    margin-top: 20px;
  }
}

/* 
---------------------------------------------------------------------------------------------
feature page intro
---------------------------------------------------------------------------------------------
*/
.feature-intro-bg {
  position: relative;
  width: 95%;
  box-sizing: border-box; /* 確保 padding 不影響總尺寸 */
  overflow: hidden; /* 避免影片溢出 */
  border-radius:20px;
  margin: 50px auto;
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 讓影片填滿整個背景 */
  z-index: -1; /* 讓影片置於底層 */
}
.feature-intro-bg .intro-content {
  max-width: 80%;
  margin: 0 auto;
  padding:350px 80px 150px;
  position: relative;
  z-index: 1; /* 確保內容顯示在影片之上 */
  color: #fff;
  text-align: center;
}
.feature-intro-bg .intro-content h3{
  font-weight: 900;
  margin:0 auto 40px;
  background: #000;
  padding: 3px 10px;
  width: max-content;
  max-width: 100%;
}

.feature-intro-bg .intro-content h4{
  font-weight: 500;
  margin:0 auto 40px;
  padding: 3px 5px;
  background: #000;
  width: max-content;
  max-width: 100%;
}

.feature-intro-bg .intro-content p{
  margin:0 auto;
  padding: 3px 5px;
  background: #000;
  width: max-content;
  max-width: 100%;
}


@media (max-width: 768px) {
  .feature-intro-bg{
    width: 100%;
    border-radius: 0;
  }
  .feature-intro-bg .intro-content {
    max-width: 100%;
    padding: 150px 15px 30px;
  }
  .feature-intro-bg .intro-content h3{
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .feature-intro-bg .intro-content h4{
    font-size: 20px;
  }
  .feature-intro-bg .intro-content p{
    padding: 0 5px;
    font-size: 13px;
    margin-bottom: 10px;
  }
}



/* 
---------------------------------------------------------------------------------------------
about page feature slider
---------------------------------------------------------------------------------------------
*/
.about-slider-bg{
  position: relative;
  width: 95%;
  box-sizing: border-box; /* 確保 padding 不影響總尺寸 */
  border-radius:20px;
  margin: 50px auto;
}
/**/
.about-slider-content{
  position: relative;
  margin:0 auto;
}
.about-slider-content-section{
  border-radius:20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-bottom: 80px;
}
/**/
.button-container {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 10px;
}
.button-container button {
    padding: 15px 10px 15px 10px;
    background: #999;
    font-size: 16px;
    cursor: pointer;
    border:none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    writing-mode: sideways-lr; /* 讓文字垂直排列 */
    color: #fff;
}

.hidden {
    display: none;
}



@media (max-width: 768px) {
  .button-container {
    bottom: 0;
    top: auto;
    right: 0;
    left: 0;
    transform: none;
    flex-direction: row; /* 水平排列 */
    justify-content: center; /* 置中排列 */
    gap: 10px;
  }
  .button-container button {
    border-radius: 0; /* 清除圓角 */
    border-top-right-radius:10px ;
    border-top-left-radius:10px ;
    writing-mode: horizontal-tb; /* 文字水平排列 */
    padding: 10px 20px; /* 調整按鈕大小適應手機 */
  }
}




/**/
.content-0-box{
  background: rgba(0, 0, 0, 0.8);
  padding:80px 40px 40px;
  color: #fff;
  border-bottom-right-radius:15px;
  border-bottom-left-radius:15px;
  margin-bottom: 50px;
}
.content-0-box h4{
  font-size: 18px;
}
.content-0-box h5{
  font-weight: 900;
  font-size: 50px;
  margin-bottom: 30px;
  display: inline-block;
}
.content-0-box h2{
  font-weight: 100;
  font-size: 30px;
  margin-bottom: 50px;
}



.content-0-box .logo{
  max-width: 50%;
  margin: 30px 0;
}

.content-0-features {
  display: flex;
  width: 100%;
  height: 200px;
  gap: 5px;
}
.content-0-features .box {
  flex: 1;
  background: rgba(0, 0, 0, .8);
  transition: flex 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 5px;
}
.content-0-features .box:hover {
  flex: 2;
  border:1px solid #fff;
}
.content-0-features .box-card{
  position: relative;
  color: #fff;
  text-align: center;
  padding: 10px;
}
.content-0-features .box-card span{
  display: block;
  line-height: 1.2;
  margin-bottom: 8px;
  font-size: 13px;
}
.content-0-features .box-card h6{
  font-weight: 700;
  font-size: 15px;
}
.content-0-features .box-card img{
  width: 100px;
}


.content-0-subcontent{
  margin-top: 100px;
  color: #fff;
}
.content-0-subcontent img{
  border-radius: 20px;
}
.content-0-subcontent h4{
  font-weight: 900;
  font-size: 50px;
  margin-bottom: 30px;
}
.content-0-subcontent .btn{
  border-radius: 30px;
  color: #fff;
  border:1px solid #fff;
  padding: 5px 30px;
  margin-top: 50px;
}




@media (max-width: 768px) {
  .content-0-box{
    padding:20px;
  }
  .content-0-subcontent img{
    margin-bottom: 20px;
  }
  .content-0-box p{
    font-size: 13px;
    margin:0;
  }
  .content-0-features{
    height: 180px;
  }
  .content-0-features .box-card span{
    font-size:9px;
  }
  .content-0-features .box-card h6{
    font-size: 13px;
  }
  .content-0-subcontent{
    margin-top: 50px;
  }
  .content-0-subcontent h4{
    font-size: 25px;
    margin-top: 20px;
  }
   .content-0-subcontent p{
    font-size: 13px;
  }
  .content-0-box h5{
    font-size: 25px;
  }
  .content-0-box h2{
    font-size: 20px;
    margin-bottom: 30px;
  }
}




/*sofa fade*/

.image-container {
  position: relative;
  width: 100%;
  height: 800px;
  margin: 50px auto; /* 增加滾動空間 */
  overflow: hidden; /* 防止圖片超出範圍 */
}
.image-container img {
  position: absolute;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.image-1 {
    z-index: 2;
}
.image-2 {
    z-index: 1;
}

@media (max-width: 768px) {
  .image-container{
    height: 1200px;
    overflow: hidden;
  }
}


/**/
.sgssection{
  padding: 80px 0 150px;
}
.sgssection h2{
  font-weight: 900;
  margin-bottom: 50px;
}




/* 
---------------------------------------------------------------------------------------------
about page 
---------------------------------------------------------------------------------------------
*/
.about-intro-bg {
  position: relative;
  width: 95%;
  box-sizing: border-box; /* 確保 padding 不影響總尺寸 */
  overflow: hidden; /* 避免影片溢出 */
  border-radius:20px;
  margin: 50px auto;
  background-image:url(../images/about/titlebg.png);
  background-size: cover;
  background-position: center bottom;
}
.about-intro-bg .intro-content {
  margin: 0 auto;
  padding:350px 80px 0;
  position: relative;
  color: #fff;
  text-align: center;
}
.about-intro-bg .intro-content h3{
  font-weight:500;
  margin:0 auto 40px;
  background: #000;
  padding: 3px 10px;
  width: max-content;
  max-width: 100%;
  font-size: 20px;
}
.about-intro-bg .intro-content h4{
  margin: 250px 0 -20px;
  font-weight: 900;
  font-size: 80px;
}



@media (max-width: 768px) {
  .about-intro-bg{
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
  .about-intro-bg .intro-content {
    margin: 0 auto;
    padding:200px 15px 0;
  }
  .about-intro-bg .intro-content h3{
    font-weight:500;
    margin-bottom: 40px;
    font-size: 15px;
    text-align: justify;
  }
  .about-intro-bg .intro-content h4{
    margin: 50px 0 -10px;
    font-weight: 900;
    font-size: 40px;
  }
}



/**/
.story-content-bg {
    position: relative;
    width: 95%; 
    height: auto;
    border-radius:20px;
    margin: 50px auto;
    background-image: linear-gradient(to top, rgba(255, 255, 255,.7), rgba(255, 255, 255, 0)),url('../images/about/introbg.jpg');
    background-size: cover;
    background-position: center bottom;
    padding: 50px; /* 讓內層 div02 不貼邊 */
    display: flex;
    align-items: center;
    justify-content: center;
}
.story-content {
    width: 100%;
    height: 100%;
    border: 1px dashed #000;
    text-align: center;
    position: relative;
    border-radius: 20px;
    padding: 50px;
}
.story-content img{
  max-width: 180px;
  margin-bottom: 30px;
}
.story-content h4{
  font-weight: 900;
  font-size: 30px;
}
.story-content h3{
  font-weight: 300;
  font-size: 30px;
  margin-bottom: 40px;
}
.story-content p{
  max-width: 500px;
  text-align: center;
  margin:20px auto;
}
.story-content .hr{
  max-width: 70%;
  margin: 50px auto;
  border-top: 1px dashed #000;
}


/* 角落圓形裝飾 */
.circle {
    position: absolute;
    width: 30px; /* 圓點大小 */
    height: 30px;
    border: 1px dashed #000;
    border-radius: 50%;
    background: transparent;
}

/* 四個角落的擺放 */
.circle.tl { top: 15px; left: 15px; }
.circle.tr { top: 15px; right: 15px; }
.circle.bl { bottom: 15px; left: 15px; }
.circle.br { bottom: 15px; right: 15px; }


@media (max-width: 768px) {
  .story-content-bg {
    padding:0
  }
  .story-content {
    padding:15px 15px 50px 15px;
    font-size: 13px;
  }
  .story-content p{
    text-align: justify;
  }
}




/**/
.founder-container {
  width: 95%;
  height: 100vh;
  border-radius: 20px;
  margin: 50px auto;
  background-image: url('../images/about/yiru.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: space-between;
}
/* 可展開區塊 (初始隱藏) */
.expandable {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    transition: height 0.5s ease-in-out;
    height: 0px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
/* 展開狀態 */
.expandable.expand {
    height: 650px; /* 展開高度 */
}
/* 左右區塊定位 */
.founder-container .left { 
  left: 0;
  padding:0px 50px;
  background: rgba(255, 255, 255, .9);
  color: #000;
}
.founder-container .right { 
  right: 0;
  padding:0px 50px;
  background: rgba(0, 0, 0, .9);
  color: #fff;
}

/* 內容 */
.content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  text-align: center;
}
/* 當展開時，顯示內容 */
.expandable.expand .content {
    opacity: 1;
    transform: translateY(0);
}

/* 按鈕區塊 */
 .expandable-button-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 1; /* 確保按鈕在區塊上層 */
}
.leftbtn{
  width: 200px;
  height: 58px;
  background: #000;
  border:none;
  padding:10px 20px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.leftbtn img{
  width: 100px;
}
.rightbtn{
  background: #fff;
  border:none;
  color: #000;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 20px;
  padding:10px 0 20px;
  font-weight: 900;
  text-align: center;
}
.rightbtn span{
  border-bottom: 1px dashed #000;
  padding:0 30px 5px;
}


@media (max-width: 768px) {
  .founder-container {
    height: 50vh;
    margin:50px auto;
  }
  .expandable {
    display: none;
  }
}




/**/
.esg-btn{
  width: 95%;
  border-radius: 20px;
  margin: 80px auto;
  padding: 50px 0;
  text-align: center;
  background-image: url('../images/about/esg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.esg-btn h4{
  font-weight: 900;
  font-size: 40px;
  margin-bottom: 30px;
}
.esg-btn h3{
  font-weight:300;
  font-size: 25px;
}
@media (max-width: 768px) {
  .esg-btn{
    margin: 3em auto;
    padding: 50px 0;
  }
  .esg-btn h4{
    font-size: 35px;
    margin-bottom: 30px;
  }
  .esg-btn h3{
    font-size: 25px;
  }
}
/* 
---------------------------------------------------------------------------------------------
list page 
---------------------------------------------------------------------------------------------
*/
.list-top-title{
  width: 100%;
  height: 550px;
  background-image: url('../images/product/topbg.jpg');
  background-size: cover;
  background-position: center center;
  position: relative;
}
.list-intro{
  width: 95%;
  margin: 50px auto 0;
  background: #333;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: #fff;
  padding:60px 100px;
}


@media (max-width: 768px) {
  .list-top-title{
    height: 250px;
    background-position: center bottom;
  }
  .list-intro{
    margin: 20px;
    padding:0;
  }
}


/* square border */
.corner-border {
    position: relative;
    width: 80%;
    height: auto;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    margin: auto;
    box-sizing: border-box;
}

/* 使用 before 伪元素创建左上和右下角 */
.corner-border::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    
    /* 左上角 */
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.corner-border::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    
    /* 右上角 */
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

/* 额外添加左下和右下角 */
.corner-border .bottom-left, .corner-border .bottom-right {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
}

.corner-border .bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.corner-border .bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* 让文本适应屏幕 */
.corner-border p {
    max-width: 90%;
}



@media (max-width: 500px) {
  .corner-border {
      width: 100%;
      padding:8px;
      display: none;
  }
  .corner-border p {
      font-size: 0.9rem;
  }
}



/* list item card */
.list-product-item {
    position: relative;
    width: 95%; 
    height: auto;
    margin:0 auto;
    padding: 200px 0;
    background-size: cover;
    background-position: center bottom;
    color: #fff;
    text-align: center;
}

.list-product-item::before {
    content: "";
    position: absolute;
    inset: 0; /* 相当于 top: 0; right: 0; bottom: 0; left: 0; */
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.5s ease-in-out;
}
.list-product-item:hover::before {
    background: rgba(0, 0, 0, 0.0); /* 让遮罩变浅，显得更透明 */
}


.list-product-item  .tag{
  color: #fff;
  background: #000;
}
.list-product-item h3{
  font-weight: 900;
  font-size: 80px;
  margin: 15px 0;
}

.list-product-item h2{
  font-weight: 300;
  font-size: 35px;
}

.list-bottom{
  width: 95%;
  margin:0 auto 50px;
  background: #333;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  height: 100px;
}


@media (max-width: 768px) {
  .list-product-item {
      padding:50px 0;
      margin-bottom: 15px;
  }
  .list-product-item  .tag{
    font-size: 11px;
  }
  .list-product-item h3{
    font-weight: 900;
    font-size: 30px;
    margin: 15px 0;
  }
  .list-product-item h2{
    font-weight: 300;
    font-size: 15px;
  }
  .list-product-item::before{
    background: rgba(0, 0, 0, 0);
  }
  .list-bottom{
    display: none;
  }
}




/* 
---------------------------------------------------------------------------------------------
product page
---------------------------------------------------------------------------------------------
*/
.product-item-title{
    position: relative;
    width: 100%; 
    padding: 200px 0 100px;
    margin:0 auto;
    text-align: center;
}
.product-item-title .tag{
  color: #fff;
  background: #000;
}
.product-item-title h3{
  font-weight: 900;
  font-size: 80px;
  margin: 15px 0;
}

.product-item-title h2{
  font-weight: 300;
  font-size: 35px;
}

.product-detail{
  padding:0 100px;
  text-align: center;
}
.product-detail p{
  font-weight: 300;
}
.product-detail .name{
  background: #333;
  color: #fff;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 10px 30px 10px;
  font-weight: 900;
  font-size: 40px;
  margin: 200px auto 0;
  text-align: center;
  display: inline-block;
}

@media (max-width: 768px) {
  .product-item-title {
    padding:100px 0 50px;
  }
  .product-detail{
    padding:0;
  }
  .product-detail .name{
    display: none;
  }
  .product-item-title h3{
    font-size: 25px;
  }
}






/**/
.product-sec02{
  width: 100%;
  height: 95vh;
  background-size: cover;
  background-position: center bottom;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-sec02 img{
  max-width: 200px;
}
@media (max-width: 768px) {
  .product-sec02{
    height: 250px;
  }
}

/**/
.product-video {
  position: relative;
  width:100%;
  height: 100vh;
  box-sizing: border-box; /* 確保 padding 不影響總尺寸 */
  overflow: hidden; /* 避免影片溢出 */
  margin:auto;
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 讓影片填滿整個背景 */
  z-index: -1; /* 讓影片置於底層 */
}
.product-video .intro-content {
  max-width: 200px;
  height: 100vh;
  margin: 0 auto;
  position: relative;
  z-index: 2; /* 確保內容顯示在影片之上 */
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .product-video{
    height: 60vh;
  }
  .product-video .intro-content{
    max-width: 100px;
    height: 60vh;
  }
}


/**/
.product-detail-content{
  background: rgba(36, 35, 42, 1.0);
  padding: 80px 0;
  color: #fff;
}
.product-detail-video {
  position: relative;
  width:80%;
  height: 700px;
  overflow: hidden; /* 避免影片溢出 */
  display: block;
  margin:0 auto;
}
.product-detail-video .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 讓影片填滿整個背景 */
  z-index: 1; /* 讓影片置於底層 */
}

.product-detail-content .pcontent{
  padding: 80px 100px;
}
.product-detail-content .pcontent h2{
  font-weight: 900;
  font-size: 40px;
  margin-bottom: 30px;
}
.product-detail-content .pcontent h4{
  font-weight: 300;
  font-size: 25px;
  margin-bottom: 30px;
}
.product-detail-content .pcontent h6{
  font-weight: 700;
  font-size: 18px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, .5);
  padding-top: 50px;
}
.product-detail-content .pcontent p{
}

@media (max-width: 768px) {
  .product-detail-content{
    padding: 30px 0;
  }
  .product-detail-video {
    position: relative;
    width:80%;
    height: 300px;
    overflow: hidden; /* 避免影片溢出 */
    display: block;
    margin:0 auto;
  }
  .product-detail-content .pcontent{
    padding:20px;
  }
  .product-detail-content .pcontent h2{
    font-weight: 900;
    font-size: 30px;
    margin-bottom: 30px;
  }
  .product-detail-content .pcontent h4{
    font-weight: 300;
    font-size: 25px;
    margin-bottom: 30px;
  }
  .product-detail-content .pcontent p{
  }
}

/**/
.textbg-container {
    position: relative;
    width: 100%;
    height: 90vh;
}
.background-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 230px;
    color: #fff;
    z-index: 1;
    pointer-events: none;
    text-align: center;
    font-weight: 900;
}
.editable-text {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: #000;
    z-index: 2;
    pointer-events: auto;
    font-weight: 900;
}
.image {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%) translateY(-40%);
    width: 70%;
    height: auto;
    z-index: 2;
}

@media (max-width: 768px) {
  .textbg-container {
    height: 300px;
  }
  .background-text {
    top: 40%;
    font-size: 10px;
  }
  .editable-text {
    top: 35%;
    font-size: 20px;
  }
  .image {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%) translateY(-40%);
    width: 90%;
    height: auto;
    z-index: 2;
  }
}

/**/
.owl-carousel{
  padding: 100px 0 70px;
}
.owl-carousel .item {
  text-align: center;
}
.owl-carousel .item img {
  width: 100%;
  border-radius: 5px; /* 让图片有圆角 */
}
.owl-nav button {
  background: none;
  border: none;
  font-size: 30px;
  color: black;
}
.owl-nav button:hover {
  color: gray;
}
@media (max-width: 768px) {
  .owl-carousel{
    padding: 3em 0;
  }
}


.product-sug-card p{
  text-align: center;
  margin: 10px 0;
}

.product-sug-card .fixed-ratio {
  width: 100%; /* 或者可以指定一個最大寬度 */
  max-width: 400px; /* 這裡可根據需要調整 */
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
}





/**/

.fabric-video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.fabric-video-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.fabric-video-section .fabric-title{
    position: absolute;
    top: 50px;
    left: 5%;
    z-index: 99;
    max-width: 300px;
}

.fabric-video-section .fabric-title h1{
  font-weight: 900;
  font-size: 80px;
  line-height: 80px;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  padding: 0px 0 10px;
}

.fabric-video-section .fabric-title img{
  max-width: 100px;
  margin:0 0 30px 10px;
}

.fabric-button-group{
    position: absolute;
    bottom: 8%;
    left: 5%;
    z-index: 99;
    max-width: 300px;
}

.fabric-video-section button {
    margin:5px;
    padding: 0;
    background: transparent;
    border: none;
    max-width: 40px;
    box-shadow: 1px 2px 1px #999;
    border-radius: 5px;
}

.fabric-video-section img {
    border-radius: 5px;
}

.fabric-detail {
  position: absolute;
  top: 30%;
  right: 5%;
  z-index: 99;
  display: grid;
  grid-template-columns: .6fr 1fr;
  gap: 5px;
  max-width: 500px;
  font-size: 13px;
}
.fabric-detail .label {
    color: #555;
    font-weight: 300;
}
.fabric-detail .value {
    font-weight: 700;
}




/* 
---------------------------------------------------------------------------------------------
contact page 
---------------------------------------------------------------------------------------------
*/
.contact-bg {
  position: relative;
  width: 95%;
  box-sizing: border-box; /* 確保 padding 不影響總尺寸 */
  overflow: hidden; /* 避免影片溢出 */
  border-radius:20px;
  margin: 50px auto;
  background-image:linear-gradient(to top, rgba(0, 0, 0,.7), rgba(0, 0, 0, .7)),url(../images/shop.jpg);
  background-size: cover;
  background-position: center;
}
.contact-bg .intro-content{
  margin: 0 auto;
  padding:250px 0 100px;
  position: relative;
  color: #fff;
}
.contact-bg .intro-content h3{
  font-weight:500;
  margin-bottom: 40px;
  font-size: 20px;
}
.contact-bg .intro-content p{
  max-width: 600px;
  margin:20px auto;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.contact-bg p a{
  color: #fff;
}

@media (max-width: 768px) {
  .contact-bg .intro-content{
    padding:100px 20px 50px;
  }
  .contact-bg .intro-content p{
    text-align: justify;
    font-size: 13px;
  }
}

/* 
---------------------------------------------------------------------------------------------
faq page 
---------------------------------------------------------------------------------------------
*/
.faq-bg {
  position: relative;
  width: 95%;
  box-sizing: border-box; /* 確保 padding 不影響總尺寸 */
  overflow: hidden; /* 避免影片溢出 */
  border-radius:20px;
  margin: 50px auto;
  background-image:linear-gradient(to top, rgba(0, 0, 0,.5), rgba(0, 0, 0, .5)),url(../images/aboslider03.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.faq-bg .intro-content{
  margin: 0 auto;
  padding:300px 0 150px;
  position: relative;
}
.faq-bg .card{
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #fff;
  margin: 25px 0;
}
.faq-bg .card h5{
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.05em;
}
.faq-bg .card h6{
  padding-left: 5px ;
  border-left: 2px solid #fff;
  margin-top: 20px;
  font-size: 16px;
  line-height: 16px;
}

.faq-bg .card p{
  font-size: 14px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .faq-bg .intro-content{
    padding:150px 0 3em;
  }
  .faq-bg .card{
    padding:20px 10px;
  }
  .faq-bg .card h5{
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}

/* 
---------------------------------------------------------------------------------------------
privacy page 
---------------------------------------------------------------------------------------------
*/
.privacy-bg {
  position: relative;
  width: 95%;
  box-sizing: border-box; /* 確保 padding 不影響總尺寸 */
  overflow: hidden; /* 避免影片溢出 */
  border-radius:20px;
  margin: 50px auto;
  background-image:linear-gradient(to top, rgba(0, 0, 0,.7), rgba(0, 0, 0, .7)),url(../images/aboslider01.png);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.privacy-bg .intro-content{
  margin: 0 auto;
  padding:300px 0 150px;
  position: relative;
  color: #fff;
  font-weight: 300;
}
.privacy-bg .intro-content h2{
  font-size: 25px;
  font-weight: 900;
  margin:70px 0 30px;
}
.privacy-bg .intro-content h3{
  font-size: 15px;
  font-weight: 700;
  margin-top: 30px;
}
.privacy-bg .intro-content p{
  font-size: 13px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .privacy-bg .intro-content{
    padding:200px 20px 50px;
  }
}



/* 
---------------------------------------------------------------------------------------------
privacy page 
---------------------------------------------------------------------------------------------
*/

.blog .blog-card {
  position: relative;
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: flex-end;
  color: white;
  text-decoration: none;
}
.blog .blog-card-body {
  width: 100%;
  padding:1rem 2rem;
  background: rgba(0, 0, 0, 0.1);
}

.blog .blog-title {
  font-size: 1.75rem;
  font-weight: bold;
  margin: 0;
}

.article{
  padding: 150px 0;
}
.article .article-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  border-bottom: 0.5px solid #000;
  padding-bottom:1em;
  margin-bottom: 1em;
}
.article .article-body h3 {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.article .article-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}
.article .article-body figure{
  margin: 4em auto;
}

.article .article-caption {
  font-size: 0.95rem;
  font-style: italic;
}



@media (max-width: 768px) {
  .blog .blog-card {
    height: 200px;
  }
  .blog .blog-card-body {
    width: 100%;
    padding:1rem 1rem;
    background: rgba(0, 0, 0, 0.4);
  }
  .blog .blog-title {
    font-size: 15px;
  }
  .article{
    padding: 50px 15px;
  }
  .article .article-title {
    font-size:20px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    border-bottom: 0.5px solid #000;
    padding-bottom:1em;
    margin-bottom: 1em;
  }
  .article .article-body h3 {
    font-size:18px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  .article .article-body p {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
  }
  .article .article-body figure{
    margin: 2em auto;
  }
  .article .article-caption {
    font-size: 0.95rem;
    font-style: italic;
  }




}
