@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

body{font-family:"Montserrat", serif,"Noto Sans TC", serif;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/*動畫*/


@keyframes text-focus-in {
    0% {
      -webkit-filter: blur(12px);
              filter: blur(12px);
      opacity: 0;
    }
    100% {
      -webkit-filter: blur(0px);
              filter: blur(0px);
      opacity: 1;
    }
  }


  @keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }


/*首頁設定*/

.pageIndex .header_area {
    position: fixed;
    background: transparent;
    padding: 23px 0;
    animation: text-focus-in 0.6s cubic-bezier(.55,.085,.68,.53) both
    
}

.pageIndex .stellarnav > ul > li > a {
    color: #FFF;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 5px;
    margin: 0px;
}

.pageIndex .stellarnav ul {
    display: grid;
    justify-items: end;
}

.pageIndex .stellarnav > ul > li > a b {
    text-align: end;
    font-size: 14px;
    font-weight: 600;
}

.stellarnav > ul > li > a > b:nth-child(2) {
    font-weight: 400;
    font-size: 15px;
}

.stellarnav ul ul {
    background: #C97C5D;
}

.pageIndex .stellarnav ul ul {
    background: transparent;
    right: 0px;
    position: relative;
    justify-items: normal;
}

.pageIndex .stellarnav li {
    text-align: right;
}

.stellarnav li li {
    border: none;
}

.stellarnav li li:last-of-type {
    border-bottom-width: 1px;
}

.pageIndex .stellarnav li li a {
    text-align: end;
    position: relative;
}


.pageIndex .stellarnav li.has-sub > a:after {
    content: '';
    position: absolute;
    width: 19%;
    height: 1px;
    background: #FFF;
    top: 18px;
    right: 0px;
    border: none;
    transition: all 0.3s;
    display: none;
}
.pageIndex  .stellarnav li.has-sub > a:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 14px;
    background: #FFF;
    top: 12px;
    right: 8px;
    transition: all 0.3s;
}

.pageIndex .stellarnav li li a:hover {
    padding-right: 30px;
}

/*首頁 header sticky*/

.pageIndex .header_area.sticky .stellarnav ul {
    display: block;
    animation:tracking-in-expand 1.5s cubic-bezier(.215,.61,.355,1.000) both
}

.pageIndex .header_area.sticky .stellarnav > ul > li > a b {
    text-align: center;
}



.pageIndex .header_area.sticky {
    padding: 20px 0 11px;
    background: #D9BBA0;
}

.pageIndex .header_area.sticky .nav-header {
    align-items: center;
    max-width: 350px;
}

.pageIndex .header_area.sticky .stellarnav > ul > li > a {
    color: #FFF;
    letter-spacing: 2px;
    margin: 0px 20px;
}


.pageIndex .header_area.sticky .main_header_area .container {
    max-width: 95%;
}


.pageIndex .header_area.sticky .stellarnav ul {
    justify-items: start;
}

.pageIndex .header_area.sticky .stellarnav li li a {
    text-align: left;
}

.pageIndex .header_area.sticky .stellarnav ul ul {
    background: #C97C5D;
    right: 0px;
    position: absolute;
    animation: none;
}

.pageIndex .header_area.sticky .stellarnav li li a:hover {
    background: #C97C5D;
    color: #FFF;
    padding-left: 15px;
    box-shadow: none;
}

.pageIndex .nav-brand {
    margin-top: 10px;
    margin-left: 0px;
    position: relative;
    width: 350px;
}

.pageIndex .header_area.sticky .nav-brand {
    margin-top: -10px;
    display: block;
}

.pageIndex .nav-header {
    align-items: flex-start;
    position: relative;
}


