@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.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 {}
*/

/* header商品下拉超過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個--結束 */


/*預設解除背景輪播*/
#content_main { background: var(--color2); 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;}
}
/*預設解除背景輪播--結束*/


   
@media screen and (max-width: 600px) { 
}
 /* 開啟手機板下方按鈕所需設定--結束 */    

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 網頁捲軸設定 */

::-webkit-scrollbar {
    width: 8px;
    background: var(--color1);
} /* 寬度 */

::-webkit-scrollbar-button {
    background: var(--color1);
    height: 8px;
} /* 滾動條上下箭頭 */

::-webkit-scrollbar-thumb {
    background-color: var(--color3);
} /* 捲軸顏色 */

:-webkit-scrollbar-track-piece {
} /* 捲軸沒有軌道的地方 */

::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 6px rgba(225, 225, 225, 0.6); */
    background-color: var(--color2);
} /* 捲軸軌道 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 全域設定 */
:root {
    font-family: "Noto Serif TC", serif;
    line-height: 1.8;
    letter-spacing: 0.1em;
    /* font-size: var(--f18); */
    color: var(--color1);
    /* background: var(--color2); */

    --color1:#fff;
    --color2:#000;
    --color3:#C58A5F;
    --color4:#b99865;

    --f47:47px;
    --f40:40px;
    --f36:36px;
    --f32:32px;
    --f30:30px;
    --f28:28px;
    --f26:26px;
    --f24:24px;
    --f22:22px;
    --f20:20px;
    --f18:18px;
    --f16:16px;

    transition: .5s cubic-bezier(0.49, -0.02, 0.57, 0.89);
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*--------頁碼設定----------*/
ul.page { 
    width: 100%;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
}

/* 停留在該頁時 */
.page strong {
    background: #6a3906;
}

/* 其他頁 */
.page li {
	margin: 0;
}
.page li a, .page li strong {
    width: 35px;
    height: 35px;
}
.page li a {
    color: #4C5259;
}

/* hover-點擊其他頁 */
.page a, 
.page a:hover {
    transition: all .2s;
}
.page a:hover {
    color: #aacc03;
    background: transparent;
}


/* = = = 查看更多 按鈕設定 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.animated-arrow {
    width: 278px;
    height: 55px;
    font-weight: 400;
    letter-spacing: 0.2rem;
    background: transparent;
    border: solid 1px var(--color1);
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}
.animated-arrow b {
    font-size: 16px;
    font-weight: 400;
}
.fa-arrow-right::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background-image: url(
    https://pic03.eapple.com.tw/zenigami/zen_arrow.svg);
}
.i_prod_b a i.fa-solid.fa-arrow-right {
    position: relative;
    left: 0;
    padding: 0 30px 0 0;
    margin: 0;
}


/* hover */
.animated-arrow:hover {
    transform: scale(1.02);
    transition: .5s cubic-bezier(0.49, -0.02, 0.57, 0.89);
}
.i_prod_b a:hover i.fa-solid.fa-arrow-right {
    left: 10px;
    margin: 0;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 麵包屑導覽--隱藏 */
.path {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.header_area {
    position: fixed;
    background: transparent;
    padding: 10px 10px 0 10px;
    transform: translateY(-30%);
    opacity: 0;
}
.main_header_area .container {
    max-width: 1920px;
    padding: 0 15px;
}
.navigation {
    grid-template-columns: 1fr 270px;
}

/* logo */
.nav-header {
    position: absolute;
    max-width: 45px;
    z-index: 999999999;
}

/* 搜尋欄位 */
.me_tp_features {
    order: 2;
}
.box_search input[type=text]:focus {
    color: #333;
}
.tp_links {
    display: none;
} /* header聯絡按鈕--隱藏 */
.box_search input[type=text] {
    max-width: 160px;
    line-height: 1.5;
    border-radius: 0;
    border: 0;
    border-bottom: solid 1px #5b5b5b;
    background: url(https://pic03.eapple.com.tw/zenigami/ic_search.svg) no-repeat 130px center transparent;
    padding: 5px;
}
.shop_search_txt::-webkit-input-placeholder {
    font-family: "Noto Serif TC", serif;
    font-size: 12px;
    letter-spacing: 0.1rem;
    color: #b7b7b7;
}
.shop_search_txt::-moz-placeholder  {
    font-family: "Noto Serif TC", serif;
    font-size: 12px;
    letter-spacing: 0.1rem;
    color: #b7b7b7;
}
.shop_search_txt::-moz-placeholder {
    font-family: "Noto Serif TC", serif;
    font-size: 12px;
    letter-spacing: 0.1rem;
    color: #b7b7b7;
}
.shop_search_txt:-ms-input-placeholder{
    font-family: "Noto Serif TC", serif;
    font-size: 12px;
    letter-spacing: 0.1rem;
    color: #b7b7b7;
}
.shop_search_btn {
    display: none;
}
.me_tp_features a.tp_btn_cart {
    color: #b7b7b7;
}
.fa-cart-shopping::before {
    content: "\f291";
}
.me_tp_features a.tp_btn_notice {
    display: none;
} /* 匯款通知-隱藏 */

/* .stellarnav */
.stellarnav > ul {
    text-align: left;
    padding-left: 80px;
}
.stellarnav a {
    font-family: "Noto Serif TC", serif;
}
.stellarnav > ul > li > a {
    height: 47px;
    font-family: "Noto Serif TC", serif;
    font-size: 13px;
    color: #b7b7b7;
    letter-spacing: 0.2rem;
    margin-left: 35px;
}
.stellarnav > ul > li.has-sub > a {
    padding-right: 0;
}
.stellarnav li.has-sub > a:after {
    display: none;
}
.stellarnav ul ul {
    background: rgb(0 0 0 / 50%);
}
.stellarnav li li {
    border: 0;
}
.stellarnav li li+li {
    border-top: solid 1px #2a2a2a;
}
.stellarnav li li a {
    font-size: 13px;
    font-weight: 300;
    color: var(--color1);
}
.stellarnav li li > a, 
.stellarnav li li.has-sub > a {
    padding: 12px 15px 12px 10px;
}

/* 下滑設定 */
.header_area,
.header_area.sticky {
    transition: .5s cubic-bezier(0.49, -0.02, 0.57, 0.89);
}
.header_area.sticky {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    transform: translateY(0);
    opacity: 1;
}

/* hover */
.me_tp_features a,
.me_tp_features a:hover {
    transition: .5s cubic-bezier(0.49, -0.02, 0.57, 0.89);
}
.me_tp_features a:hover {
    color: var(--color1);
}
.stellarnav * {
    transition: all .3s;
}
.stellarnav > ul > li > a:hover,
.stellarnav > ul > li:hover > a {
    color: rgba(144, 161, 131, 0.6);
    color: var(--color1);
} /* 主選單一般變色 */
.stellarnav > ul > li.has-sub > a:hover:after,
.stellarnav > ul > li.has-sub:hover > a:after{
    border-top: 6px solid #;
} /* 主選單三角形 */
.stellarnav li li:hover > a, 
.stellarnav li li > a:hover, 
.stellarnav.desktop li.has-sub li a:hover, 
.stellarnav.desktop li.has-sub li:hover > a   {
    color: ;
    background: ;
} /* 次分類一般變色 */
.stellarnav li li.has-sub > a:hover:after,
.stellarnav li li.has-sub:hover > a:after{
    border-left: 6px solid #;
} /* 次分類三角形 */

@media screen and (max-width: 1120px) {
    .stellarnav > ul > li > a {
        height: 35px;
    }
}

@media screen and (max-width: 1024px) {
    .navigation {
        display: grid;
    }
}

@media screen and (max-width: 980px) {

}

@media screen and (max-width: 768px) {
    .header_area {
        opacity: 1;
    }
    .header_area, 
    .header_area:not(.pageIndex .header_area), 
    .header_area.sticky {
        transform: unset !important;
        backdrop-filter: unset;
    }
    .navigation {
        display: flex;
    }
    .me_tp_features {
        position: relative;
        bottom: 5px;
    }
    .me_tp_features a.tp_btn_cart {
        display: none;
    }

    /* 漢堡鈕設定--開始 */
    .stellarnav.mobile {
        left: unset;
        right: -14px;
        top: -5px;
    }
    .stellarnav .menu-toggle span.bars span {
        width: 32px;
        margin: 0 auto 6px;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(1) {
        background: ;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(2) {
    }
    .stellarnav .menu-toggle span.bars span:nth-child(3) {
    }
    .stellarnav .menu-toggle:after {
        display: none;
    }
    .stellarnav.mobile.right .close-menu, 
    .stellarnav.mobile.left .close-menu {
        position: relative;
        color: transparent;
        background: transparent;
        padding-top: 20px;
        padding-left: 15px;
    }
    .stellarnav .icon-close {
        display: block;
        position: static;
    }
    .stellarnav .icon-close:before, 
    .stellarnav .icon-close::after {
        right: 20px;
        width: 25px;
    }/* 漢堡鈕設定--結束 */


    /* 選單設定--開始 */
    .stellarnav.mobile.left > ul {
        left: unset;
        right: 0;
        background: rgb(0 0 0 / 70%);
        backdrop-filter: blur(3px);
        padding-left: 0;
    }
    .stellarnav a.dd-toggle .icon-plus:before, 
    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 1px ;
    }
    .stellarnav.mobile > ul > li,
    .stellarnav.mobile li a {
        border: 0;
    }
    .stellarnav.mobile > ul > li > a,
    .stellarnav.mobile li li a {
        font-size: 15px;
    }
    .stellarnav li li+li {
        border: 0;
    }
    .stellarnav.mobile li li.has-sub a {
        padding: 10px 43px 10px 40px;
    }
    .stellarnav.mobile li li > a {
        padding: 10px 10px 10px 55px;
    }
    .stellarnav.mobile li li.has-sub a {
        padding: 10px 43px 10px 55px;
    }
    .stellarnav.mobile li.open {
        background: transparent;
        padding: 0;
    }
    .stellarnav.mobile ul ul {
        background: rgb(0 0 0 / 50%);
    }
    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0;
    }
    .stellarnav.mobile li.open li.open > a {
        background: rgb(197 138 95 / 20%);
    }
    .stellarnav.mobile li.open li.open > a.dd-toggle {
        background: transparent;
    }
    .stellarnav.mobile ul ul ul {
        background: transparent;
    }
    .stellarnav.mobile li li.has-sub li a {
        padding: 10px 43px 10px 65px;
    }
    /* 選單設定--結束 */

    /* hover--開始 */
    .stellarnav.mobile a.dd-toggle:hover .icon-plus:before, 
    .stellarnav.mobile a.dd-toggle:hover .icon-plus:after {
        border-bottom: solid 1px var(--color1);
    }
    .stellarnav li li:hover > a, 
    .stellarnav li li > a:hover, 
    .stellarnav.desktop li.has-sub li a:hover, 
    .stellarnav.desktop li.has-sub li:hover > a {
        color: ;
        background: transparent;
    } /* 次分類一般變色 */ /* hover--結束 */
}

@media screen and (max-width: 570px) {
    .stellarnav .menu-toggle {
        padding: 10px;
    }
}

/* = = = 大圖 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.bannerindex {
    position: static;
    height: auto;
}
.pageIndex .swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}
.pageIndex .swiper-slide:before,
.pageIndex .swiper-slide:after {
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 999;
    pointer-events: none;
}
.pageIndex .swiper-slide:nth-child(1):before {
    background-image: url(https://pic03.eapple.com.tw/zenigami/logo-w.png);
    width: 6%;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    aspect-ratio: 218 / 500;
    animation: enterence 4s 0.3s both;
}
@keyframes  enterence {

    0% {
        -webkit-transform: translateX(-50%) scale(1.5);
        transform: translateX(-50%) scale(1.5);
        opacity: 0;
    }

    30% {
        backdrop-filter: blur(3px);
    }

    100% {
        -webkit-transform: translateX(-50%) scale(1);
        transform: translateX(-50%) scale(1);
        backdrop-filter: blur(0px);
        opacity: 1;
    }

}
.pageIndex .swiper-slide:nth-child(1):after {
    background-image: url(https://pic03.eapple.com.tw/zenigami/ban_text.png);
    bottom: 32%;
    left: 50%;
    transform: translateX(-50%);
    width: 25%;
    aspect-ratio: 541 / 69;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 3%;
} /* 大圖點點 */

/* 大圖-下滑設定 */
/* .pageIndex .header_area.sticky .swiper-slide:nth-child(1):before {
    animation: vanish .5s linear;
}
@keyframes jump {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(.6);
        transform: scale(.6);
        opacity: 0;
    }
} */

/* = = = 內頁設定= = = = = = = = = == = = = = = = = = = = = = = = == = = */
.header_area:not(.pageIndex .header_area) {
    transform: translateY(0);
    opacity: 1;
}
body {
    background: #c9c9c9;
}


/* = = = footer = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.footer {
    position: relative;
    font-family: "Noto Serif TC", serif;
    background-color: var(--color2);
    padding: 0 0 110px;
}
.footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/zenigami/footer_bg.jpg);
    background-position-x: 45%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}
.footer .center {
    padding: 50px 2% 0 2%;
}
.footer_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 0;
    padding: 0;
}
.footer_logo {
    max-width: 60px;
}
.box_link {
    display: none;
}
.footer_info ul {
    text-align: center;
}
.footer_info li:nth-child(1) {
    display: none;
}
.footer_info li p,
.footer_info li p a {
    font-size: 13px;
    color: #a2a2a2;
}
.footer_info li p {
    letter-spacing: 0.15rem;
    line-height: 220%;
}
.footer_info li p:before {
    font-size: 12px;
    color: #7f7f7f;
}
.footer_info li p.line:before {
    content: 'Line.';
}
.footer_info li p.tel:before {
    content: 'TEL.';
}
.footer_info li p.add:before {
    content: 'ADD.';
}
.footer_info li:nth-child(2) {
    display: none;
}
.footer_menu a {
    border: 0;
    background: transparent;
}
.copy, 
.copy a {
    color: #696969;
}
.copy {
    font-size: 12px;
    border: 0;
    margin: 0;
}

/* hover */
.box_link a,
.box_link a:hover,
.footer_menu a,
.footer_menu a:hover,
.copy a,
.copy a:hover {
    transition: all .3s;
}
.box_link a:hover {
    opacity: .7;
}
.box_link a,
.box_link a:hover {
    transition: all .2s;
}
.footer_menu a:hover {
    background: transparent;
    color: #777777;
}
.copy a:hover {
    color: #fbcd4f;
}

@media screen and (max-width: 768px) {
    
}

/* = = =購物車 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 共用 */
.products-list .item a>* {
    width: auto;
}
.products-list .item a {
    position: relative;
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-column-gap: 30px;
    align-items: center;
}
.pageIndex .products-list .pic {
    grid-row: 1 / span 3;
}
.products-list .name {
    height: 3.8em;
    font-weight: 500;
    color: var(--color1);
    letter-spacing: 0.2rem;
    line-height: 180%;
    align-items: flex-end;
    margin-top: 60px;
}
.products-list .more {
    position: relative;
    left: 0;
    transform: translateX(0);
    font-size: 14px;
    color: var(--color3);
    text-align: right;
    border: 0;
    margin-bottom: 60px;
}
.products-list .more:before {
    content: '';
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 1px;
    background: var(
    --color3);
}

/* 共用--hover */
.products-list .item a .more:before,
.products-list .item a:hover .more:before {
    transition: .5s cubic-bezier(0.49, -0.02, 0.57, 0.89);
}
.products-list .item a:hover .more {
    color: rgb(197 138 95 / 50%);
    letter-spacing: inherit;
    background: transparent;
}
.products-list .item a:hover .more:before {
    background: rgb(197 138 95 / 50%);
}




/* 首頁商品設定 */
.prod_part {
    font-family: "Noto Serif TC", serif;
    background-image: url(https://pic03.eapple.com.tw/zenigami/zen_products_bg01.jpg);
    background-repeat: repeat-y;
    padding: 80px 20px;
}
.prod_part section {
    max-width: 1800px;
}
.i_prod_tit {
    padding-bottom: 20px;
}
.i_prod_tit span, 
.i_video_tit span {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.4rem;
}
.pageIndex .products-list {
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    grid-gap: 60px;
}




/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */

/* 購物車頁面設定 */
.product_page,
.product_info_page {
    font-family: "Noto Serif TC", serif;
    background-image: url(https://pic03.eapple.com.tw/zenigami/zen_products_bg01.jpg);
    background-size: cover;
}
.product_page .main_part {
    max-width: 1800px;
}
.products-list {
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    grid-gap: 60px;
}

/* 商品分類 */
.product_menu_list {
    margin-bottom: 80px;
}
.product-layer-two {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.product-layer-two > li { 
    width: auto;
    max-width:100%; 
    padding:0; 
    text-align:left; 
    padding-bottom: 5px;
}
.product-layer-two > li+li {
    margin-left: 15px;
}
.product-layer-two li a {
    font-size: 18px;
    color: var(--color1);
    text-align: center;
    background: transparent;
    border: 0;
}
.product-layer-two li i {
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
}
.fa-circle-plus::before,
.product-layer-two li i.close::before {
    content: '\f078';
}
.product-layer-two li ul { 
    position:static; 
    width: 100%; 
    margin: 40px 0 0;
}
.product-layer-two li li {
    display: block;
    background: transparent;
    padding: 0;
    transition: all ease .3s;
}
.product-layer-two li li a {
    text-align: center;
    background: transparent;
    padding: 0 10px;
}
.product-layer-two > li ul > li + li { 
    margin-top:5px;
}
.product-layer-two li li > a:before { 
    display: none;
}

/* 商品分類hover */
.product-layer-two * {
    transition: all .3s;
}
.product-layer-two li a:hover {
    color: var(--color1);
}
.product-layer-two li:hover ul { 
    border: none !important; 
    /*display:block !important;*/
}
.product-layer-two li i:hover {
    opacity: .5;
}
.product-layer-two li li:hover{ 
    
}
.product-layer-two li li:hover > a { 
    opacity: .5;
}
.product-layer-two li li:hover > a:before { 
    
}


/* 商品列表 */
.product_page .products-list .pic {
    grid-row: 1 / span 3;
}
.products-list .price * {
    margin: 0;
}
.products-list .price {
    flex-direction: column;
}
.products-list .price b {
    width: 100%;
}
.products-list .price b.sp_price,
.products-list .price b {
    color: var(--color4);
}
.products-list .price b.ori_price {
    font-size: 15px;
    color: var(--color4);
    opacity: .5;
}
.products-list .price .sp_price {
    text-align: left;
}


/* .product_info_page */
.product_info_page .product-layer-two { 
    display: none;
}
.product_info_page .products-list,
.product-wrapper { 
    width: 100%;
}
.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;
}
.sidebarBtn {
    background: transparent;
    border: 0;
}
.sidebarBtn h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color1);
    letter-spacing: 0.2rem;
}
.product_info li span {
    font-family: "Noto Serif TC", serif;
    font-size: 14px;
    color: #b0b0b0;
    letter-spacing: 0.1rem;
}
.product_info li:nth-of-type(1) .txt_box {
    font-size: 15px;
    letter-spacing: 1px;
}
.product_info li .txt_box {
    color: var(--color1);
}
.product_info li:nth-of-type(1) .txt_box {
    font-size: 15px;
}
.radio-inline__label {
    background: #F7F5F2;
    border: 0;
    border-radius: 0;
    padding: 3px 12px;
}
.radio-inline__input:checked + .radio-inline__label {
    color: var(--color1);
    background: var(
    --color2);
    border: 0;
}
.sidebarBtn .price {
    border: 0;
}
.sidebarBtn .price span.ori_price {
    font-size: 15px;
    color: var(--color4);
    opacity: .5;
    text-decoration: line-through;
}
.sidebarBtn .price span {
    font-size: 18px;
    color: var(--color4);
}


.inquiry_a1, .inquiry_a2, .inquiry_a3 {
    font-size: 14px;
    letter-spacing: 0.5rem;
    border-radius: 0;
    margin-top: 6px;
}
.inquiry_a1,
.inquiry_a3 {
    background: var(--color3);
}
.inquiry_a2 {
    line-height: 30px;
    background: #676767;
}
.toShare {
    border: 0;
}

/* 商品資訊&相關推薦 */
.pd_tabTitle {
    grid-gap: 20px;
}
.pd_tabTitle li a {
    color: var(--color1);
    letter-spacing: 0.2rem;
}
.pd_tabTitle li.activeTab {
    border: 0;
}
.pd_tabTitle li.activeTab::after {
    height: 2px;
    background: var(--color3);
}
.pd_tabTitle li.activeTab a {
    color: var(--color3);
}


.prod_related * {
    transition: all ease-in .3s;
}
.prod_related {
    background: transparent;
    padding: 50px 15px 25px 15px;
}
.prod_related h6 {
    margin: 0 auto 30px;
}
.prod_related h6 span:before {
    font-size: 18px;
    font-weight: 600;
    color: var(--color3);
    letter-spacing: 0.2rem;
}
.related_list {
    grid-gap: 40px;
    border: solid 1px var(--color3);
    padding: 40px;
}
.related_list li a {
    background: transparent;
}
.related_list li a p {
    color: var(--color1);
    text-align: left;
    letter-spacing: 0.2rem;
    line-height: 1.5;
    margin-top: 15px;
}
.lastPage {
    position: relative;
    width: 150px;
    font-weight: 600;
    letter-spacing: 0.5rem;
    background: transparent;
}
.lastPage::before {
    content: "";
    display: inline-block;
    position: relative;
    left: -25px;
    top: 11px;
    width: 35px;
    height: 35px;
    background-image: url(
    https://pic03.eapple.com.tw/zenigami/zen_arrow.svg);
    transform: rotate(-180deg);
}

/* hover */
.inquiry_a1:hover, 
.inquiry_a2:hover, 
.inquiry_a3:hover {
    letter-spacing: 0.5rem;
}
.inquiry_a1:hover, .inquiry_a3:hover {
    background: rgba(197, 138, 95, 0.6);
}
.inquiry_a2:hover {
    background: rgba(103, 103, 103, 0.6);
}
.related_list li a:hover {
    opacity: .7;
}
.lastPage *,
.lastPage::before,
.lastPage:hover::before {
    transition: .5s cubic-bezier(0.49, -0.02, 0.57, 0.89);
}
.lastPage:hover,
.lastPage:hover::before {
    opacity: .7;
}
.lastPage:hover::before {
    left: -35px;
}

/* ------詢價車頁面------ */
.car_page {
    font-family: "Noto Serif TC", serif;
    background-image: url(https://pic03.eapple.com.tw/zenigami/zen_products_bg01.jpg);
    background-size: cover;
}
.shopping-cart .cell.product_name p,
.shopping-cart.inquiry_cart .cell.amount a {
    color: var(--color1);
}
.shopping-cart .cart_content .row {
    border-bottom: 1px solid #545454;
}
.total_amount {
    width: 100%;
}
.rewrite_simple, .send_simple {
    font-size: 16px;
    height: 50px;
    line-height: 45px;
    border-radius: 0;
}
.rewrite_simple {
    background: #333333 url(../images/simple_left.png) 10% center no-repeat;
    border: solid 1px #979797 !important;
}
.send_simple {
    background: transparent url(../images/simple_right.png) 92% center no-repeat;
    border: solid 1px var(--color1) !important;
}
.rewrite_simple, 
.rewrite_simple:hover,
.send_simple,
.send_simple:hover {
    transition: .5s cubic-bezier(0.49, -0.02, 0.57, 0.89);
}
.rewrite_simple:hover {
    background: var(--color2) url(../images/simple_left.png) 8% center no-repeat;
}
.send_simple:hover {
    background: rgb(0 0 0 / 50%) url(../images/simple_right.png) 94% center no-repeat;
}

/* 詢價表單 */
.separate_title {
    color: #959595;
    background: rgb(0 0 0 / 50%);
    padding: 10px 0 10px 15px;
}
.red {
    color: var(--color4);
}
.formbox_form {
    color: var(--color1);
}
.border200 {
    background: rgb(255 255 255 / 20%);
    border: 0;
}
.declaration {
    background: var(--color3);
}
.form label.Bigcheck {
    color: var(--color1);
}
.form label .inputbox {
    top: 6px;
}

/* 購物車頁面 */
.form label {
    color: var(--color1);
}
.form label .inputbox {
    margin: 0 6px 3px 0;
}
.shopping-cart .cell.amount a {
    color: var(--color1);
}
.total_amount ul {
    background: rgb(197 138 95 / 60%);
    border: 0;
}
.total_amount li {
    font-weight: 600;
    color: var(--color1);
}
.total_amount ul:after {
    display: none;
}

/* 訂單成立 */
.order_finish_page {
    font-family: "Noto Serif TC", serif;
    background-image: url(https://pic03.eapple.com.tw/zenigami/zen_products_bg01.jpg);
    background-size: cover;
}
.note_edit+section .blank_letter {
    font-family: "Noto Serif TC", serif;
    color: var(--color1);
    letter-spacing: 0.1em;
    border-bottom: solid 1px #797979;
}
.orderFinish_data .notetext {
    color: var(--color1);
    margin-top: 20px;
}
.notetext .list_before {
    color: var(--color1);
}
.list_before.account li::before {
    width: 80px;
}
.order_list_tit b {
    color: var(--color1);
}
.order_list_tit span {
    font-size: 25px;
    color: var(--color1);
    border: 0;
}
.order_list_tab tr {
    border-bottom: solid 1px #626262;
}
.order_list_tab td {
    color: #d7d7d7;
    background: #404040;
    border: 0;
}
.order_list_tab td:nth-child(1) {
    color: var(--color1);
    font-weight: 500;
    background: #626262;
}
.order_list_tab.payer td:nth-child(1) {
    border-right: 0;
}
.order_list_head p {
    color: var(--color1);
    font-weight: 600;
    border: 0;
}
.last_box_money p, 
.last_box_money em {
    color: var(--color3);
}
.order_list_pro tr:first-child {
    background: #333;
}
.order_list_pro tr:first-child td {
    color: #fff;
}
.pay_text a, 
.pay_text a:hover {
    transition: .5s cubic-bezier(0.49, -0.02, 0.57, 0.89);
}
.pay_text a.animated-arrow:nth-child(1):hover {
    background: #48AE4F;
}
.pay_text a.animated-arrow:nth-child(2):hover {
    background: #333333;
}


@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 980px) {
}

@media screen and (max-width: 768px) {
    /* ------詢價車頁面------ */
    .shopping-cart .cart_content .row {
        border: 0;
    }
    .shopping-cart .cell {
        border-bottom: 0;
    }
    .shopping-cart .cell.amount:last-child {
        background: rgb(0 0 0 / 50%);
        border: 0;
    }
    .car_page .information_left {
        display: none;
    }

    /* 購物車頁面設定 */
    

    /* 商品分類 */
    .product_menu_list,
    .products-list,
    .product-wrapper { 
        width: 100%;
    }
    .product_page .product-layer-two,
    .product_page .products-list {
        width: 100%; 
        border-right: none;
    }
    .products-list {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    .product_page .product_menu_list {
        width: 100%; 
        order: 0; 
        min-height: unset;
        background: rgb(63 63 63 / 50%);
        padding: 8px 18px;
        margin-bottom: 40px;
    }
    .product_page .product_menu_list>h5 {
        display: block;
        font-size: 1.2em;
        color: var(--color1);
        margin: 0;
    }
    .product_page .product_menu_list a.pd_menu_toggle i {
        color: #fff;
    }
    .product-layer-two {
        display: none;
        margin-right: 0;
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        grid-gap: 5px;
        border-top: solid 1px #6a6a6a;
        padding-top: 15px;
        margin-top: 10px;
    }
    .product-layer-two li a {
        font-size: 16px;
        text-align: left;
    }
    .product-layer-two li i {
        top: 0;
        left: unset;
        transform: translateX(0);
    }
    .product-layer-two li ul {
        margin: 10px 0 0 20px;
    }
    .product-layer-two li li a {
        text-align: left;
    }

    /* .product_page頁面物件順序設定 */
    .product_page .show_content > a { 
        order: 1;
    }
    .product_page ul.products-list { 
        order: 2;
    }
    .product_page ul.page { 
        order: 3;
    }

    /* .product_page */

    /* .product_info_page */
    .mobile_product_name {
        display: none;
    }
    .sidebarBtn .price span a {
        color: inherit;
    }
}

@media screen and (max-width: 600px) {
    .pageIndex .products-list {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    .products-list .item a {
        grid-template-columns: 200px 1fr;
    }
}

@media screen and (max-width: 480px) {
    .product_info_page .main_part {
        padding: 10px 10px;
    }
    .pageIndex .products-list {
        grid-gap: 20px;
    }
    .products-list .item a {
        grid-template-columns: 1fr;
    }
    .products-list .name {
        margin-top: 20px;
    }
    .products-list .more {
        margin-bottom: 0;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 相簿管理 */
/* .album_page */
.other_album_choice li {
    border-radius: 0;
    padding: 12px 0;
}
.other_album_choice li a {
    padding: 12px 20px;
}

/* .album_page - hover */


/* .album_class_page */
.other_subalbum li {
    background: transparent;
}
.other_subalbum li a p {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.15em;
    margin-top: 5px;
}
.album_fixed_title {
    background: transparent;
}

/* .album_class_page - hover */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 文章管理 */

/* ----blog_page---- */

/* 文章分類 */
h5.blog_le_t {
    display: none;
}
.blog_search input[type=submit] {
    background: url(https://pic03.eapple.com.tw/NinisStudio/ic_search.svg) no-repeat center center;
}
.accordion li .link a,
.submenu a {
    letter-spacing: .05em;
}


/* 文章分類 - hover */
.blog_le .accordion > li.on_this_category {
    color: #90A183 !important;
    background: transparent !important;
} /* 當前分類 */
.blog_le .accordion > li:hover {
    color: #90A183;
    background: transparent !important;
} /* 點擊分類 */
.blog_le .accordion > li:hover .link {
    color: #90A183 !important;
} /* 當前分類 */
.blog_le .accordion > li:hover .link a, 
.blog_le .accordion > li.on_this_category .link a {
    color: #90A183 !important;
}
.blog_le .accordion > li.on_this_category .link i {
    color: #90A183 !important;
} /* 當前分類 */
.blog_le .accordion > li:hover .link i {
    color: #90A183 !important;
} /* 點擊分類 */
.submenu li.on_this_category a, 
.submenu a:hover {
    color: #8c8c8c;
    background: transparent;
    padding-left: 20px;
} /*點擊子分類 */

/* 文章列表 */



/* ----blog_in_page---- */
.blog_shareData {
    flex-direction: row;
}
.blog_back a.article_btn_prev,
.blog_back a.article_btn_next {
}
.news_related_list * {
    transition: all ease-in .3s;
}
.news_related_list li a {
    background: transparent;
}
.news_related_list li a p {
    font-family: "Noto Sans TC", sans-serif;
    text-align: left;
    letter-spacing: 1px;
    line-height: 1.5;
    margin-top: 15px;
}

@media screen and (max-width: 768px) {
    .blog_search input[type=search] {
        -webkit-appearance: none;
        background: transparent;
    }
}

@media screen and (max-width: 480px) {
    .blog_list_ri h5 {
        font-size: 18px;
    }
}

/* = = = 聯絡我們 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 左-聯絡資訊 */

/* 右-表單 */
.contact_content .information_right {
    width: calc(100% - 310px);
}
.contact_form li .form__label {
    text-align: left;
}
.noborder:focus {
    outline: none;
}
.contact_form li.last blockquote input {
    padding: 7px 30px;
}
.contact_form li.last cite input {
    padding: 7px 35px;
}
/* 送出按鈕 */
.contact_form li.last blockquote, .contact_form li.last cite {
    width: 180px;
}

/* hover */
.contact_form li.last blockquote:hover input, .contact_form li.last cite:hover input {
    letter-spacing: 2px;
}
.contact_form li.last cite:hover i.fa-solid.fa-arrow-right {
    margin: 0;
}


@media screen and (max-width: 600px) {
    .contact_form li .form__label {
        font-weight: normal;
        background: transparent;
        padding: 0;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* TOP按鈕 */
#to_top {
    left: 0;
    bottom: 70px;
    height: 100px;
    font-family: "Noto Serif TC", serif;
    color: #858585;
    background: rgb(32 32 32 / 70%);
    border-radius: 0;
    padding-top: 31px;
    backdrop-filter: blur(3px);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
}
#to_top i.top {
    width: 16px;
    height: 30px;
    margin-bottom: 4px;
}
#to_top i.top:before, #to_top i.top:after {
    left: 0;
    width: 15px;
    height: 30px;
    transform-origin: 0% 0%;
}
#to_top i:before {
    transform: rotate(-45deg);
}
#to_top i:before {
    content: "";
    display: block;
    transform: rotate(0);
    background-color: transparent;
    background-image: url(https://pic03.eapple.com.tw/zenigami/top_arrow.svg);
    background-repeat: no-repeat;
    border: 0;
}
#to_top i:after {
    transform: rotate(45deg);
}
#to_top i.top:after {
    display: none;
}

/* 手機版置底按鈕 */
/* #bottom_menu li a {
    color: #fff;
}
#bottom_menu li:nth-of-type(1) {
    background: #4D4D4D;
}
#bottom_menu li:nth-of-type(1) a {
    color: #fff;
}
#bottom_menu li:nth-of-type(2) {
    background: #90A183;
}
#bottom_menu li:nth-of-type(3) {
    background: #99C681;
} */


 /* 開啟手機板下方按鈕所需設定 */
@media screen and (max-width: 768px) {
    #to_top { 
        bottom: 116px;
    }
    .footer.with_shopping_mode { 
        padding:0 0 80px; 
    }
    #bottom_menu {
        bottom: 62px;
        background: rgb(49 49 49 / 80%);
        box-shadow: 0 -3px 3px rgb(255 255 255 / 5%);
    }
    #bottom_menu li:nth-of-type(-n+2) {
        display: none;
    }
    #bottom_menu li:nth-child(1) {
        background: ;
    }
    #bottom_menu li:nth-child(2) {
        background: ;
    }
    #bottom_menu li:nth-child(3) {
        background: ;
    }
    #bottom_menu li a {
        display: flex;
        align-items: center;
        justify-content: center;
        grid-gap: 7px;
        color: #fff;
        padding: 7px 5px;
    }
    #bottom_menu li a em {
        font-family: "Noto Serif TC", serif;
        font-size: 14px;
    }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*--------內頁BANNER 設定----------*/

.banner {
    align-content: flex-end;
    min-height: 200px;
    background-color: transparent;
    background-image: none;
}
.banner h5 {
    font-family: "Noto Serif TC", serif;
    font-size: 26px;
    font-weight: 600;
    color: #a1a1a1;
    letter-spacing: 0.4rem;
}
.banner h5:after {
    content: "";
    display: block; 
    position: relative;       
    font-family: '', 'Noto Sans TC', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #000;    
}

/*促銷方案*/
.banner.banA {}
.banner.banB {}

/*聯絡我們*/
.banner.banC {}

/* 匯款通知 */
.banner.banD {}

/*相簿管理/作品展示*/
.banner.banE {}

/*商品展示*/
.banner.banF {}

/*文章管理*/
.banner.banblog {}

@media screen and (max-width: 768px) {
    .banner h5 {
        font-size: 26px;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */









