/*------------------------------*/
/*          全域設定
--------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400&amp;display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Carattere&display=swap'); */

img {
  max-width: 100%;
  width: 100%;
}

.form-horizontal img {
  width: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  font-family: 'Noto Sans TC', sans-serif;
  color: #333;
  letter-spacing: 0.1rem;
}

a,
a:hover {
  text-decoration: none;
  color: #333;
}

@media (min-width: 1300px) {
  .container {
    width: 1200px;
  }
}


/*------------------------------*/
/*          navbar
--------------------------------*/
.navbar {
  background-color: #fff;
}

.navbar-lift {
  margin-left: 320px;
}

.navbar-header li a,
.navbar-nav li a {
  font-size: 16px;
  line-height: 70px;
  padding: 0 15px;
}

.navbar-right li a {
  padding-left: 0;
}

.navbar-nav li a:hover {
  background-color: #f3e7d9;
}

.navbar-right li a:hover {
  background-color: transparent;
}

.navbar-toggle {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 70px;
}

.navbar-search-xs {
  padding: 0;
  margin: 0;
}

/* === logo === */
.navbar-brand {
  margin-top: 17px;
  margin-left: 0;
}

.navbar-brand img {
  max-width: 90%;
}

@media (max-width: 767px) {
  .navbar-brand {
    margin-left: 20px;
  }

  .navbar-brand img {
    max-width: 50%;
  }
}

/* === search_icon === */
.fa-search:before {
  color: #BF8C4D;
}

@media (max-width:1200px) {
  .navbar-lift {
    margin-left: 0;
  }

  .navbar-header li a,
  .navbar-nav li a {
    padding: 0 9px;
  }
}

@media (max-width:768px) {
  .navbar-collapse.in{
    background-color: #f3e7d9;
    text-align: center;
  }

  .navbar-lift {
    margin: auto;
  }

  .navbar-lift li a {
    line-height: 40px;
  }

  .navbar-right li a {
    padding-left: 30px;
    line-height: 40px;
  }
}


/*------------------------------*/
/*           banner
--------------------------------*/
.carousel-inner {
  box-shadow: 1px 5px 10px rgb(12 9 8 / 20%);
}


/*------------------------------*/
/*          section01
--------------------------------*/
.section01 {
  padding: 80px 0;
}

.HP_TITLE h2 {
  font-size: 32px;
  font-weight: 400;
  color: #333;
  text-align: center;
}

.HP_TITLE h2 span {
  font-family: 'Carattere', cursive;
  font-size: 26px;
  color: #BF8C4D;
  letter-spacing: 0.08rem;
}