@media screen and (max-width: 1024px) {
.pageIndex .header_area.sticky .nav-header{
    max-width: 200px;
    }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/*首頁*＝＝＝＝＝＝＝＝＝＝＝＝*/
/*白色LOGO*/



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.pageIndex .header_area.sticky .stellarnav li.has-sub > a:after {
    content: '';
    position: absolute;
    width: 21%;
    height: 1px;
    background: #fff;
    top: 18px;
    right: 0px;
    border: none;
    transition: all 0.3s;
}

.pageIndex .header_area.sticky .stellarnav li.has-sub:nth-of-type(6) > a:after 
{
    content: '';
    position: absolute;
    width: 29%;
    height: 1px;
    background: #fff;
    top: 18px;
    right: 0px;
    border: none;
    transition: all 0.3s;
}

.pageIndex .header_area.sticky .stellarnav li.has-sub > a:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 14px;
    background: #fff;
    top: 12px;
    right: 8px;
    transition: all 0.3s;
}

.pageIndex .header_area.sticky .stellarnav li li a {
    font-size: 13px;
    letter-spacing: 2px;
    color: #fff;
    transition: all 0.3s;
    padding: 15px 0px 15px 10px;
}

.pageIndex .header_area.sticky  .stellarnav li.has-sub:hover > a::after{width: 0px;}


.pageIndex .header_area.sticky .stellarnav ul {
    display: block;
    justify-items: normal;
}

/*ALL header*/

.path p, .path p a {display: none;}

.main_header_area .container {
    max-width: 95%;
}

.stellarnav > ul > li > a b {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}


.header_area {
    padding: 20px 0 11px;
    background: #D9BBA0;
    
}


.header_area.sticky{
    background: #D9BBA0;
}

.stellarnav > ul > li > a {
    color: #FFF;
    letter-spacing: 2px;
    margin: 10px 15px;
}



/*ALL 第一層*/


.stellarnav > ul > li > a {
    color: #FFF;
    letter-spacing: 2px;
    margin: 10px 15px;
    font-size: 14px;
}


.stellarnav > ul > li > a b {
    text-align: center;
}

.me_tp_features {
display: none;}

.stellarnav li.has-sub > a:after {
    content: '';
    position: absolute;
    width: 19%;
    height: 1px;
    background: #696969;
    top: 18px;
    right: 0px;
    border: none;
    transition: all 0.3s;
    display: none;
}

.stellarnav li.has-sub > a:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 14px;
    background: #fff;
    top: 12px;
    right: 8px;
    transition: all 0.3s;
    display: none;
}

.pageIndex .header_area .stellarnav li.has-sub:nth-of-type(6) > a:after {
    content: '';
    position: absolute;
    width: 28%;
    height: 1px;
    background: #ffffff;
    top: 18px;
    right: 0px;
    border: none;
    transition: all 0.3s;
}

.stellarnav li.has-sub:nth-of-type(6) > a:after {
    content: '';
    position: absolute;
    width: 28%;
    height: 1px;
    background: #5c5c5c;
    top: 18px;
    right: 0px;
    border: none;
    transition: all 0.3s;
}

.pageIndex .header_area .stellarnav > ul > li:hover:nth-of-type(6).has-sub > a {
    padding-right: 31px;
    right: -43px;
}

.header_area.sticky  .stellarnav > ul > li:hover:nth-of-type(6).has-sub > a {
    padding-right: 17px;
    right: 0px;
}


.stellarnav li.has-sub:hover > a:before{transform: rotate(45deg);}
.stellarnav li.has-sub:hover > a::after{width: 0px;}
.pageIndex .header_area .stellarnav li.has-sub:nth-of-type(6):hover > a:after{width: 0px}

.stellarnav > ul > li.has-sub > a {
    padding-right: 0px;
}

.stellarnav li li a {
    font-size: 14px;
    letter-spacing: 2px;
    color: #FFF;
    transition: all 0.3s;
    padding: 15px 0px 15px 10px;
    font-weight: 500;
}

.stellarnav li li a:hover {
    background: #C97C5D;
    color: #FFF;
    padding-left: 15px;
    box-shadow: none;
}


@media screen and (max-width: 768px) {

.pageIndex .stellarnav > ul > li > a {
       color: #c97c5d;
       font-weight: 300;
       font-size: 14px;
       letter-spacing: 0px;
       margin: 0px;
       border: none;
       text-align: left;
       overflow: auto;
       height: auto;
       line-height: 150%;
       display: block;
       margin: 10px 15px;
    }

    .pageIndex .stellarnav ul {
        display: none;
        justify-items: normal;
        margin: 0;
        padding: 0;
        text-align: right;
    }

    .pageIndex .stellarnav > ul > li > a b {
        text-align: end;
        font-size: 14px;
        font-weight: 600;
    }

    .pageIndex .stellarnav li {
        text-align: left;
    }

    .pageIndex .stellarnav li li a {
        text-align: left;
        position: relative;
        border: none;
    }

    .pageIndex .header_area {
        animation: none;
    }
    
    .pageIndex .header_area.sticky{
        display: block;
    }

    .pageIndex .header_area.sticky .stellarnav ul {
        display: none;
        animation:unset
    }

    .nav-brand {
        margin-top: -7px;
    }
    .pageIndex .navigation {
        align-items: center;
        justify-content: center;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row-reverse;
    }

.pageIndex .header_area.sticky .navigation{
    align-items: center;
    justify-content: center;
}

.pageIndex .nav-header:after {
    top: 9px;
    left: 61px;
}

.pageIndex .nav-header:after {
    height: 59%;
}
.pageIndex .nav-brand {
    width: 180px;
    margin-top: 0px;
    margin-left: auto;
}

.pageIndex .header_area.sticky .nav-brand {
    margin-top: 0px;
    display: block;
}


.pageIndex .header_area.sticky .nav-header:after {
    width: 76%;
    height: 70%;
    top: 4px;
    left: 65px;
}

.pageIndex .stellarnav.mobile {
    top: 0px;
}

.pageIndex .header_area.sticky {
    padding: 20px 0 17px;
    animation: tracking-in-expand 1s cubic-bezier(.215,.61,.355,1.000) both;
}

.pageIndex .header_area.sticky .stellarnav > ul > li > a, .stellarnav > ul > li > a {
    color: #c97c5d;
    border: none;
    text-align: left;
    overflow: auto;
    height: auto;
    line-height: 150%;
    display: block;
    margin: 10px 15px;
}

.header_area {
    padding: 20px 0 20px;
}

.pageIndex .header_area.sticky .stellarnav li.has-sub > a:before{display: none;}
.pageIndex .header_area.sticky .stellarnav li.has-sub > a:after{display: none;}
.pageIndex .header_area.sticky .stellarnav li.has-sub:nth-of-type(6) > a:after{display: none;}
.stellarnav li.has-sub > a:before,.stellarnav li.has-sub > a:after{display: none;}
.pageIndex .header_area.sticky .stellarnav ul ul {
    position: relative;    border-top-left-radius: 10px;

}
.stellarnav.mobile ul ul {
    position: relative;
border-top-left-radius: 10px;
background: #e0e0e0;

}

.stellarnav.mobile {
    top: -8px;
}

.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    display: inline-block;
    text-align: right;
    font-size: 12px;
    background: #d9bba0;
    color: #fff;
}

.other_promotion {
    display: flex;
    flex-wrap: wrap;
}

.promotions_page .main_part {
    max-width: 90%;
}

.promotion_title h2 {
    font-size: 20px;
    font-weight: 500;
}

.promotions_page .edit {
    padding: 0px 10px;
}

.pageIndex .header_area.sticky .stellarnav > ul > li > a,.stellarnav > ul > li > a {
    border: none;
}

.stellarnav > ul > li.has-sub > a {
    border: none;
}

.stellarnav > ul > li > a > b:nth-child(2) {
    font-weight: 400;
    font-size: 14px;
    display: flex;
}

.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
    top: -1px;
    border-right: none;
}

.stellarnav.mobile li.open {
    background: #d9bba0;
    border: none;
    padding: 6px 0px 0px;
}

.stellarnav.mobile li.open b {
    color: #ffffff;
}

.stellarnav li li a{    background: #c97c5d;
}

.pageIndex .header_area.sticky .stellarnav li li a:hover {
    background: #fff;
    color: #c97c5d;
}

.pageIndex .header_area.sticky .stellarnav li li a {
    border-bottom: 1pt solid #FFF;
}

.stellarnav.mobile li a {
    border-bottom: 1pt solid #FFF;
}

.stellarnav li li a {
    color: #fff;
}
.stellarnav li li a:hover {
    background: #C97C5D;
    box-shadow: none;
    color: #FFF;

}

.stellarnav.mobile > ul > li {
    border: 0;
}

.stellarnav.mobile > ul > li > a.dd-toggle {
    padding: 15px 10px;
}

.stellarnav .icon-close:before{
    border-bottom: solid 3px #fff;
}

.stellarnav .icon-close:after {
    border-bottom: solid 3px #fff;
}
.stellarnav a.dd-toggle .icon-plus:after,.stellarnav a.dd-toggle .icon-plus:before{
    border-bottom: solid 2px #c97c5d;
}

/* 開啟手機板下方按鈕所需設定 */

/*漢堡選單*/
.stellarnav .menu-toggle span.bars span{ background: #fff;}
.stellarnav .menu-toggle:after { color: #fff;}


}

@media screen and (max-width: 500px) {

.pageIndex .header_area {    
    padding: 15px 0;
}

.pageIndex .nav-brand{
    width: 130px;
}
}



/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/*修改地方*/
.bannerindex {
    position: sticky;
    height: auto;
}

.swiper-banner .swiper-slide img {
    max-height: 100%;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
}

#content {
    background: #F6F1EB;
}


