@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/* "Noto Sans TC" */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');
/* "Noto Serif TC" */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');


/* 英文字體 Cardo */
@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&display=swap');
/* 英文字體 Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


/*網站全域設定/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
:root {
    /* --Color: #cca39a; */
    --MainColor: #cca39a;
    /*網站主要色系*/
    --SubColor: #cca39a;
    /*網站文字色*/
    --SubColor1: #f5e5db;
    /*網站輔助色系1*/
    --SubColor2: #cca39a;
    /*網站輔助色系2*/
    --SubColor3: #eee6dd;
    /*網站輔助色系3*/
    --SubColor4: #c5d0e2;
    /*網站輔助色系4*/
    --SubColor5: #eee;
    /*網站輔助色系5*/
    --SubColor6: #181818;
    /*網站輔助色系6*/
    --SubColor7: #8C8C91;
    /*網站輔助色系7*/
    --SubColor8: #d3d9e4;
    /*網站輔助色系8*/
    --SubColor9: #293943;
    /*網站輔助色系9*/
    --SFontE: "Inter", "Noto Sans TC", sans-serif;
    /*英文字體-無襯線*/
    --SFontEN: "Cardo", "Noto Serif TC", sans-serif, system-ui;
    /*英文標字體*/
    --SFont: "Noto Sans TC", sans-serif;
    /*內文黑體字*/
    --SFont2: "Shippori Mincho", "Noto Serif TC", sans-serif;
    /*內文襯縣字體*/
    --SFontJ: "LXGW WenKai Mono TC", "Noto Serif TC", "Noto Sans TC", sans-serif;
    /*日文字體-楷*/
    --pd100: 100px 0;
    --p100: 100px;
    --pre5: clamp(60px, 5%, 100px);
    --m100: 100px;
    --m50: 50px;
    --m30: 30px;
    --f80: 80px;
    --f60: 60px;
    --f52: 52px;
    --f48: 48px;
    --f44: 44px;
    --f40: 40px;
    --f36: 36px;
    --f32: 32px;
    --f28: 28px;
    --f24: 24px;
    --f22: 22px;
    --f20: 20px;
    --f18: 18px;
    --f17: 17px;
    --f16: 16px;
}

@media (min-width:1520px) {
    :root {
        --p100: 120px;
    }
}

@media (max-width:1024px) {
    :root {
        --p100: 80px;
        --pre5: clamp(40px, 5%, 80px);
        --m50: 40px;
        --m30: 25px;
        --f80: 70px;
        --f52: 48px;
        --f48: 40px;
        --f44: 38px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 24px;
        --f24: 22px;
        --f22: 20px;
    }
}

@media (max-width:768px) {
    :root {
        --pd100: 70px 0;
        --p100: 60px;

        --m100: 70px;
        --f80: 60px;
        --m50: 30px;
        --m30: 20px;
        --f52: 44px;
        --f48: 32px;
        --f44: 30px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 20px;
        --f24: 20px;
        --f20: 18px;
        --f18: 17px;
        --f17: 16px;
    }
}

@media (max-width:600px) {
    :root {
        --p100: 50px;
        --pd100: 50px 0;
        --pre5: clamp(20px, 5%, 40px);
        --m100: 50px;
        --m50: 25px;
        --f80: 52px;
        --f52: 36px;
        --f48: 28px;
        --f44: 26px;
        --f40: 24px;
        --f36: 22px;
        --f32: 20px;
        --f28: 18px;
        --f24: 18px;
        --f22: 18px;
        --f20: 17px;
        --f18: 16px;
        --f17: 15px;
    }
}

@media (max-width:480px) {
    :root {
        --p100: 40px;
    }
}

@media (max-width:375px) {
    :root {
        --f80: 48px;
        --f52: 32px;
        --f48: 24px;
        --f44: 22px;
        --f40: 20px;
        --f36: 18px;
        --f32: 18px;
        --f28: 17px;
        --f24: 17px;
        --f22: 17px;
        --f20: 16px;
        --f18: 15px;
    }
}