.HP_PRODUCT {
  margin: 40px 0 65px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.PRODUCT_ITEM {
  width: 23%;
  margin: 10px;
  background-color: #f3e7d9;
  border: 1px solid #BF8C4D;
  border-radius: 0 0 10px 10px;
  cursor: pointer;
}

.PRODUCT_IMG {
  overflow: hidden;
}

.PRODUCT_ITEM img {
  width: 100%;
  transform: scale(1);
  transition: .4s;
}

.PRODUCT_ITEM:hover img {
  transform: scale(1.2);
  filter: brightness(0.8);
}

.PRODUCT_ITEM p {
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
}

.HP_BTN {
  text-align: center;
}

.HP_BTN a {
  font-size: 18px;
  font-weight: 300;
  color: #BF8C4D;
  border: 1px solid #BF8C4D;
  border-radius: 35px;
  padding: 4px 42px;
  transition: .3s;
}

.HP_BTN a:hover {
  background-color: #BF8C4D;
  color: #fff;
}

@media (max-width: 767px) {
  .section01 {
    padding: 50px 0;
  }

  .HP_PRODUCT {
    margin: 0 0 25px 0;
  }

  .PRODUCT_ITEM {
    width: 40%;
    margin: 10px;
  }

  .HP_BTN a{
    font-size: 15px;
  }
}


/*------------------------------*/
/*          section02
--------------------------------*/
.section02 {
  padding: 35px 0 55px 0;
  background-color: #f2f2f2;
  /* background-image: url(../../images/wood_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: auto; */
}

.SECTION02_BOX {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.SECTION02_ITEM {
  width: 31%;
  margin: 0 10px;
  overflow: hidden;
}

.SECTION02_ITEM h3 {
  font-size: 18px;
  color: #333;
  margin-left: 55px;
  margin-bottom: 20px;
  position: relative;
}

.SECTION02_ITEM h3::before{
  content: '';
  background-image: url(../../images/icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 45px;
  height: 45px;
  position: absolute;
  top: -13px;
  left: -50px;
}

/* .SECTION02_ITEM h3 span{
  font-family: 'Carattere', cursive;
  font-size: 18px;
  letter-spacing: 0.08rem;
} */

.SECTION02_ITEM .SECTION02_IMG{
  position: relative;
}

.SECTION02_ITEM .HP_BTN{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(200px);
  transition: .4s;
}

.SECTION02_ITEM .SECTION02_IMG:hover .HP_BTN{
  transform: translateY(0);
}

.SECTION02_ITEM .HP_BTN a{
  line-height: 180px;
}

@media (max-width: 767px) {
  .section02 {
    padding: 0 0 50px 0;
  }

  .SECTION02_ITEM {
    width: 90%;
  }

  .SECTION02_ITEM h3 span img{
    width: 15%;
  }
}


/*------------------------------*/
/*          section03
--------------------------------*/
.section03{
  /* background-image: url(../../images/footer_bg03.jpg); */
  background-image: url(../../images/wood_bg.jpg);
  background-color: #f2f2f2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 220px;
}

.HP_CONTACT {
  text-align: center;
  margin-top: 50px;
}

.HP_CONTACT h3{
  font-size: 22px;
  color: #432601;
  margin-bottom: 20px;
}

.HP_CONTACT p{
  font-size: 14px;
  /* color: #fff; */
}


/*------------------------------*/
/*          footer
--------------------------------*/
footer {
  background-color: #2d1900;
}

footer p {
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 10px 0;
}

@media (max-width: 767px){
  footer p{
    font-size: 12px;
  }
}

/* === BTN - 回到頂層 === */
#gotop.gotop {
  padding: 10px 15px;
  line-height: 30px;
  background: #BF8C4D;
}

#gotop.gotop:hover {
  background: #734f22;
}

@media (max-width: 500px) {
  #gotop.gotop {
    right: 10px;
    line-height: 22px;
    padding: 8px 13px;
  }
}


/*------------------------------*/
/*         內頁 banner
--------------------------------*/
.page-banner {
  padding-top: 220px;
  background-image: url(../../images/insidebanner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: relative;
  margin-bottom: 30px;
}

.banner-title {
  margin: 0 auto;
  font-size: 32px;
  letter-spacing: 3px;
  font-weight: 600;
  position: absolute;
  top: 100px;
  left: 550px;
  right: 0;
  color: #484747;
}

.banner-title::before {
  content: '';
  width: 5px;
  height: 40px;
  background-color: #BF8C4D;
  position: absolute;
  top: 0;
  left: -15px;
}

@media (max-width: 1440px) {
  .banner-title {
    left: 310px;
  }
}

@media (max-width: 768px) {
  .page-banner {
    padding-top: 80px;
    margin-bottom: 0;
  }

  .banner-title {
    font-size: 20px;
    top: 33px;
    left: 70px;
  }

  .banner-title::before {
    width: 4px;
    height: 22px;
  }
}


/*------------------------------*/
/*         內頁樣式
--------------------------------*/
.breadcrumb,
.aside-title,
.newsbar{
  background-color: #f3e7d9;
}

aside .nav li a:hover, 
aside .nav li a:focus{
  color: #cf7200;
}

.news_more:hover, 
.news_more:focus{
  background-color: #432601;
  color: #fff;
}

.pagination>.active>a, 
.pagination>.active>a:focus, 
.pagination>.active>a:hover{
  background-color: #432601;
  color: #fff;
}

.li-item .features-box a.btn-default:hover, 
.li-item .features-box a.btn-default:focus{
  background-color: #432601;
  color: #fff;
}


/*------------------------------*/
/*         內頁- 內文上架
--------------------------------*/
.CONTENT_DEMO h4{
  font-size: 20px;
  color: #835824;
}

.CONTENT_DEMO p{
  font-size: 16px;
  line-height: 1.7;
}

.CONTENT_DEMO img{
  width: 100%;
}