@media screen and (max-width: 768px) {
.bannerindex { position:relative; height:auto;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/

.banner {background: repeat center center #F6F1EB;}

.banner h5 {   
    width: 90%;
    margin: 0 auto;
    color: #A57B52;
    font-size: 54px;
    z-index: 100;
    position: relative;
    padding-top: 80px;
    font-weight: bold;
    font-family: "Cormorant Garamond", sans-serif;
    display: flex;
    flex-direction: column-reverse;
    text-transform: uppercase;
}

.banner h5:before {
    content: "";
    display: block;
    font-size: 20px;
    color: #3A3A3A;
    font-weight: 500;
    letter-spacing: 2px;
}

.contact_page .banner h5:before { content: "聯絡我們";}

.banner.banA {}
.banner.banB { display: none;}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog { display: none;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/

/*文章側邊欄*/
.blog_le {
    width: 100%;
    text-align: center;
    margin-bottom: 0px;
    display: flex;
    padding: 50px 20px 20px;
    flex-direction: column;
}
.blog_search {
    max-width: 220px;
    display: block;
    margin: 40px 0 25px auto;
}
.blog_search input[type=search] {    border-radius: 0;}

h5.blog_le_t {    display: flex;        flex-direction: column;}
h5.blog_le_t em{
    font-size: 54px;
    color: #A57B52;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Cormorant Garamond", sans-serif;
}
h5.blog_le_t span {
    color: #3A3A3A;
    font-size: 20px;
}

.blog_le .accordion {
    padding: 0;
    background: rgb(217 187 160 / 15%);
    border-radius: 0;
    display: flex;
    backdrop-filter: blur(6px);
    width: 100%;
    justify-content: center;
    border: none;
}
.blog_le .accordion li {
    border-bottom: none;
    width: 24%;
    display: inline-block;
    position: relative;
}
.accordion li+li .link {
    border-top: none;
}
.accordion li .link a {
    color: #131712;
    font-weight: 400;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: #C97C5D !important;
}

.blog_ri {
    padding: 15px;
    width: 100%;
}

.blog_list_ri h5 {
    font-size: 16px;
    display: flex;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #3B3B3B;
}

.blog_list_ri p {
    font-size: 14px;
    font-weight: 300;
    padding-top: 10px;
    color: #6B6B6B;
}

.blog_list_ri em {
    margin-top: 15px;
    font-size: 12px;
    font-weight: 300;
    color: #6B6B6B;
}

.subbox_item a {
    display: flex;
    flex-wrap: wrap;
}

.blog_list_ri {
    padding: 0 15px 15px 15px;
}

.blog_subbox {
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
}
.blog_shareData{display: none;}
.subbox_item a:after { background: rgba(0,0,0,0.5);}
.blog_page .main_part {max-width:1600px;}
.submenu li.on_this_category a, .submenu a:hover {
    background: #f3f3f3;
    color: #444;
        transition: all .5s;
}

.submenu a {background: #fff;}

.blog_box {
    width: 100%;
    padding: 15px;
}

.fa-caret-down::before {
    content: "\f0d7";
    color: #A57B52;
}

/*按鈕*/
.blog_back { justify-content: center; justify-items: center; width: 100%; border-top: 1px solid #D9BBA0; padding-top: 30px;}
.blog_back a.article_btn_prev,.blog_back a.article_btn_back ,.blog_back a.article_btn_next{ background: transparent; width: 120px; border-radius: 99em; display: flex; align-items: center; justify-content: center; }
.blog_back a.article_btn_prev , .blog_back a.article_btn_next { border: unset; color: #3B3B3B;}
.blog_back a.article_btn_back{ color:#3B3B3B;}
.blog_back a.article_btn_back:hover  , .blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {  color: #C97C5D;}

.edit {
    padding: 30px 0 90px;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.04em;
}

.subbox_item a:hover:before {
    transform: translate(-50%, -50%) scale(1);
    transition: all 500ms;
}
.path p, .path p a {
display: none;
}
.blog_list_le img {
    z-index: 999;
    padding: 20px;
}

.subbox_item a:hover .blog_list_le img {
    filter: brightness(.6);
    border-radius: 5px;
    padding: 0px;
}

h4.blog_category_title {
    color: #444;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 1px;
}

.subbox_item {
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid #d9bba061;
    border-radius: 5px;
}

.subbox_item a:after{display: none;}
.subbox_item a:before{display: none;}
.blog_list_le {
    position: relative;
}
.blog_list_le:before {
    content: 'READ MORE';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    opacity: 0;
    letter-spacing: -0.7em;
    transition: all 1s;
    filter: blur(5px);
}

.subbox_item a:hover .blog_list_le:before{
    opacity: 1;
    letter-spacing: 1px;
    transition: all 1s;
    filter: blur(0px);
}
/*文章內頁封面圖關掉*/
.articel_mainPic {
    display: none;
}


/*相關文章*/

.news_related {
    background: #F6F1EB;
    padding: 80px 15px;
}

.news_related h6 span:before {
    color: #3B3B3B;
    font-weight: 400;
}

.news_related_list li a {
    background: rgb(217 187 160 / 15%);
}

.news_related_list li a:hover {
    padding: 10px 10px 0px;
    transition: .3s;
}

.news_related_list li a {
    transition: .3s;
}

.news_related_list li a p {
    padding: 10px;
    color: #3B3B3B;
}

.lastPage { color: #C97C5D;  border: 1px solid; background: transparent; transition: 0.5s; margin: 100px auto 0;}
.lastPage:hover { background: #C97C5D; color: #fff;}


@media screen and (max-width: 1024px) {
.blog_subbox {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
}

@media screen and (max-width: 980px) {
.blog_back:after {
    bottom: 69px;
}
}

@media screen and (max-width: 768px) {
.blog_search {
    max-width: 100%;
    display: block;
    margin: 40px 0px;
}

.blog_in_page .blog_le {
    top: -42px;
    padding-bottom: 5vw;
    margin-bottom: 0vw;
    border-bottom: 1px solid #dfdfdf;
}

.blog_subbox {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.accordion li .link a {
    text-align: center;
}
}

@media screen and (max-width: 600px) {
    .blog_back:after {
    bottom: 49px;
}

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*聯絡我們*/
.red {    color:#C97C5D;}
.contact_page .main_part {  display: flex;  max-width: 100%; padding: 0; flex-wrap: wrap; padding-top: 0;}
.noborder {    background:#ffffff;    color: #000000 ;    padding: 5px;    border-radius: 3px;}
.contact_form { display: flex; margin-top: 0px; margin-bottom: 0px; font-size: 15px; color: #fff; flex-wrap: wrap; gap: 30px 60px; margin-top: 50px;}
.contact_form li { width: calc(100% / 2 - 30px); padding: 0; padding-left: 0; display: flex; flex-direction: column; align-content: center; align-items: flex-start; position: relative;}
.contact_form li .form__label { display: inline-block; width: 100%; text-align: left; margin-left: 0; padding-right: 0; vertical-align: top; color: #3B3B3B; margin: 0; position: relative;}
.contact_form li .form__insert {text-align: center;}
.contact_form li.last { display: flex; width: 100%; text-align: center; padding-left: 0; flex-direction: row; justify-content: flex-end;}
.contact_form li.last blockquote { color: #3B3B3B; padding: 0; margin: 0 0 0 20px; vertical-align: middle; border: none;}
.contact_form li input.noborder{ border: 0; border-bottom: 1px  #D9BBA0 solid; background-color: transparent; padding: 10px 0;}
.contact_form li.last cite { background: transparent; color: #3B3B3B; border: none; position: relative;display: inline-block; padding: 0; margin: 0 0 0 20px; vertical-align: middle;}
.contact_form li.last cite:after { content: ''; width: 2px; height: 51%; background: #D9BBA0; position: absolute; left: -6px; top: 13px;}
.contact_form li textarea.noborder { border: 1px #D9BBA0 solid;}
.contact_le_nomap { display: none;}
.blank_letter { padding-top: 60px;}
.contact_page a:active, a:hover {outline: 0;color: #c97c5d;}

.form select {    background-color: #f3f3f3;    border: none;    color: #000000;    width: 100%;    margin: 0;    padding: 5px 26px 5px 5px;}

.contact_editbox { margin: 0; width: 100%; padding: 0; order: 2; max-height: 300px; position: sticky; top: 100px; filter: grayscale(1); transition: 0.5s;}
.contact_editbox:hover { transition: 0.5s; filter: grayscale(0);}

/*******************************************/
/*聯絡我們MAP區改滿版編輯區*/
/*電腦版表單最大寬度設定*/
/**/
.contact_page .path {    display: none;}
.contact_page .main_part {    max-width: 100%;    padding: 0 0 50px;}
.contact_content {    width: 90%;    padding:  0; max-width: 1400px; position: relative;}
.contact_content > form {    display: flex;margin-bottom: 50px;}
.contact_content .information_left {    width: 30%;    padding: 0;min-width: 250px;padding-right: 30px;}
.contact_content .information_right {    width: 100%;    margin: 0 auto;    padding: 0 0px;    display: block;flex:1;}
.contact_content .list_before {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}
/*20240109*/
.info_TEL:before, .info_TEL2:before, .info_PHONE:before, .info_LINE:before, .info_FAX:before, .info_TAXID:before, .info_MAIL:before, .info_ADD:before, .info_ADD2:before {
position: unset; color: #3B3B3B; font-weight: 600; letter-spacing: 1px;}
.list_before.info li {padding-left: 0px; color: #6B6B6B;}
.list_before li {letter-spacing: 1px; margin: 20px 0; width: 100%;}

.captcha {width: 100%;}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 768px) {
.contact_content > form {flex-direction: column;}
.contact_content .information_left{width: 100%;     margin-top: 20px;}
.contact_form{ flex-direction: column; align-items: center;}
.contact_form li { width: 100%;}
}

@media screen and (max-width: 600px) {
    .contact_form li .form__label {
        background-color: transparent;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/
.footer_logo { max-width: 300px;}
.footer { background: #D9BBA0; padding: 70px 0 0;}
.footer .center { max-width: 100%; padding: 0 80px;}
/*icon*/
.box_link { position: relative; top: -100px; right: 0px;  width: 100%; max-width: 100%; display: flex; justify-content: flex-start; align-items: center; flex-wrap: nowrap; flex-direction: row; max-height: 100%; order: 3;}
.box_link a { width: fit-content;  border: unset;  padding: 5px 8px; font-size: 20px; color: #efefef;}
.box_link a:hover {color: #C97C5D;}


.footer_info { padding-right: 0px;}
.footer_info ul {position: relative; display: flex; width: 100%; justify-content: space-around;}
.footer_info ul li:nth-child(1):before {
    content: "CONTACT US"; font-size: 20px;color: #fff; left: 10px; top: 0%; position: absolute;  letter-spacing: 1px;font-weight: 800;}
.footer_info ul { display: flex; width: 100%; justify-content: flex-end;}
.footer_info li:nth-child(1) { width: 30%; position: relative; padding-top: 40px;}
.footer_info li:nth-child(2) { width: 25%;min-width: 280px;}
.footer_info li p { line-height: 200%; letter-spacing: 1px; color: #fff;}
.footer_info li p > a { color: #fff;}
.footer_menu a:first-child { display: none;}
.footer_menu { width: 100%; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; position: relative;  padding-top: 30px;}
.footer_menu:before { content: "LINK"; font-size: 20px; color: #fff; left: 0px; top: 0%; transform: translateY(-50%); position: absolute;font-weight: 800;letter-spacing: 1px;}
.footer_menu a { display: inline-block; padding: 5px 7px 5px 15px; border: unset; margin: 0 0px 5px 0; font-size: 14px; position: relative; line-height: 100%;
    color: #fff; background: transparent;  width: 46%; letter-spacing: 2px; transition: 0.5s;}

.footer_menu a:before { content: ""; background: #C97C5D; width: 5px;height: 5px;position: absolute; left: 0; top: 50%; transform: translateY(-50%);}
.footer_menu a:hover { background: transparent; color: #C97C5D; letter-spacing: 4px;}
.copy {  text-align: center; padding: 15px 0 25px;font-size: 13px; color: #ffffff; border-top: 1px solid #C97C5D;margin: 0;}
.copy a { color: #fff;}
.copy a:hover { color: #C97C5D;}


@media screen and (max-width: 1200px) {
/*footer*/  
.footer .center {  max-width: 100%; padding: 0;}
.footer_logo { margin: 0 auto;}
.footer_info { grid-template-columns: 1fr;}
.box_link {justify-content: center; top: 0;}
.footer_info ul { order: 4; width: auto; justify-content: center;}
.footer_info li:nth-child(1) { width: 40%; position: relative;  padding-top: 40px; padding-right: 0vw;}
.footer_info li:nth-child(2) {  width: 100%; max-width: 250px;}
.copy { margin-top: 30px;}
}

@media screen and (max-width: 768px) {
/*footer*/
.footer_info ul {  flex-direction: column;}
.footer_info li:nth-child(1) { padding-bottom: 30px;}
.footer_info { padding: 0 30px;}
.footer_menu { justify-content: flex-start;}
.footer_info ul li:nth-child(1):before {  left: 0px;}
.footer_info li:nth-child(1) { width: 100%;}
.footer_info li:nth-child(2) {  max-width: 100%;}

/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: none; }
.footer.with_shopping_mode { padding:60px 0 30px; }
#to_top { bottom:60px;} 

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 0px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