/*網站全域設定/＝＝＝＝＝*/


.edit_part {
    padding: 0;
}

.linksBtn {
    display: none;
}


/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

.nav-header {
    max-width: 200px;
}

.nav-brand img {
    display: flex;
}

.header_area {
    position: relative;
    position: fixed;
    z-index: 9999;
    width: 100%;
    background: transparent;
    padding: 0;

}

.header_area.sticky {
    position: fixed;
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    background: transparent;
}

.main_header_area:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition-timing-function: ease-in;
    padding: 0 40px;
    transition: .4s ease;
    border-bottom: 1px solid #e9edfc;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 1px 5px 8px 5px rgba(0, 71, 55, .03);
}

.pageIndex .main_header_area:after {
    background: #ffffffc4;
}

.pageIndex .main_header_area:after {
    /* height: 0; */
}

.header_area.sticky .main_header_area:after {
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
}

.main_header_area .container {
    max-width: 100%;
    padding: 0;
    padding-left: 5%;
    transition: 0.5s;
}

.pageIndex .header_area .main_header_area,
.header_area .main_header_area {
    background: transparent;
    transition: all 0.3s;
    position: relative;
}

.pageIndex .header_area.sticky .main_header_area,
.header_area.sticky .main_header_area {
    background: transparent;
    transition: all 0.3s;
}

.navigation {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    gap: 25px;
    row-gap: 0;
}


/*選單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/
.pageIndex .stellarnav {

}

.header_area.sticky .stellarnav {
    opacity: 1;
    transition: all 0.3s;
    pointer-events: unset;
}

/*最新消息按鈕隱藏*/
.stellarnav > ul > li:nth-of-type(1) {display:none;}

/* 第一層 */
.stellarnav>ul>li {
    position: relative;
    padding: 20px 0;
    padding: 0;
}

.stellarnav>ul>li:after {
    content: "";
    display: block;
    background-color: transparent;
    width: 0;
    height: 50px;
    position: absolute;
    top: -32%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s;
    pointer-events: none;
    content: none;
}

.stellarnav>ul>li:hover::after {
    box-shadow: rgb(255, 255, 255) 0px 0px 31px;
    width: 100%;
    transition: .5s cubic-bezier(0.77, 0, 0.65, 0.99);
}

.stellarnav>ul>li>a {
    font-family: var(--SFont2);
    color: #5a5656;
    font-weight: 500;
    letter-spacing: 0.12em;
    padding: 20px 25px;
    font-size: 16px;
    height: 100%;
    margin: 0;
}

.stellarnav>ul>li>a:hover {
    color: #d88e87;
    transition: .5s cubic-bezier(0.77, 0, 0.65, 0.99);
}

/* 預約按鈕 */
.stellarnav>ul>li:last-child {
    right: 0;
    background: #cca39a;;
}

.stellarnav>ul>li:last-child a {
    color: #fff;
    padding-right: 40px;
    padding-left: 40px;
    letter-spacing: 0.12em;
    font-weight: 300;
    z-index: 2;
}

.stellarnav>ul>li:last-child a:before {
    background-color: #cca39a;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    display: block;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 2s;
    transition: all 2s;
}

.stellarnav>ul>li:last-child a:after {
    background-color: #d38b7b;;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    display: block;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 2s;
    transition: all 2s;
}

.stellarnav>ul>li:last-child a:hover:before,
.stellarnav>ul>li:last-child a:hover:after {
    width: 100%;
    height: 100%;
    opacity: 1;
}


.stellarnav ul li:hover a {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.stellarnav ul ul>li>a:hover,
.stellarnav ul ul>li>a:focus {
    color: #131413;
    opacity: 1;
}

/* 下拉符號 */
.stellarnav li.has-sub>a:after {
    height: 6px;
    width: 6px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent #888 #888 transparent;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-transition: border .2s;
    transition: border .2s;
    margin: 0px;
    top: 48%;
    right: 6px;
}

.stellarnav li.has-sub>a:hover:after {
    opacity: 0.6;
    transition: .3s cubic-bezier(0.77, 0, 0.65, 0.99);
}


/* 第二層 */
.stellarnav ul ul {
    background: #fff;
    left: 50%;
    margin-left: -75px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .175);
}

.stellarnav li li {
    border: 0;
}

.stellarnav.desktop li.has-sub li a {
    font-size: 14px;
    text-align: center;
    padding: 10px;
    letter-spacing: 0.06em;
    font-family: var(--SFont2);
}

.stellarnav ul ul>li>a:hover {
    color: #fff;
    background: #cca39a;
}


.me_tp_features {
    display: none;
}

/* ================= */

/* 商品下拉超過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個--結束 */

@media only screen and (max-width: 768px) {

    .navigation {
        flex-direction: column;
    }

    .nav-brand img {
        display: block;
    }

    .main_header_area .container {
        padding-left: 0;}

}

/*footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.footer {
    padding: 0;
    background: #eee;
}

.footer:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
    opacity: 0.5;
    z-index: 1;
    top: 0px;
    filter: brightness(0.5);
}

.footer_logo {
    left: 50%;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    font-size: 0;
    display: flex;
}

.footer_logo a {
    display: block;
    position: relative;
    width: fit-content;
    max-width: 320px;
    height: auto;
}


.footer .center {
    position: relative;
    max-width: 100%;
    padding: 60px 50px;
    background-color: #fffcfb;
    padding: 50px 0 30px;
}

.footer_info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 48px;
    padding: 0;
    max-width: 1400px;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 60px;
    /* width: 90%; */
    /* width: 100%; */
    max-width: 1600px;
    margin: auto;
    padding: 0;
    position: relative;
    margin-left: clamp(60px, 5%, 100px);
    margin-right: clamp(60px, 5%, 100px);
}

.footer_info ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    width: 100%;
    /* max-width: 900px; */
    margin: auto;
    font-family: var(--SFont2);
}

.footer_info li {
    width: 100%;
    position: relative;
    padding: 0;
    top: 0;
}

.footer_info li:nth-child(1) {
    padding-left: 10px;
}

.footer_info li p::before {
    color: #757170;
    font-weight: 600;
}

.footer_info li p.line::before {
    content: "Line ID |";
}

.footer_info li p.tel::before {
    content: "電話 |";
}

.footer_info li p.phone::before {
    content: "手機 |";
}

.footer_info li p.mail::before {
    content: "信箱 |";
}

.footer_info li p.add::before {
    content: "永福店 |";
}


/*最新消息按鈕隱藏*/
.stellarnav > ul > li:nth-of-type(1) {display:none;}


.footer_menu,
.footer_info li:nth-child(1)>p,
.footer_info li:nth-child(1) a {
    transition: all 0.3s;
    font-style: normal;
    text-transform: none;
    line-height: 26px;
    letter-spacing: 0;
    color: #757170;
    padding: 0;
    letter-spacing: 0.1em;
}

.footer_menu {
    flex-wrap: wrap;
    max-width: 425px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 20px;
    row-gap: 5px;
    margin-left: auto;
}

.footer_menu a {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    margin: 0;
    text-align: left;
    padding: 5px;
    border: none;
    background: transparent;
    width: fit-content;
    transition: all 0.3s;
    padding: 0;
    margin-top: 10px;
    letter-spacing: 0.4em;
    position: relative;
}

.footer_menu a:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 0%;
    top: 3px;
    left: -6px;
    background-color: #956c63;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    transition: all 0.5s;
}

.footer_menu a:hover:after {
    height: 90%;
}

.footer_menu a:first-child {
    display: none;
}

.footer_menu a:nth-child(2) {display: none;}

.footer_menu a:hover {
    background: transparent;
    color: #956c63;
}

.box_link {
    display: none;
}

.copy a {
    color: #ffffff;
}

.copy a:hover {
    color: #9e5252;
}


.copy {
    margin: 0;
    text-align: center;
    background: var(--MainColor);
    color: #ffffff;
    padding: 1rem;
    font-size: 11px;
    letter-spacing: 0.08em;
}

/* = = = 分隔線  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
@media screen and (min-width: 1700px) {

    /* footer */
    .footer_info {
        margin: auto;
    }
}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 840px) {

    /* footer */
    .footer {
        padding-bottom: 0;
    }

    .footer_info {
        grid-template-columns: 1fr;
        text-align: left;
        position: relative;
        gap: unset;
        margin-left: clamp(40px, 5%, 80px);
        margin-right: clamp(40px, 5%, 80px);
        padding: 0 10px;
    }

    .footer_logo {
        position: relative;
        left: unset;
        width: 100%;
        max-width: 100%;
        font-size: 0;
        transform: unset;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #383b4e1c;
    }

    .footer_logo a {
        position: relative;
        display: block;
        width: 100%;
    }

    .footer_info ul {
        /* grid-template-columns: 1fr; */
        gap: 20px;
    }

    .footer_info li:nth-child(1):before {
        text-align: center;
    }

    .footer_info li:nth-child(1) {
        /* border-bottom: 1px solid #163f37; */
        padding-bottom: 20px;
    }

    .footer_info li+li {
        margin-top: 0;
    }

    .footer_menu {
        margin: auto;
        max-width: 400px;
        /* border-top: 1px solid #163f37; */
        /* padding-top: 10px; */
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: center;
        row-gap: 0;
        margin-left: auto;
        flex-direction: column;
        width: fit-content;
        margin-right: 10px;
    }

    .footer_menu a {
        margin: 0;
        text-align: left;
        padding: 5px;
        border: none;
        background: transparent;
        width: fit-content;
        transition: all 0.3s;
        padding: 0;
        /* margin-top: 10px; */
        padding: 5px;
        text-align: center;
        writing-mode: unset;
        letter-spacing: 0.08em;
    }

    .footer_menu a:after {
        width: 0%;
        height: 1px;
        top: unset;
        bottom: 5px;
        left: 4px;
    }

    .footer_menu a:hover:after {
        height: 1px;
        width: 90%;
    }

    .copy {
        margin: 0;
        text-align: center;
        background: var(--MainColor);
        color: #ffffff;
        padding: 1rem;
        font-size: 11px;
        letter-spacing: 0.08em;
    }

    .copy a {
        color: #ffffff;
    }



}

@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        display: none;
    }

    .footer.with_shopping_mode {
        padding: 0px 0 0px;
    }

    #to_top {
        bottom: 60px;
    }

    .nav-header {
        max-width: 200px;
        padding: 10px;
    }
}

@media screen and (max-width: 600px) {

    /* footer */
    .footer_logo:after {
        content: none;
    }

    .footer_info ul {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer_info li:nth-child(1) {
        border-bottom: 1px solid #383b4e1c;
    }

    .footer_menu {
        margin: auto;
        margin-left: 10px;
    }

    .copy {
        font-size: 10px;
    }

    .copy .total_view {
        display: unset;
    }
}


@media screen and (max-width: 480px) {
    .footer_info {
        margin-left: 0;
        margin-right: 0;
    }

}




/*促銷方案更改/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.news_part {  width: 100%;}

.animated-arrow {
    background: #caa29b;}

.news_list ul li a:hover {
    background: #faf6f3;
}

/*外觀顏色*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



.other_promotion li a {
    display: block;
    padding: 10px;
    width: 94%;
    margin: 2%;
    position: relative;
    border: none;
    background: #ddbfba;
    transition: 0.3s cubic-bezier(0.4, 0, 1, 1)
}
.other_promotion li a:hover {
    background: #ddbfba;
    border-radius: 100%;
    transition: 0.3s cubic-bezier(0.4, 0, 1, 1)
}

.promotion_title span {
    border: none;
    color: #d0d0d0;
    padding: 2px 0px;
}
.promotion_title em {
    display: none;
}
.promotion_title h2 {
    font-size: 21px;
    color: #936963;
    font-weight: 300;
    letter-spacing: 2px;
}
.edit {
    margin: auto;
    font-weight: 500;
    letter-spacing: 1px;
    color: #936963;
}
.other_promotion li a:hover:before, .other_promotion li a:hover:after {
    border-color: #6b6b6b;
    border-radius: 100%;
}

.promotion_title {
    background: #fffafa;
    padding: 10px;
    border-left: 6px solid #caa29b;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.promotion_title span {
    border: none;
    color: #956a62;
    padding: 2px 0px;
    font-weight: bold;
}

.other_promotion li a:before {
    content: '';
    display: block;
    position: absolute;
    left: -1px;
    top: -1px;
    z-index: 1;
    width: 15px;
    height: 15px;
    border: 1px #946966 solid;
    border-bottom: none;
    border-right: none;
    transition: all .5s;
}

.other_promotion li a:after {
    content: '';
    display: block;
    position: absolute;
    right: -1px;
    bottom: -1px;
    z-index: 2;
    width: 15px;
    height: 15px;
    border: 1px #946966 solid;
    border-top: none;
    border-left: none;
    transition: all .5s;
}

/*改呈現方式*/

.promotions_page .main_part {
    display: flex;
}
.promotions_page .page {
    width: 0%;
}
.other_promotion {
    list-style: none;
    margin: 0;
    padding: 11px;
}
.other_promotion li {
    display: flex;
    margin-bottom: 10px;
    width: 100%;
}
.other_promotion li a {
    display: block;
    padding: 10px;
    width: 100%;
    margin: 0%;
    position: relative;
    border: none;
    background: #ddbfba;
}
.other_promotion .pmtTitle h3 {
    color: #ffffff;
    letter-spacing: 2px;
    height: 60px;
}
.show_content {
    width: 100% !important;
    margin: 0px;
    padding: 10px 10px;
}

/*手機板*/

@media screen and (max-width: 768px) {
    .promotions_page .main_part {
        display: block;
    }

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*購物車*********************************************************** */
.prod_part {    width: 90%;}
.products-list {    display: grid;    gap: 10px;    grid-template-columns: 1fr 1fr 1fr;}
.products-list:before{content:none;}
.products-list .item {    width: 100%;}
.products-list .item {
    display: inline-block;
    vertical-align: top;
    padding: 0 7px;
    margin: 0 0 14px 0;
}

/*購物車/外層＝＝*/
/*顏色*/
.products-list .item a:hover .more {    background: #caa29b;}
/*價格*/
.products-list .price {    display: flex;    margin-bottom: 5px;    align-items: center;    justify-content: center;    flex-wrap: wrap;}
.products-list .price b {    margin: 0 5px;    line-height: 180%;    text-align: center;color: #caa29b;}
.products-list .price b.ori_price {    font-size: 14px;}

/*hover*/
.products-list .pic:after { content: ""; position: absolute; width: 100%; height: 100%; background:#4c4849ab;  left: 0;  bottom: 0; opacity: 0; transition: 0.5s;}
.products-list .more {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 40%;
    z-index: 999;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    letter-spacing: 3px;
    text-indent: 3px;
    opacity: 0;
    border-radius: 99em;
    border: none;
    padding-top: 50px;
}
.products-list .more:after {
    content: "";
    background: url(https://pic03.eapple.com.tw/kcfasciaroom/more.svg);
    width: 35px;
    height: 36px;
    left: 50%;
    bottom: 50%;
    position: absolute;
    transform: translate(-50%, 0%);
}
.products-list .item a:hover .pic:after { opacity: 1;}
.products-list a:hover .more {background: transparent; border-color: transparent;  opacity: 1;  transition: 0.5s;}
.products-list .item a:hover .more { background: transparent;}

/*外層版面*/
.product_page .main_part {    width: 90%;	max-width: 1500px;}
.product_page .show_content {    display: flex;    flex-wrap: wrap;    align-items: flex-start;    justify-content: space-between;}
.product_page .products-list {    width: calc(100% - 280px);}
.product-layer-two {    width: 250px;    margin: 0;}
.product_info_page .product-layer-two {    display: none;}
.product-layer-two li {    margin: 0;    width: 100%;padding: 0 10px;}
.product-layer-two > li.active {    background: #f2f2f2;}
.product-layer-two li.active a {    border: unset;border-bottom: 1px dotted #ccc;}
.products-list .name {  color: #5d5d5d; text-align: center; font-size: 18px; font-weight: 600;  letter-spacing: 4px;}
/**/
.product-layer-two li a {    color: #222;    border: none;    background: transparent;    transition: all 0.3s;    line-height: 200%;    transition: all 0.3s;}
.product-layer-two > li > a {    border-bottom: 1px dotted #ccc;padding-left: 25px;}
.product-layer-two li:hover > a , .product-layer-two li.active > a{color: #caa29b;}
.product-layer-two li:hover > a:before , .product-layer-two li.active > a:before {background: #caa29b; color:#fff;}
.product-layer-two > li > a:before {
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 18px;
    content: "＞";
    color: #caa29b;
    background: #f2f2f2;
    width: 18px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    padding-left: 2px;
    font-size: 13px;
}
/**/
.product-layer-two li ul {    position: relative;padding-top: 1px;}
.product-layer-two li li {    border: none;background: transparent;}
.product-layer-two li li a{    background: transparent;}
.product-layer-two li li:hover a{color: #caa29b;}

/*hover到才顯示副選單 關掉↓*/
.product-layer-two li li {    display: block;}

/*購物車/內層＝＝*/
.product_info_page .main_part {    width: 90%;}
.sidebarBtn {
    border: 2px #ddd solid;
    display: none;
}
#prod_thumbSwiper {
    display: none;
}
.product_main {
    padding: 0 10px;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}

/*按鈕顏色*/
.inquiry_a1 { background: #BDB6AC;}
.inquiry_a2 { background: #caa29b;}
.inquiry_a3{background: #caa29b;}

.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover { background: #caa29b;}
.lastaction {    color: #666666;    background-color: #f2f2f2;}
.nextaction { background-color: #caa29b;}
.lastPage {    background: #888888;}
/*商品側邊規格*/
.product_info li .txt_box {    color: #222222;    width: 100%;}
.sidebarBtn .sp_price {   color: #cbc0a0;}
.mobile_product_name{font-size: 24px;}
.sidebarBtn {border: 2px #ddd solid;}


/*相關推薦*/
.prod_related h6 span:before{font-size: 25px;color: #5e6061;}
.prod_related {
    background: #fdfdfd;
    padding: 25px 15px;
}

@media screen and (max-width: 1024px) {
    .product_page .products-list {
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;
    }

    .swiper-banner .swiper-slide img {
        height: auto;
        margin-top: 75px;
    }
}

@media screen and (max-width: 570px) {

.stellarnav .menu-toggle {
    padding: 15px 10px;
    padding: 0;
    margin: 15px 0px 0 12px;
}
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 首頁的文章管理 */
.module_i_news{ padding: 100px 20px; max-width: 1400px; margin: auto;}
.pageIndex .module_i_news .title_i_box h4 {
    color: #cca39a; font-size: 32px; font-weight: bold;
    font-family: "Microsoft JhengHei UI";
    letter-spacing: 3px;
}
.pageIndex .module_i_news .title_i_box h4:before{
    content: ""; display: block; width: 320px;height: 60px; background-size: cover;  margin: 0px auto 5px;
}

.news_part .title_i_box h6 {
    font-size: 36px;
    color: #ffffff00;
}

.news_part .title_i_box h4 {
    font-size: 20px;
    color: #595959;
    font-weight: 600;
    margin-top: 10px;
    font-family: 'Noto Serif TC';
    letter-spacing: 2px;
}
.news_part .title_i_box h6 {
    content: "";
    display: block;
    width: 320px;
    height: 65px;
    background-size: cover;
    background-image: url(https://pic03.eapple.com.tw/kcfasciaroom/news.png);
    margin: 0px auto 5px;
}

.animated-arrow{ background: transparent; color: #cca39a; border: 1px solid #cca39a; width: 180px;height: 41px; line-height: 41px; padding-left: 17px;}
.fa-arrow-right::before{ display: none;}

@media screen and (max-width:1500px) {
    .module_i_news{ width: 80%;}
}
@media screen and (max-width:350px) {
    .pageIndex .module_i_news .title_i_box h4:before{
        width: 280px;
        margin-left: -15px;
    }
}

/*文章設定*/
/*文章管理/＝＝＝＝＝*/
.blog_page .main_part{ max-width: 1400px;}
.blog_in_page .main_part{ max-width: 1400px;}
h4.blog_category_title{font-size: 28px; color: #cca39a;}
h4.blog_category_title span{font-size: 24px;}
h5.blog_le_t{ display: none;}

/*文章管理/外層＝＝*/

.subbox_item a {
    display: grid;
    position: relative;
    grid-gap: 20px;
    grid-template-columns: none;
}
.module_i_news {    padding: 100px 20px;}
.module_i_news ul, .blog_subbox {    display: grid;    gap: 0;}
.module_i_news li, .subbox_item {
    width: 100%;
    position: relative;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition-property: background-color, color;
    transition-property: background-color, color;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}
.i_blog_le img, .blog_list_le img{ opacity: 0.7;}
.subbox_item a:hover img { opacity: 1;}
.subbox_item{margin-bottom: 0;}
.module_i_news li:hover, .subbox_item:hover {
    background-color: #cdb1ac;
    transition: all 0.3s ease-in-out;
}
.module_i_news li:hover:before, .subbox_item:hover:before {    opacity: 0;}
.module_i_news li:hover::after, .subbox_item:hover::after {    opacity: 0;}

.module_i_news li:before, .subbox_item:before, .module_i_news li:after, .subbox_item:after {
    position: absolute;
    width: 1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 86.04%;
    background-color: #e9dcd9;
    -webkit-transition: opacity .4s linear;
    transition: opacity .4s linear;
    content: "";
}
.module_i_news li:before, .subbox_item:before {left: 0;}
.module_i_news li:after, .subbox_item:after  {    right: 0;}

.module_i_news .title_i_box h6 {
    font-size: 17px;
    color: #352e2d;
    font-family: "Inconsolata", monospace;;
    font-weight: normal;
}
.i_blog_ri h5, .blog_list_ri h5 {
    color: #87706b;
    font-size: 18px;
    padding-top: 7px;
    padding-bottom: 7px;
    height: 54px;
}
.i_blog_ri p, .blog_list_ri p {
    color: #24231f;
    font-size: 14px;
    line-height: 190%;
    min-height: 60px;
    -webkit-line-clamp: 2;
}
.module_i_news li a, .subbox_item a {
    padding: 5px;
    padding: 16.66% 14.28% 7.71% 14.28%;
}
.module_i_news li a:after , .subbox_item a:after{pointer-events:none; }
.module_i_news li a:before, .subbox_item a:before {
    display: none;
}
.module_i_news li a:after, .subbox_item a:after {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #e9dcd9;
    -webkit-transition: opacity .4s linear;
    transition: opacity .4s linear;
    content: "";
    opacity: 1;
    border: none;
    top: 100%;
}
.i_blog_le, .i_blog_ri , .blog_list_le , .blog_list_ri {    width: 100%;}
.blog_list_ri{ padding-top: 15px;}
.i_blog_le , .blog_list_le{    position: relative;    padding-bottom: 100%;    height: 0;}/*文章縮圖長寬比例，100% →100:100 = 1:1 正方形 */

.i_blog_le img , .blog_list_le img{
	display:block;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.i_blog_ri em, .blog_list_ri em {
    padding-right: 3.1em;
    font-size: 10px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: 14.66%;
    left: 5%;
    color: #24231f;
    font-family: "Noto Serif TC", serif;
}
.module_i_news li a:hover h5, .subbox_item a:hover h5 {    color: #fff;}
.module_i_news li a:hover:before, .subbox_item a:hover:before {    color: #fff;}
.module_i_news li a:hover em, .subbox_item a:hover em {    color: #fff;}
.module_i_news li a:hover  p, .subbox_item a:hover p {    color: #fff;}

/*側邊*/
.blog_le{ margin-top: 66px;}
.blog_le .accordion > li{transition:all 0.3s;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #cca39a !important;}
.accordion li .link a {  color: #938c8a;}
.submenu a:hover {    background: #cca39a;}

/*首*/
.module_i_news ul {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 1600px;
}
/*功*/
.blog_subbox{grid-template-columns:1fr 1fr 1fr;}
.blog_subbox:before{content:none;}
/*文章管理/內層＝＝*/
.blog_back a.article_btn_back {
    background: #956966;
}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {
    background: #caa29b;
}

.lastPage {
    font-size: 16px;
    color: #fff;
    background: #936867;
    padding: 10px 20px;
    display: block;
    margin: 40px auto;
    width: 130px;
    text-align: center;
}

.news_related {
    background: #f9f8f8;
    padding: 25px 15px;
}
/* 裝飾 */
.blog_list_le:before,
.i_blog_le:before {
    content: 'MORE';
    font-size: 0.8em;
    color: #ccc;
    position: absolute;
    top: 0;
    right: -1px;
    background: #cca39a;
    color: #FFF;
    text-align: center;
    line-height: 35px;
    padding: 0 10px;
    -moz-transform: translate(50px, -40px);
    -ms-transform: translate(50px, -40px);
    -webkit-transform: translate(50px, -40px);
    transform: translate(50px, -40px);
    -moz-transition: -moz-transform 0.6s;
    -o-transition: -o-transform 0.6s;
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    position: absolute;
    z-index: 1;
    opacity: 0;
    font-family: "Cinzel", serif;
}

.subbox_item:hover .blog_list_le:before,
.module_i_news li:hover .i_blog_le:before {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
}


@media screen and (max-width:1500px) {
    .blog_page .main_part{ width: 80%;}
    .blog_in_page .main_part{ width: 80%;}
}
@media screen and (max-width:1024px) {
    .blog_subbox{ grid-template-columns:1fr 1fr; }
}
@media screen and (max-width:960px) {
    .module_i_news ul{grid-template-columns:1fr 1fr; }
}
@media screen and (max-width:450px) {
    .blog_subbox{ grid-template-columns:1fr; }
    .module_i_news ul{grid-template-columns:1fr; }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #936a65;
    background-image: url(https://pic03.eapple.com.tw/kcfasciaroom/bn01.jpg);
}

.banner h5 {
    font-size: 32px; 
    letter-spacing: 2px; 
    text-indent: 5px; 
    position: relative;
    font-family: 'Noto Serif TC';
}
.banner h5:after {
    color: #cca39b;
    left: 50%;
    top: 100%;
    position: absolute;
    white-space: nowrap;
    transform: translateX(-50%);
    font-size: 25px;
    font-weight: 500;
    margin-top: 5px;
}

.product_page .banner h5:after, .product_info_page .banner h5:after {
    content: "Team";
}

.blog_page .banner h5:after, .blog_page .banner h5:after {
    content: "Article";
}

.blog_in_page .banner h5:after, .blog_in_page .banner h5:after {
    content: "Article";
}

.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}


@media screen and (max-width:768px) {

.banner {
    height: 240px;
}
.banner h5 {
    margin-top: 40px;
}
.banner h5 {
    font-size: 28px;
}
.banner h5:after {
    font-size: 22px;
    margin-top: 0px;
}

}



@media screen and (max-width:768px) {
/*手機版*/

.stellarnav ul ul {
    background: #fff;
    width: 140px;
    left: auto;
    margin-left: 0;
}

.stellarnav li a {
    padding: 15px 10px;
    display: block;
}
.stellarnav.mobile li li a {
    color: #fff;
    background: #caa29b;
    font-family: 'Noto Serif TC';
}

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */