@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=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

body {
    font-family: "Cinzel", "Noto Serif TC", serif;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*反白顏色*/
::-moz-selection {
    background-color: #1e1e1e;
    color: #fff;
}

::selection {
    background-color: #1e1e1e;
    color: #fff;
}

body {
    overflow: overlay;
    overflow-x: hidden;
}

&::-webkit-scrollbar {
    background: #fcf9f2;
    width: 7px;
}

&::-webkit-scrollbar-button {
    display: none;
    background: #fcf9f2;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #fcf9f2;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #1e1e1e;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}











/*---------------------------------------------首頁大圖-----------------------------------*/


.bannerindex {}

.bannerindex {
    position: fixed;
    top: 0;
    background: border-box;
    overflow: hidden;
    height: 100vh;
    background: #fff;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.headerSticky .bannerindex {
    padding: 0;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.bannerindex .swiperBan02 {
    position: relative;
    left: 0;
    margin-left: 0;
    border-radius: 10px;
}

.bannerindex .swiper-wrapper {
    position: relative;
    overflow: hidden;
}

.sb_marquee {
    display: none;
}

.bannerindex .swiperBan02 .swiper-slide img {
    height: 100%;
    transform: none !important;
}

.swiper-button-next,
.swiper-button-prev {
    top: auto;
    bottom: 10vh;
    left: 50%;
    display: none;
}

.swiper-button-next {
    transform: translate(calc(-50% + 100px), 0);

}

.swiper-button-prev {
    transform: translate(calc(-50% - 100px), 0);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}







.bannerindex .swiper-pagination-bullet {
    background-color: #fff;
}









@media screen and (max-width: 768px) {

    .bannerindex .swiperBan02 .swiper-slide img {
        width: 200%;
        max-width: 200%;

    }

    .bannerindex .swiper-slide::before {
        width: 200%;
    }

    .BannerHome02 .swiper-slide::after {
        width: 200%;
    }
}


.bannerindex .swiper-slide::before {
    content: "";
    display: block;
    height: auto;
    position: absolute;
    top: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 998;
    backdrop-filter: hue-rotate(20deg) blur(10px);
}


.bannerindex .swiper-slide:nth-of-type(1):before {
    width: 43vw;
    background-image: url(https://pic03.eapple.com.tw/littlesecretclinic/bg-03.png);
    left: 0;
    aspect-ratio: 884/1001;
}


.bannerindex .swiper-slide:nth-of-type(2):before {
    width: 35vw;
    background-image: url(https://pic03.eapple.com.tw/littlesecretclinic/bg-05.png);
    right: 0;
    aspect-ratio: 677/1001;
}








.bannerindex .swiper-slide::after {
    content: "";
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2/1;
    position: absolute;
    top: 0;
    left: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 999;
}

.bannerindex .swiper-slide:nth-of-type(1):after {
    background-image: url(https://pic03.eapple.com.tw/littlesecretclinic/bg-04.svg);

}

.bannerindex .swiper-slide:nth-of-type(2):after {
    background-image: url(https://pic03.eapple.com.tw/littlesecretclinic/bg-06.svg);

}















.bannerindex .swiper-slide.swiper-slide-active:nth-of-type(1)::before {
    animation: banner-bg-1 2s cubic-bezier(0.73, 0.08, 0.11, 0.99) both;
}

.bannerindex .swiper-slide.swiper-slide-active:nth-of-type(2)::before {
    animation: banner-bg-2 2s cubic-bezier(0.73, 0.08, 0.11, 0.99) both;
}



@keyframes banner-bg-1 {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translate(-30vw, 0);
    }


    100% {
        opacity: 1;
        filter: blur(0px);
        transform: translate(0vw, 0);

    }
}



@keyframes banner-bg-2 {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translate(30vw, 0);
    }


    100% {
        opacity: 1;
        filter: blur(0px);
        transform: translate(0vw, 0);

    }
}





.bannerindex .swiper-slide.swiper-slide-active::after {
    animation: banner-font 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) both;
    animation-delay: .8s;
}




@keyframes banner-font {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}












.bannerindex .swiper-pagination-bullet {
    background-color: #fff;
}



@media screen and (max-width: 768px) {

    .bannerindex .swiperBan02 .swiper-slide img {
        width: 200%;
        max-width: 200%;

    }

    .bannerindex .swiper-slide::before {
        width: 200%;
    }

    .bannerindex .swiper-slide::after {
        width: 200%;
    }
}













/* 首頁相簿 */

.module_i_album .title_i_box {
    display: flex;
    flex-direction: column-reverse;
}

.module_i_album .title_i_box h4 {
    font-size: 60px;
    color: #1e1e1e;
    font-weight: 500;
}

.module_i_album .title_i_box h6 {
    font-size: 0;
}

.module_i_album .title_i_box h6::before {
    content: "Our Projects";
    display: block;
    color: #878787;
    font-size: 10px;
}


.show-list .item p {
    font-size: 14px;
}

.module_i_album .animated-arrow {
    display: none;
}









/* 首頁最新消息 */

.module_i_news {
    width: 100%;
    padding: 150px 50px;
    background-color: #00000012;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    margin: auto;
}

.module_i_news .title_i_box {
    width: 30%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    align-content: center;
}


.module_i_news_list {
    width: 70%;
}

.module_i_news ul {
    display: flex;
    flex-direction: column;
}


.module_i_news li {
    border-bottom: 1px #00000012 solid;
}

.module_i_news li a {
    display: flex;
    padding: 0 10px;
}

.module_i_news li a:after {
    background: #00000012;
}

.module_i_news li a::before {
    display: none;
}



.i_blog_ri {
    display: flex;
    vertical-align: top;
    padding: 5px;
    width: 100%;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
}



.i_blog_ri h5 {
    font-size: 16px;
    color: #1e1e1e;
    font-weight: bold;
}

.i_blog_ri p {
    font-size: 12px;
    color: #878787;
}




.i_blog_ri em {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
    display: none;
}



.i_blog_le {
    display: none;
}


.module_i_news .title_i_box h4 {
    font-size: 60px;
    color: #1e1e1e;
    text-align: left;
}

.module_i_news .title_i_box h4::after {
    content: "Latest News";
    display: block;
    font-size: 10px;
    color: #878787;
    letter-spacing: 5px;
}


.module_i_news .title_i_box h6 {
    font-size: 24px;
    color: #515151;
    font-weight: 800;
    letter-spacing: 12px;
    display: none;
}




.animated-arrow {
    background: transparent;
    margin-top: 30px;
    color: #5f5f5f;
    border: 0;
    border-bottom: 1px #999 solid;
}


.module_i_news .animated-arrow {
    display: none;
}

.news_list {
    max-width: 50%;
    width: 100%;
}

.news_list ul li span {
    color: #686868;
}

.news_list ul li p {
    color: #686868;
}

.news_list ul li {
    border-bottom: 1px solid #68686830;
}

.module_i_news section {
    max-width: 80%;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.i_news_b {
    max-width: 100%;
    width: 100%;
}



.i_blog_b {
    width: 100%;
    max-width: 100%;
}









@media screen and (max-width: 768px) {
    .news_list {
        max-width: 100%;
    }

    .module_i_news section {
        gap: 30px;
        padding: 0 5%;
    }

    .module_i_news .title_i_box h4::before {
        font-size: 60px;
    }

    .module_i_news .title_i_box h4 {
        font-size: 40px;
    }

    .module_i_news .title_i_box::before {
        width: 11vw;
    }

    .news_list ul li p {
        color: #ccc;
    }
}

@media screen and (max-width: 600px) {
    .news_list ul li {
        border: 0;
        border-bottom: 1px #ddd solid;
        margin-bottom: 7px;
        background: transparent;
    }
}


@media screen and (max-width: 500px) {
    .module_i_news .title_i_box h6 {}

    .module_i_news .title_i_box {
        margin-right: 0;
    }
}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}


#page {}


#content_main {
    background: #f7f7f7;
    margin-top: 100vh !important;
    min-height: 150vh;
}



#content {
    background: #fff0df;
}









/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*選單設定*/
.header_area {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 0;
    background: transparent;
}











.main_header_area {
    background: transparent;
}

.container {
    max-width: 80%;
}


/*LOGO設定*/








.nav-brand img {
    width: 100%;
    max-width: 100%;
}


.nav-brand {
    width: 100%;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.sticky .nav-brand {
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    transition-delay: .3s;
}

.nav-header {
    transition: all 0.3s;
}

.nav-header {
    position: fixed;
    opacity: 1;
    top: 0;
    left: 5%;
    max-width: 190px;
    padding: 20px 55px 30px;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}




.nav-header::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #6e8a6b;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -270px);
    border-radius: 0 0 60px 60px;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.sticky .nav-header::before {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}








/* 開場logo、選單 */






@keyframes action-logo {
    0% {
        top: 50vh;
    }

    100% {
        top: 68px;
    }
}



@keyframes action-logo-img {
    0% {
        top: 200px;
        opacity: 0;
        transform: scale(1, 0);
    }

    100% {
        top: 0px;
        opacity: 1;
        transform: scale(1, 1);
    }
}


/*  */
.header_area .main_header_area {
    background: transparent;
    width: 100%;
    opacity: 1;
    transition: all 0.5s;
}

.header_area.sticky .main_header_area {
    background: transparent;
    height: 0;
    transition: all 0.5s;
}

.header_area .me_tp_features {
    width: fit-content;
    gap: 20px;
    display: flex;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    align-items: center;
}

.header_area.sticky .me_tp_features {
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


.header_area .stellarnav .menu-toggle,
.stellarnav .call-btn-mobile,
.stellarnav .location-btn-mobile {
    display: block;
    position: relative;
    width: fit-content;
    padding: 0px;
    pointer-events: all;
    background: transparent;
    border-radius: 10px;
    transition: all 0.5s;
}

.header_area.sticky .stellarnav .menu-toggle,
.stellarnav .call-btn-mobile,
.stellarnav .location-btn-mobile {
    transition: all 0.5s;
}


.header_area .stellarnav.active .menu-toggle {
    transition: all 0.5s;
}

/* 


@keyframes action-nav {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
 */


/* 漢堡 */

.stellarnav .menu-toggle {
    text-align: center;
    opacity: 1;

}

.stellarnav .menu-toggle:after {
    content: "MENU";
    font-size: 12px;
    text-align: center;
    color: #494949;
    margin-top: 0px;
}

.stellarnav.active .menu-toggle:after {}


@keyframes action-menu {
    0% {
        opacity: 0;
        transform: translate(-100%, 0%);
    }

    100% {
        opacity: 1;
        transform: translate(0%, 0%) scale(1);
    }

}

.stellarnav.desktop .menu-toggle span.bars span {
    display: block;
    position: relative;
    width: 5px;
    height: 5px;
    border-radius: 0;
    background: #6E886B;
    margin: 0;
    left: 0;
    gap: 5px;
    transition: 0.5s;
}

.stellarnav.desktop .menu-toggle span.bars span::before,
.stellarnav.desktop .menu-toggle span.bars span::after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #494949;
    position: absolute;
}

.stellarnav.desktop .menu-toggle span.bars span::before {
    left: -10px;
}

.stellarnav.desktop .menu-toggle span.bars span::after {
    right: -10px;
}





.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(1) {
    background: #2c5097;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stellarnav.desktop .menu-toggle span.bars span:nth-child(2) {
    opacity: 0;
    transition: all 1s;
}

.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(3) {
    background: #2c5097;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}




/* 漢堡關 */

.stellarnav .menu-toggle span.bars {
    display: flex;
    top: 0;
    gap: 1px;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6px;
}

.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(1) {
    margin: 0;
    transform: rotate(35deg) scaleX(.35) translate(33px, -10.5px);
    border-radius: 50px 50px 50px 0;
    opacity: 0;
    transition: all 0.3s;
}

.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(2) {
    margin: 0;
    opacity: 1;
    background: #494949;
    width: 100%;
    transition: all 0.3s;
}

.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(3) {
    margin: 0;
    transform: rotate(-35deg) scaleX(.35) translate(32px, 10.5px);
    border-radius: 0 50px 50px 50px;
    opacity: 0;
    transition: all 0.3s;
}



.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(1) {
    left: -10px;
    opacity: 0;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(3) {
    left: 10px;
    opacity: 0;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}










/* 未開啟 */

.stellarnav.desktop>ul {
    display: flex !important;
    pointer-events: none;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: -5;
    gap: 0;
    padding: 5vh 0;
    padding-left: 35%;
    opacity: 1 !important;
    transform-origin: 50% 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
}

.stellarnav.desktop {
    width: fit-content;
    order: 3;
}


/* 開啟 */
.stellarnav.desktop.active>ul {
    pointer-events: all;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


.stellarnav.desktop>ul::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: -1;
    background-color: #fff;
    border-radius: 100%;
    transform: scale(0, 1) translate(100%, -50%);
    transform-origin: 100% 50%;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav.desktop.active>ul::after {
    transform: scale(1) translate(-50%, -50%);
    border-radius: 0;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}





.stellarnav.desktop>ul::before {
    content: "";
    display: block;
    width: auto;
    height: 100%;
    aspect-ratio: 568/1002;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    background-image: url(https://pic03.eapple.com.tw/littlesecretclinic/bg-10.jpg);
    pointer-events: none;
    transform: translate(-100%, 0);
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav.desktop.active>ul::before {
    opacity: 1;
    transform: translate(0%, 0);
    transition: all 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    transition-delay: .3s;
}





/* 購物籃 */
.tp_links {}

.box_search input[type=text] {
    display: none;
    background: url(../images/search-icon.png) no-repeat 9px center #fff;
    border: 0;
    padding: 2px 0px 4px 42px;
    width: calc(20% - 42px);
    border-radius: 10em;
    transition: all .5s;
    outline: none;
    background-color: transparent;
    border-bottom: 1px #494949 solid;
    border-radius: 0;
    transition: all 0.3s;
}

.box_search input[type=text]:hover {
    color: #494949;
    transition: all 0.3s;
}

.box_search input[type=text]:focus {
    color: #494949;
    transition: all 0.3s;
}

.shop_search_btn {
    display: none;
    background: #494949;
    color: #fff;
    font-size: 13px;
    border: none;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 4px 15px;
    cursor: pointer;
}

.box_search {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 60%;
    margin-bottom: 0;
    margin-right: 30px;
}

.me_tp_features a {
    margin: 0 0;
}

.me_tp_features a.tp_btn_cart {}

.me_tp_features a.tp_btn_cart span {
    display: none;
}

.me_tp_features a.tp_btn_notice span {
    display: none;
}


.tp_links {
    display: flex;
    width: fit-content;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links {
    pointer-events: all;
}


.tp_links a {
    color: #494949;
    font-size: 16px;
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.tp_links a:hover {
    color: #2c5097;
    transform: scale(1.2);
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}





.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links a {
    opacity: 1;
    transform: translate(0, 0);
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links::before,
.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links::after {
    opacity: 1;
    transform: translate(0, 0);
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}



.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links a:nth-of-type(2) {
    transition-delay: 0.2s;
}

.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links a:nth-of-type(3) {
    transition-delay: 0.3s;
}

.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links a:nth-of-type(4) {
    transition-delay: 0.4s;
}

.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links a:nth-of-type(5) {
    transition-delay: 0.5s;
}

.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links a:nth-of-type(6) {
    transition-delay: 0.6s;
}



.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links a i {
    transition: all 0.3s;
}

.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links a:hover i {
    color: #222;
    transition: all 0.3s;
}






/* 選項 */
.stellarnav>ul>li>a {
    width: 100%;
    margin: 0 20px;
    padding: 0;
    color: #494949;
    display: flex;
    position: relative;
    line-height: 20px;
    height: auto;
    margin: 0;
    overflow: visible;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    opacity: 1;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: flex-end;
    align-items: flex-start;
    gap: 10%;
    flex-direction: column;
}

.stellarnav>ul>li>a:hover {
    transition: all 0.3s;
}

.stellarnav>ul>li>a b {
    display: inline;
    line-height: 150%;
    height: auto;
}

.stellarnav>ul>li>a b:nth-child(1) {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: lowercase;
    color: #6E886B;
}




.stellarnav>ul>li>a b:nth-child(2) {
    font-size: 16px;
    word-break: keep-all;
    font-weight: bold;
    letter-spacing: 0.1em;
    opacity: 1;
    color: #494949;
    right: 0;
}

.stellarnav>ul>li>a:hover b:nth-child(1) {
    transition: all 0.5s;
}

.stellarnav>ul>li>a:hover b:nth-child(2) {
    opacity: 1;
    transform: translate(0px, 0px);
    transition: all 0.5s;
}


.stellarnav li {
    opacity: 1;
}

.main_header_area .container {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    justify-content: flex-end;
    background: transparent;
    border-radius: 10px;
}







.navigation {
    display: flex;
    width: fit-content;
    padding: 10px 20px;
    justify-content: flex-end;
    align-items: center;

}


.navigation::before {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background-color: #49494929;
    order: 2;
}

.navigation::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    backdrop-filter: contrast(1) blur(10px);
    background: #ffffff94;
    border-top: 1px #0000000a solid;
    border-bottom: 1px #00000017 solid;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    z-index: -1;
}






.stellarnav>ul>li>a:hover b {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
}



.stellarnav>ul>li.has-sub>a {
    padding-left: 0;
    padding-right: 0;
}




/* 選單兼具 */




/* 選單 圖片 */
/* .stellarnav > ul > li:nth-of-type(1):before{
    background-image: url(https://pic03.eapple.com.tw/foodtek/icon-45.png);
}
.stellarnav > ul > li:nth-of-type(2):before{
    background-image: url(https://pic03.eapple.com.tw/foodtek/icon-46.png);
}
.stellarnav > ul > li:nth-of-type(3):before{
    background-image: url(https://pic03.eapple.com.tw/foodtek/icon-47.png);
}
.stellarnav > ul > li:nth-of-type(4):before{
    background-image: url(https://pic03.eapple.com.tw/foodtek/icon-48.png);
}
.stellarnav > ul > li:nth-of-type(5):before{
    background-image: url(https://pic03.eapple.com.tw/foodtek/icon-49.png);
}
.stellarnav > ul > li:nth-of-type(6):before{
    background-image: url(https://pic03.eapple.com.tw/foodtek/icon-50.png);
} */



/* 選單線 延遲 */

.stellarnav li:nth-child(2):before {}

.stellarnav li:nth-child(3):before {
    animation-delay: 0.3s;
}

.stellarnav li:nth-child(4):before {
    animation-delay: 0.4s;
}

.stellarnav li:nth-child(5):before {
    animation-delay: 0.5s;
}

.stellarnav li:nth-child(6):before {
    animation-delay: 0.6s;
}

.stellarnav li:nth-child(7)::before {
    animation-delay: 0.7s;
}

.stellarnav li:nth-child(8)::before {
    animation-delay: 0.8s;
}




@keyframes line-left-right {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }

}




/* 字 動畫 */



.stellarnav>ul>li {
    display: flex;
    opacity: 0;
    transform-origin: 0% 0%;
    align-items: center;
    padding: 20px;
    width: calc(100% / 4);
}




.stellarnav>ul>li::before {
    content: "";
    display: block;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background-color: #6E886B;
    opacity: 0;
    transform: scale(0);
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav>ul>li:hover:before {
    transform: scale(1);
    opacity: 1;
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav.active>ul>li {
    animation: up 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}

.stellarnav li.has-sub>a:after {
    display: none;
}

.stellarnav>ul>li:nth-of-type(1) {
    animation-delay: 0s;
}

.stellarnav>ul>li:nth-of-type(2) {
    animation-delay: 0.05s;
}

.stellarnav>ul>li:nth-of-type(3) {
    animation-delay: 0.1s;
}

.stellarnav>ul>li:nth-of-type(4) {
    animation-delay: 0.15s;
}

.stellarnav>ul>li:nth-of-type(5) {
    animation-delay: 0.20s;
}

.stellarnav>ul>li:nth-of-type(6) {
    animation-delay: 0.25s;
}

.stellarnav>ul>li:nth-of-type(7) {
    animation-delay: 0.30s;
}

.stellarnav>ul>li:nth-of-type(8) {
    animation-delay: 0.35s;

}

/* 下拉 */
.stellarnav ul ul {
    width: 100%;
    left: 0;
    background: transparent;
}

.stellarnav li li {
    display: flex;
    border: 0;
    background: transparent;
    color: #fff;
    border-bottom: 1px #ffffff85 solid;
    transition: all 0.3s;
    flex-direction: column;
}

.stellarnav li li:nth-child(1) {}

.stellarnav li li:nth-last-child(1) {}

.stellarnav li li:hover {
    background: transparent;
    z-index: 100000;
    transition: all 0.3s;
}

.stellarnav li li a {
    padding: 15px 10px;
    display: block;
    color: #494949;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.stellarnav li li.has-sub>a {
    padding: 15px 10px;
}

.stellarnav li li a:hover {
    color: #494949;
    transition: all 0.3s;
}


@keyframes ul-show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

@keyframes up {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}
















/* 子分類 */
.stellarnav li.drop-left ul ul {
    display: flex !important;
    height: 100% !important;
    position: relative;
    left: 0;
    right: auto;
    flex-direction: column;
    align-items: flex-start;
}

.stellarnav ul ul ul li::before {
    content: "";
    display: block;
    width: 5px;
    height: auto;
    aspect-ratio: 1;
    background: #2c5096;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.stellarnav ul ul ul li a {
    padding: 5px 10px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
}

.stellarnav ul ul ul li a:hover {
    background: #00000023;
    transition: all 0.3s;
}



@media screen and (max-width: 1440px) {}



@media screen and (max-width: 1024px) {
    .stellarnav.desktop>ul {
        padding: 12vh 4% 0 72%;
    }

    .stellarnav>ul>li:nth-of-type(5) {
        margin-left: 0%;
    }


    .stellarnav>ul>li::before {
        width: 120px;
        height: 120px;
    }

    .nav-header {
        position: absolute;
        text-align: center;
    }

    .stellarnav.desktop.active>ul::after {
        width: 35%;
    }

    .tp_links {
        width: 23vw;
    }
}


@media screen and (max-width: 768px) {
    .stellarnav.mobile.left>ul {
        max-width: 100%;
        background: #111111e3;
        border: none;
        backdrop-filter: blur(5px);
    }

    .nav-header {
        z-index: 0;
    }

    .stellarnav.mobile>ul>li>a {
        display: flex;
        align-items: center;
        padding: 30px 0;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .stellarnav>ul>li>a b:nth-child(2) {
        opacity: 1;
        transform: translate(0px, 0px);
        position: relative;
        right: auto;
        left: auto;
    }

    .stellarnav li li {
        border-bottom: none;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        color: #fff;
        background: #4a3c2d;
    }

    .stellarnav .icon-close:after,
    .stellarnav .icon-close::before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile li a {
        border-bottom: none;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #494949;
        transition: all 0.3s;
    }

    .sticky .stellarnav .menu-toggle span.bars span {
        background: #666;
        transition: all 0.3s;
    }

    .nav-header {}

    .sticky .nav-header {
        opacity: 1;
        transition: all 0.3s;
    }

    .stellarnav>ul>li::before {
        display: none;
    }

    .stellarnav>ul>li {
        width: 100%;
    }

    .stellarnav.mobile>ul>li {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .stellarnav>ul>li:nth-of-type(3) {
        margin-left: 0;
    }

    .stellarnav.mobile li.open {
        background: #00000091;
        padding: 0;
    }

    .stellarnav.mobile ul {
        background: transparent;
    }

    .stellarnav li li {
        margin-bottom: 0px;
        background: transparent;
    }

    .stellarnav li li:hover {
        background: transparent;
    }

    .stellarnav li li a {
        color: #fff;
        font-weight: 1000;
        text-align: center;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        top: 30px;
        right: 50px;
    }

    .sticky .stellarnav .menu-toggle span.bars span {
        background: #494949;
    }

    .header_area.sticky .stellarnav .menu-toggle,
    .stellarnav .call-btn-mobile,
    .stellarnav .location-btn-mobile {
        top: 2%;
        transition: all 0.5s;
    }
}












/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Footer*/
.footer {
    border-top: none !important;
    padding: 100px 0px;
    height: auto;
    opacity: 1;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background: #6E8A6B;
}



.footer_menu {
    border-bottom: none !important;
    display: flex;
    justify-content: flex-start;
    gap: 3%;
}

.footer .center {
    width: 80%;
    max-width: 80%;
    padding: 0;
}

.footer_logo {
    max-width: 150px;
}

.copy {
    max-width: 80%;
    display: flex;
    background: transparent;
    color: #fff;
    border: none;
    margin-top: 0;
    border-top: 0;
    text-align: center;
    justify-content: flex-end;
    margin: 0 auto;
    font-size: 12px;
    position: absolute;
    right: 10%;
    bottom: 100px;
}

.copy a {
    color: #fff;
}

.footer_menu a:nth-child(1) {
    display: none;
}

.footer_menu a:hover {
    background: #02642F;
}

.footer_menu a {
    transition: all 0.3s;
}

.box_link {
    display: none;
}

.footer_info li p {
    width: auto;
    color: #fff;
    width: 50%;
    font-size: 14px;
}

.footer_info li p a {
    color: #fff;
}

.footer_menu a {
    display: inline-block;
    padding: 5px 11px;
    border: 0;
    margin: 0;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
    background: transparent;
}

.footer_menu a:hover {
    background: #fff;
    color: #000;
}

.footer_info {
    padding: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 0;
    justify-content: center;
    gap: 140px;
}


.center {
    max-width: 90%;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

.footer_info li:nth-child(1) {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    padding: 0;
    width: 100%;
    gap: 10px;
}

.footer_info li:nth-child(2) {
    width: 100%;
    padding: 10px 0;
    margin-top: 40px;
    display: none;
}

.footer_info li:nth-child(2)::before {
    /* content: ""; */
    display: block;
    width: 100%;
    height: 1px;
    background-color: #454442;
}

.footer_info li p.tel:before {}

.footer_info li p.add {}

.footer_info li p.add2 {}

.footer_info li p.add:before {}

.footer_info li p.add2:before {}

.footer_info li p.add::after {
    display: block;
}

.footer_info li p.add2::after {
    display: block;
}


.footer_logo img {
    filter: contrast(0) brightness(5);
}









/* 浮動 */

.info_fix {
    width: auto;
    box-sizing: border-box;
    position: fixed;
    bottom: 70px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: flex-end;
    justify-content: flex-end;
    transition: all 0.7s;
    z-index: 9999999;
    transform: translate(80px, 0);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.headerSticky .info_fix {
    opacity: 1;
    transform: translate(0px, 0);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);

}

.info_fix:hover {
    width: auto;
    transition: all 0.7s;
}

.info_fix_links a i {
    font-size: 20px;
    color: #494949;
}

.info_fix_links {
    display: flex !important;
    background: transparent;
    width: 50px;
    padding-bottom: 0;
    overflow: hidden;
    justify-content: flex-end;
    flex-direction: column;
    border-radius: 5px;
    box-shadow: 1px 1px 5px #0000003d;
}

.info_fix>span {
    display: none;
}




.info_fix_links a {
    display: block;
    width: 100%;
    height: 50px;
    overflow: visible;
    transition: .3s;
    background: transparent;
    margin-bottom: 0;
}

.info_fix_links a:hover {
    background: transparent;
    color: #dbc5a4;
}

.info_fix_links a.info_fix_mail {
    display: none;
}




.info_fix_links a span {
    width: 20px;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.info_fix_links a span::before {
    background-size: contain;
}



.info_fix_links p {
    text-align: center;
    font-weight: 900;
    writing-mode: vertical-rl;
}




.info_fix_links a.info_fix_default {
    display: none;
}



/* 門診時間 */


.info_fix_links a.time {
    display: flex;
    height: fit-content;
    padding: 40% 20%;
    background: #6e8a6b94;
    border-radius: 0 0 0 5px;
    justify-content: center;
}

.info_fix_links a.time:hover {
    background: #6e8a6bda;


}



.info_fix_links a.time p {
    color: #fff;
    font-size: 16px;
    writing-mode: vertical-lr;
    letter-spacing: 7px;
}


.info_fix_links a.time img {
    position: absolute;
    width: 40vw;
    height: 22vw;
    bottom: 0;
    right: 59px;
    pointer-events: none;
    opacity: 0;
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    transform: translate(5vw, 0);
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.info_fix_links a.time:hover img {
    transform: translate(0, 0);
    opacity: 1;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}























#to_top {
    color: #494949;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-top: 0;
    transition: all 0.7s;
    display: none !important;
    opacity: 0 !important;
}

#to_top:hover i {
    transform: translate(0, -5px);
    transition: all 0.7s;
}

#to_top i:before,
#to_top i:after {
    background: #494949;
}



@keyframes footer-text {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}






@media screen and (max-width: 1440px) {
    .footer_info ul {
        text-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer_info li:nth-child(1) {
        width: 100%;
    }

    .footer_info li:nth-child(2) {
        width: 100%;
    }
}




@media screen and (max-width: 768px) {
    .footer_menu a {
        display: inline-block;
        padding: 5px 11px;
        border: 0;
        margin: 10px 5px;
        font-size: 14px;
        line-height: 100%;
        color: #fff;
        background: transparent;
        border-bottom: 1px #fff solid;
        width: 43%;
    }

    .footer_info li:nth-child(1) {
        flex-wrap: wrap;
    }

    .footer_menu {
        flex-wrap: wrap;
    }
}




/* 開場MENU 浮動 */



.info_fix {
    opacity: 1;
}



@keyframes action-footer {
    0% {
        opacity: 0;
        transform: translate(100%, 0%);
    }

    100% {
        opacity: 1;
        transform: translate(0%, 0%) scale(1);
    }

}








/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 100%;
    height: 935px;
    margin: 0 auto;
    justify-content: flex-start;
    padding: 100px 5vw;
    position: relative;
    background-position: bottom;
    background-size: 100% auto;
    background-repeat: no-repeat;
    gap: 5%;
    align-items: flex-start;
    background: transparent;
    filter: grayscale(0.5);
}

.banner::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}









.banner h5 {
    display: flex;
    font-size: 40px;
    color: #fff;
    font-weight: 500;
    flex-direction: column;
    align-items: flex-start;
    text-transform: uppercase;
    position: absolute;
    bottom: 17vh;
    left: 10vw;
    text-wrap: nowrap;
    letter-spacing: 20px;
    z-index: 2;
    gap: 5vh;
}





/*  */
.banner.banblog::before {
    background-image: url(https://pic03.eapple.com.tw/foodtek/banner-07.jpg);

}


/*  */



/*  */
.banner.banDesign::before {
    background-image: url(https://pic03.eapple.com.tw/foodtek/banner-06.jpg);
}

.banner.banDesign_c {
    display: none;
}

/*  */



/*  */
.banner.banF::before {
    background-image: url(https://pic03.eapple.com.tw/foodtek/banner-08.jpg);
}

/*  */





.banner.banA {}

.banner.banB {
    display: none;
}

.banner.banC {
    display: none;
}

.banner.banD {}

.banner.banE {}

.banner.banblog {}


@media screen and (max-width: 1024px) {
    .banner::after {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .banner {
        flex-direction: column;
        padding: 90px 5% 100px;
    }

    .banner h5 {
        width: 75%;
        bottom: 22vh;
        font-size: 20px;
        gap: 10px;
    }

    .banner h5::after {
        font-size: 12px;
    }


}














/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */




.Prods_Wrap {
    width: 100%;
}

.Prods_Menulists {
    width: 100%;
}


.Prods_lists ul {
    grid-template-columns: repeat(4, 1fr);
}

.Prods_path dd {
    display: none;
}


.Prods_Menulists ul {
    gap: 10px;
}

.Prods_Menulists>ul>li {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 5px 20px;
    background: #a68870;
    border: 1px #4a3c2d69 solid;
    border-radius: 10px;
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.Prods_Menulists>ul>li:hover,
.Prods_Menulists>ul>li.active {
    background: #7f634d;
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}



.Prods_Menulists li a {
    color: #fff;
}

.Prods_Menulists>ul>li:hover a,
.Prods_Menulists>ul>li.active a {
    color: #fff;
}

dl.State .MoreDets a {
    background: #a68870;
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

dl.State .MoreDets a:hover {
    background: #4a3c2d;
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.Prods_Wrap .Prods_lists dl.State {
    height: fit-content;
}


.Prods_Menulists>ul>li.active>a {
    background: transparent;
}


.Prods_Menulists li a:hover {
    background: transparent;
}

.product_page .main_part {
    width: 100%;
    max-width: 90%;
    margin: auto;
    padding: 0;
}

.product_page .show_content {
    margin: auto;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3%;
}


.product_menu_list {
    width: 100%;
    max-width: 15%;
    background: #000000c4;
    border: 1px #4c953457 solid;
    border-radius: 10px;
    padding: 30px 15px;
    position: sticky;
    top: 30%;
}

.Pd_ViewThunbs {
    height: auto;
    aspect-ratio: 1/1;
    padding-bottom: 0;
    overflow: hidden;
}


.Prods_lists li img {
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.Prods_lists li:hover img {
    transform: scale(1.2);
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}





.inquiry_a1,
.inquiry_a2,
.inquiry_a3,
.inquiry_a4,
.sidebarBtn .Pd_Line_Boxed {
    background: linear-gradient(45deg, #8d9667 0, #cbcfaa 100%);
}


.product_info_page .Prods_Wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.product_main {
    width: 100%;
}


.page {
    margin: 80px auto 40px;
    font-size: 16px;
    color: #4a3c2d;
}

.page strong,
.page a:hover {

    background-color: #8c1111;
}



.products-list .more {
    border: 0;
    background: transparent;
    color: #4a3c2d;
    position: relative;
    opacity: 1;
    transition: all 0.3s;
    height: fit-content;
    margin-top: 10px;
    border: 1px #4a3c2d solid;
    font-weight: bold;
    display: none;
}

.products-list .pic img {
    max-width: 100%;
    animation: shop-img 2s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    transition: all 0.3s;
}


@keyframes shop-img {
    0% {
        opacity: 0;
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
        -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
        transform: translate(-20px, 0);
    }

    30% {
        opacity: 1;
        clip-path: polygon(0 0, 20% 0, 5% 100%, 0 100%);
        -webkit-clip-path: polygon(0 0, 20% 0, 5% 100%, 0 100%);
        transform: translate(-20px, 0);
    }

    100% {
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: translate(0, 0);
    }

}

.products-list a:hover .pic img {
    filter: brightness(0.7);
    transform: scale(1.1);
    transition: all 0.5s;
}

.products-list .name {
    font-size: 20px;
    color: #4a3c2d;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
    text-align: left;
    font-weight: bold;
}

.products-list .name span {
    font-size: 16px;
    color: #a59f96;
}

.products-list .price b.ori_price {}

.products-list .price b {
    color: #d0ba99;
    font-size: 20px;
    text-align: right;
}



.products-list .price {
    text-align: center;
    position: relative;
}


@media screen and (max-width: 1440px) {
    .products-list .price b {}
}



@media screen and (max-width: 768px) {
    .products-list .price b {
        font-size: 16px;
    }
}

/*外層*/



.product-layer-two li::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #a6887029;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0, 1);
    z-index: 0;
    transform-origin: 0 0;
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}

.product-layer-two li:hover:before,
.product-layer-two li.active::before {
    transform: translate(-50%, -50%) scale(1);
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}

.product-layer-two li ul {
    background: #000;
}

.product-layer-two li li {
    background: transparent;
}

.product-layer-two li li a {
    background: transparent;
}


.product-layer-two li a {
    color: #a39d94;
    border: 0;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 15px;
    transition: all 0.3s;
    background-color: transparent;
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}

.product-layer-two li:hover a {
    color: #4a3c2d;
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}


.product-layer-two li.active a {
    border: 0;
}






/*內層*/




.lastPage {
    background: #a68870;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
}

.nextaction {
    background-color: #4a3c2d;
}

.lastaction {
    color: #fff;
    background-color: #4a3c2d;
}

.sidebarBtn {
    padding: 15px;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: none;
    background: none;
}



/*內液*/



.product_info_page .show_content {
    margin: auto;
    padding: 10px 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5%;
}





.product_info_page .main_part {
    width: 100%;
    max-width: 90%;
    margin: auto;
    padding: 50px 0px;
}

.nextaction {
    background-color: #c1b09c;
}

.lastaction {
    color: #fff;
    background-color: #c1b09c;
}

.bx-wrapper .bx-viewport {
    border: none;
    left: 0px;
    background: transparent;
}

.product_pic #bx-pager a {
    border: none;
}

#number_area {
    text-align: center;
}

.product-wrapper {
    width: calc(100% - 300px - 5%);
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebarBtn {
    padding: 0;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: 0;
    background: transparent;
    margin: 30px 0;
}

.sidebarBtn h2 {
    color: #4a3c2d;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding: 0px 40px;
    width: fit-content;
    background-color: transparent;
    margin: 0 auto;
    position: relative;
    letter-spacing: 2px;
    line-height: 70px;
}

.sidebarBtn h2::after {}

.pd_tabTitle li {
    border-bottom: 0;
}

.pd_tabTitle li.activeTab a {
    font-size: 20px;
    font-weight: bold;
    color: #4a3c2d;
    width: 100%;
}

.pd_tabTitle li.activeTab::after {
    height: 1px;
    background: #4c95345c;
}


.blog_in_page .edit {
    max-width: 1200px;
    COLOR: #494949;
    font-weight: 500;
    margin: 0;
}

.blog_in_page .edit * {
    COLOR: #494949;
    font-weight: 500;
}

.blog_in_page .edit body.plugin {
    background-color: #fff;
}



.articel_mainPic {
    width: 100%;
    max-width: 100%;
}

.inquiry_a3 {
    background: #8c1111;
    font-weight: bold;
}




.inquiry_a3:hover {
    background: #420707;
}

a.pdinfo_tel {
    display: inline-flex;
    background-color: #334035;
    align-items: center;
    width: calc(100% / 2 - 2px);
}


a.pdinfo_tel:hover {
    background-color: #151b16;
}






.sidebarBtn {
    color: #bebebe;
}

.sidebarBtn .price {
    color: #4a3c2db6;
    font-size: 24px;
    margin-top: 0;
    border-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.prod_tabs {
    width: 100%;
}

.sidebarBtn .price::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #4c95345c;
    margin: 10px 0 20px;
}

.sidebarBtn .sp_price {
    color: #4a3c2d;
}

.product_info {
    display: none;
}

.product_info li span {
    color: #bebebe;
}

#bx-pager h6 {
    display: none;
}

ul.prod li:nth-of-type(2) {
    display: none;
}

ul.prod li h3.prod-thumb {
    color: #d6bfa9;
    font-family: 'Noto Sans TC';
    font-size: 24px;
    text-align: left;
    background: transparent;
    padding: 0;
}

ul.prod li h3.prod-thumb::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #c3b29e;
    margin: 20px 0;
}

ul.prod {
    list-style: none;
    display: block;
    width: 100%;
}

ul.prod li .prod-panel {
    color: #dec7b1a6;
    text-align: left;
}

ul.prod li {
    margin-bottom: 40px;
    color: #bebebe;
}

.toShare {
    display: none;
}



/*  */
.half_box {
    width: 100%;
    float: left;
    padding-right: 0px;
}

ul.prod li span {
    color: #bebebe;
}

.qaform .breakF {
    border: 1px #939393 solid;
    background: #00000061;
    color: #fff;
}

.half_box li.btn_blankTop {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
}

.productBtn {
    text-align: center;
    width: 40%;
    background-color: transparent;
    background-image: none;
    margin-top: 10px;
    padding-left: 0;
    border: 1px #939393 solid !important;
    color: #bebebe;
    transition: all 0.5s;
}

.productBtn:hover {
    background-color: #00000071;
    transition: all 0.5s;
}

.sidebarBtn form:nth-of-type(2) {
    display: flex;
    gap: 5%;
    justify-content: center;
}


.inquiry_a1 {
    background: #a68870;
}

.inquiry_a2 {
    background: #a68870;
}


.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover,
.inquiry_a4:hover,
.sidebarBtn .Pd_Line_Boxed:hover {
    background: #4a3c2d;
}





/*  */

.prod_related {
    background: #a6887040;
    padding: 25px 15px;
}




.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 30px;
    color: #4a3c2d;
}

.related_list li a {
    display: block;
    padding: 0;
    background: transparent;
    transition: all 0.3s;
}

.related_list li a:hover {
    background: #a68870;
    transition: all 0.3s;
}

.related_list li a p {
    font-size: 16px;
    color: #d1cabf;
    margin: 10px 0;
    font-weight: bold;
}

.related_list li {
    background: transparent;
    transition: all 0.5s;
}

.related_list li:hover {
    transform: scale(1.05);
    transition: all 0.5s;
}

.related_list li p {
    background: transparent;
    font-weight: bold;
}




.mobile_product_name {
    display: none;
}

.sidebarBtn .price span {
    display: block;
    font-size: 20px;
    margin: 0 10px;
}


/* 結帳 */

.separate_title {
    font-size: 30px;
    color: #4a3c2d;
    padding: 10px 0 10px 40px;
    background: transparent;
}

.formbox_form li .form__label {
    color: #4a3c2d;
}

/*  */
.shopping-cart .cart_head {
    background: #42512a;
    color: #fff;
}

.shopping-cart .row {
    position: relative;
    height: auto;
    margin: 25px 0;
    clear: both;
    background-color: transparent;
    color: #4a3c2d;
}

.shopping-cart .cell {
    background: transparent;
    color: #4a3c2d;
}

.shopping-cart .cell a {
    background: transparent;
    color: #4a3c2d;
}

.total_amount li {
    margin: 10px 0;
    color: #4a3c2d;
}

.form label.Bigcheck {
    color: #4a3c2d;
}

.form label {
    color: #4a3c2d;
}

.declaration {
    background: transparent;
}



@media screen and (max-width: 1440px) {}

@media screen and (max-width: 1024px) {
    .products-list .item {}

    .Prods_lists ul {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-list {
        grid-template-columns: repeat(auto-fill, minmax(calc(100% / 3 - 20px), 1fr));
    }

    .product_info_page .product-layer-two {
        grid-template-columns: repeat(3, 1fr);
    }
}



@media screen and (max-width: 768px) {
    .product_info_page .main_part {
        max-width: 80%;
    }

    .Prods_lists ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .car_page .information_left {
        display: none;
    }

    .product-layer-two {
        display: none;
    }

    .product-layer-two li {
        width: calc(100% / 3 - 2%);
        text-align: center;
        margin: 10px 1%;
    }

    .product-layer-two li a {
        text-wrap: pretty;
        word-break: keep-all;
    }

    .product-layer-two li:hover>a {
        padding-left: 20px;
    }

    .products-list {
        width: 100%;
        padding: 20px 0;
        margin-top: 30px;
        max-width: 100%;
    }

    .products-list .item {}

    .product_info_page .product-layer-two {
        display: none;
    }

    .product-wrapper {
        left: 0px;
    }

    .products-list .item {}

    .sidebarBtn h2 {
        font-size: 16px;
        padding: 20px 40px;
        letter-spacing: 2px;
        line-height: 2;
    }
}

@media screen and (max-width: 500px) {
    .product_page .main_part {
        max-width: 85%;
    }

    .products-list {
        grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 20px), 1fr));
    }

    .products-list .more {
        font-size: 14px;
    }

    .products-list .item {
        width: 100%;
    }

    .product_info_page .main_part {
        width: 100%;
        max-width: 85%;
        margin: auto;
        padding: 50px 0px;
    }

}







/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現*/
.blog_back a.article_main_header_area_back {
    background: #1e1e1e;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: transparent !important;
}

.share_page .edit {
    text-align: justify;
    line-height: 180%;
}

.subbox_item a:before,
.subbox_item a:after {
    transition: 0.3s;
}

.blog_le .accordion>li {
    width: 100%;
    position: relative;
    text-align: left;
    border-bottom: 1px #00000026 solid;
    transition: all 0.3s;
}

.blog_box_edit {
    line-height: 180%;
    text-align: justify;
}

h4.blog_category_title {
    text-align: justify;
    color: #1e1e1e;
    font-size: 16px;
    display: none;
}

.link a {
    width: 100%;
    display: block;
    padding: 15px 10px;
}

.accordion li .link {
    padding: 0;
    border: 0;
}

.accordion li+li .link {
    border-top: 0;
}

.blog_page .main_part {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0px;
}

.clearfix:before,
.clearfix:after {
    display: none;
}




/* 選單 */
.blog_box {
    min-height: 20vw;
    padding: 100px 5%;
    display: flex;
    flex-direction: row;
    gap: 3%;
    flex-wrap: wrap;
}






.blog_le {
    width: 20%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    /* padding: 0; */
    align-content: flex-start;
}

h5.blog_le_t {
    display: none;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 80px;
    width: auto;
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
}

.blog_search {
    width: 100%;
    position: relative;
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-start;
}

.blog_search form {
    width: 80%;
    position: relative;
}

.blog_le .accordion {
    margin: auto;
    overflow: visible;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-around;
    padding: 10px 0 0;
    border-radius: 0;
    background: transparent;
    border: 0;
}

.accordion li .link a {
    font-size: 16px;
    color: #686868;
    font-weight: 800;
    padding: 15px 10px;
    border: 0;
    transition: all 0.3s;
}

.accordion li .link a::before {
    content: "";
    display: block;
    width: 1px;
    height: 1px;
    background-color: #4a3c2d;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.accordion li .link a:hover:before,
.accordion>li.on_this_category .link a::before {
    width: 100%;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #4a3c2d !important;
    transition: all 0.3s;
}




.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    border-radius: 0;
    border-bottom: 1px #686868 solid;
    padding: 10px 35px 10px 10px;
    background: transparent;
}

.blog_search input[type=search]:focus,
.blog_search input[type=search]:valid {
    top: -20px;
    font-size: 16px;
    color: #333;
}

.blog_search input[type=submit] {
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
    width: 38px;
    height: 38px;
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    transform: scaleX(-1);
}

.blog_search input[type="submit"]:hover {
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    color: #fff;
    transition: all 0.3s;
}

.blog_search input[type=search]:focus {
    color: #ccc;
}








/* 內容 */
.blog_ri {
    width: 77%;
    padding: 0;
    min-height: 75vh;
}

.blog_subbox {
    align-content: center;
    grid-template-columns: repeat(3, 1fr);
}

.blog_list_ri h5 {
    color: #4a3c2d;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.blog_s .subbox_item img {
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.subbox_item:hover img {
    transform: translate(-50%, -50%) scale(1.05);
    filter: brightness(0.8);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.blog_in_page .main_part {
    width: 100%;
    max-width: 100%;
    padding: 0 55px 100px;
    margin: 0 auto;
}



.subbox_item a:after {
    display: none;
}

.subbox_item a:before {
    display: none;
}

.blog_list_le {
    height: 0;
    width: 100%;
    line-height: 0;
    padding-bottom: calc(100% / 4 * 3);
    overflow: hidden;
    position: relative;
}

.subbox_item {
    margin: 0;
    margin-bottom: 50px;
}

.subbox_item a {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    background: #bababa14;
    flex-direction: row;
    gap: 20px;
}

.blog_list_ri {
    width: 100%;
    margin-left: 0;
    padding: 20px 5%;
    min-height: 170px;
    position: relative;
    opacity: 1;
    transition: all 0.3s;
}

.subbox_item a:hover .blog_list_ri {
    opacity: 1;
    transition: all 0.3s;
}

.blog_list_le img {
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog_list_ri em {
    font-size: 14px;
    color: #494949;
    font-style: normal;
    display: block;
    margin: 0;
    position: absolute;
    bottom: 40px;
    right: 10%;
}

.blog_list_ri p {
    font-size: 14px;
    color: #494949;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
    line-height: 160%;
}


.blog_box_edit {
    color: #fff !important;
    max-width: 1200px;
    margin: 0 auto;
}

.blog_back {
    width: 100%;
}

.blog_back a.article_btn_back {
    background: #4a3c2d;
}

.blog_back a.article_btn_next,
.blog_back a.article_btn_prev {
    background: #a68870;
}

.related_list li a img {}


.news_related {
    background: #00000012;
}

.news_related_list li a {
    padding: 0;
    background: transparent;
}

.news_related_list li a p {
    font-size: 14px;
    color: #1e1e1e;
    line-height: 2;
    font-weight: bold;
    margin-top: 10px;
}

.news_related h6 span:before {
    font-size: 20px;
    color: #1e1e1e;
}




@media screen and (max-width: 1024px) {
    .blog_subbox {
        grid-template-columns: repeat(2, 1fr);
    }
}





@media screen and (max-width: 768px) {
    .blog_le {
        display: none;
    }

    .blog_box {
        padding: 0;
    }

    .blog_ri {
        width: 100%;
    }

    .subbox_item {
        width: 100%;
        border: 0;
        margin: 0;
    }

    .subbox_item img {
        transform: translate(-50%, -50%);
        filter: none;
        transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    }

    .subbox_item a .blog_list_ri {
        opacity: 1;
        position: relative;
        transition: all 0.3s;
    }

    .blog_page .main_part {
        padding: 0 5%;
    }

    .blog_list_ri em {
        bottom: 25px;
    }

    .blog_search {
        width: 100%;
        margin-bottom: 0px;
    }

    .blog_search form {
        width: 100%;
    }

    .blog_list_ri h5 {
        font-size: 16px;
    }

    .blog_subbox {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog_le .accordion {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    .blog_subbox {
        grid-template-columns: repeat(1, 1fr);
    }
}








/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*作品展示*/

.StoreProjsList {
    padding: 100px 50px;
}



/* 選單 */

.projsTabs ul {
    gap: 20px;
    border-bottom: 1px #00000026 solid;
}

.projsTabs li {
    padding: 15px 20px;
    position: relative;
}

.projsTabs li::after {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    background-color: #4a3c2d;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.projsTabs li:hover:after,
.projsTabs li.Now:after {
    width: 100%;
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


.projsTabs li a {
    font-size: 14px;
    color: #494949;
    transition: all 0.5s;
}

.projsTabs li a:hover {
    color: #4a3c2d;
    font-weight: bold;
    transition: all 0.5s;
}

.projsTabs li.Now a {
    color: #494949;
    font-weight: 1000;
}

/* 品項 */

.projsTabs ul {
    gap: 20px;
}




.StoreProjs_Post li {
    background: transparent;
    width: calc(100% / 3);
    padding: 20px;
    margin: 0;
    border: 0;
}

.StoreProjs_Post li h4 {
    font-size: 14px;
    color: #494949;
    letter-spacing: 1px;
    height: fit-content;
    text-align: center;
}

.StoreProjs_Post li>a::after {
    transition: 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.StoreProjs_Post li>a:hover:after {
    background: #0000008a;
    transition: 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


.StoreProjs_Post li section {
    height: 100%;
}


.StoreProjs_Post li>a section h6 strong {
    display: block;
    transform: translate(0, -50px);
    opacity: 0;
    transition: 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.StoreProjs_Post li>a:hover section h6 strong {
    transform: translate(0);
    opacity: 1;
    transition: 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.StoreProjs_Post li section h6 em {
    display: block;
    transform: translate(0, -50px);
    opacity: 0;
    transition: 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.StoreProjs_Post li a:hover section h6 em {
    transform: translate(0);
    opacity: 1;
    transition: 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    transition-delay: 0.2s;
}

/* 內頁 */
.ProjsDetail_Title h4 {
    font-size: 30px;
    color: #494949;
}

.ProjsDetail_Intro h6 strong {
    color: #494949;
    font-size: 20px;
    line-height: 1.5;
    padding: 5px;
    width: 60px;
}

.ProjsDetail_Intro h6 {
    font-size: 16px;
    color: #494949;
}

.ProjsDetail_Intro em.TxtHouseType {
    font-size: 16px;
    color: #494949;
}

.ProjsDetail_Title p {
    color: #494949;
}

.ProjsDetail_Title p a {
    background-color: #494949;
}

.ProjsDetail_Title p a::before {
    background: transparent;
}

.ProjsDetail_Bottom {
    background: transparent;
}

.ProjsDetail_Bottom a.ProjsBtn_Prev,
.ProjsDetail_Bottom a.ProjsBtn_Next {
    background: #4a3c2d;
}

.ProjsDetail_Bottom a.ProjsBtn_Back {
    background-color: #4a3c2d;
}

.ProjsDetail_Viewpoint {
    height: fit-content;
}





/* 其他作品 */

.ProjsDetail_OtherObjs li {
    width: 100%;
    background: transparent;
    padding: 50px 5%;
    width: calc(100% / 6 - 30px);
    margin: 0;
    padding: 0;
}

.ProjsDetail_OtherObjs li>a {
    padding: 0;
    height: auto;
    aspect-ratio: 16 / 9;
}

.ProjsDetail_OtherObjs li h6 {
    color: #494949;
    font-weight: bold;
}

.ProjsDetail_OtherObjs li h6:after {
    background: #49494965;
}

.ProjsDetail_OtherObjs li h6:before {
    background: #494949;
}

.ProjsDetail_infoBox {
    width: 100%;
}


@media screen and (max-width: 1024px) {
    .StoreProjs_Post li {
        width: calc(100% / 2);
    }
}

@media screen and (max-width: 768px) {
    .ProjsDetail_OtherObjs li {
        width: calc(50% - 20px);
    }

    .ProjsDetail_OtherObjs {
        justify-content: center;
        padding: 50px 10px;
        gap: 3%;
    }

    .StoreProjs_Post li {
        width: calc(100% / 1);
    }

    .StoreProjsList {
        padding: 50px 20px;
    }

    .StoreProjs_Item {
        display: none;
    }

    .ProjsDetail_ImgView ul {
        display: block;
        column-count: 2;
        column-gap: 10px;
    }

    .ProjsDetail_ImgView ul li {
        padding: 0;
        width: auto;
    }

    .ProjsDetail_ImgView ul li a {
        width: 100%;
        padding: 0;
        height: fit-content;
    }

    .ProjsDetail_ImgView ul li a img {
        position: relative;
    }


    .ProjsDetail_OtherObjs li>a {
        padding: 0;
        height: auto;
        aspect-ratio: 4/3;
    }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part,
.album_class_page .main_part,
.album_info_page .main_part {
    max-width: 100%;
    padding: 100px 120px;
}

.album_page .show-list {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 50px;
    box-sizing: border-box;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(18, minmax(0, 1fr));
    grid-auto-rows: clamp(230px, 18vw, 380px);
    column-gap: 40px;
    row-gap: 80px;
}


.album_page .show-list .item:nth-child(1) {
    grid-column: 1 / 11;
    grid-row: 1 / 3;
}


.album_page .show-list .item:nth-child(2) {
    grid-column: 11 / 15;
    grid-row: 1 / 2;
}


.album_page .show-list .item:nth-child(3) {
    grid-column: 15 / 19;
    grid-row: 1 / 2;
}


.album_page .show-list .item:nth-child(4) {
    grid-column: 11 / 19;
    grid-row: 2 / 3;
}


.album_page .show-list .item:nth-child(n + 5) {
    grid-column: span 6;
    grid-row: auto;
}


.show-list .item {
    position: relative;
    min-width: 0;
    min-height: 0;
}




.show-list .item>a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: #1e1e1e;
}


.show-list .show_pic {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}


.show-list .show_pic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);

}

.show-list .item:hover img {
    transform: scale(1.1);
    filter: brightness(0.5);
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.show-list .show_pic .overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    display: none;
}


.show-list .show_name {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    margin: 15px 0 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 3px;
    white-space: nowrap;
    color: #888888;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.show-list .item:hover .show_name {
    color: #1e1e1e;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}










/* 第二層 */

.show-list {
    grid-template-columns: repeat(3, 1fr);
}

.subalbum-menu h2 {
    color: #1e1e1e;
}


.other_album {
    display: none;
}

.other_subalbum li a p {
    color: #1e1e1e;
    font-weight: bold;
}

.other_album .show-list .show_pic {
    aspect-ratio: 16/9;
}













/* 第三層 */


.pic-list {
    display: block;
    column-count: 3;
    width: 100%;
    margin: 0 auto;
    gap: 30px;
}

.pic-list .item {
    width: 100%;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 0;
    margin: 0;
}

.pic-list .show_pic {
    aspect-ratio: auto;
}

.pic-list .item h6 {
    padding: 15px;
}











/* -----------------------------------最新消息------------------------------ */


.share_page .main_part,
.promotions_page .main_part {
    display: flex;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 50px 6%;
    border-radius: 40px;
    gap: 2%;
    flex-wrap: wrap;
}

.share_page #content,
.promotions_page #content {
    padding: 0px 0px 50px;
}


.promotions_page .main_part .show_content {
    width: 60%;
    margin: 0;
}

.promotion_title {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.34);
}

.promotion_title .time {
    width: 100%;
}

.promotion_title h2 {
    font-size: 30px;
    color: rgb(112, 112, 112);
    line-height: 1.5;
    height: fit-content;
}

.promotion_title span {
    color: rgb(128, 128, 128);
    border: 0px;
    padding: 2px 7px;
    margin: 0px;
    width: 100%;
}

.promotion_title em {
    color: rgb(128, 128, 128);
    border: 0px;
    padding: 0px;
    margin: 0px;
    height: fit-content;
    word-break: keep-all;
    order: 3;
}

.other_promotion {
    display: flex;
    width: 38%;
    padding: 20px;
    grid-template-columns: 1fr;
    background: rgba(255, 255, 255, 0.39);
    border-radius: 5px;
    gap: 10px;
    position: sticky;
    top: 0;
    flex-direction: column;
}

.other_promotion li a::before,
.other_promotion li a::after {
    display: none;
}

.other_promotion li a {
    border-width: medium medium 1px;
    border-style: none none solid;
    border-color: currentcolor currentcolor rgba(112, 112, 112, 0.21);
    border-image: initial;
    display: flex;
    align-items: center;
    padding: 25px 10px;
}

.other_promotion li a:hover {
    background: transparent;
}

.other_promotion li a::before {
    content: "";
    display: block;
    background: #a39377de;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 5px;
    border: 0px;
    z-index: -11;
    transition: 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.other_promotion li a:hover::before {
    background: #6b5e48;
    transition: 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.other_promotion li a::after {
    content: "read more";
    display: block;
    width: fit-content;
    height: fit-content;
    border: 0px;
    position: absolute;
    top: 50%;
    right: 10px;
    opacity: 0;
    transform: translate(0%, -50%);
    transition: 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.other_promotion li a:hover::after {
    width: fit-content;
    height: fit-content;
    opacity: 1;
    transition: 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.other_promotion li:nth-child(2n) a::after {
    color: #a59577;
}

.other_promotion li:nth-child(2n+1) a::after {
    color: #fff;
}

.other_promotion .pmtTitle span {
    color: #fff;
}

.other_promotion .pmtTitle h3 {
    font-size: 20px;
    color: #fff;
    margin: 0px;
}

.other_promotion .pmtTime {
    display: flex;
    color: #fff;
    margin-right: 20px;
    align-items: center;
}

.other_promotion .pmtTime cite {
    font-size: 18px;
    margin-right: 20px;
}

.other_promotion .pmtTime span {
    float: right;
    font-size: 13px;
    padding: 2px 10px;
    border: 1px solid #fff;
    border-radius: 30px;
}

.P4_A {
    position: relative;
    z-index: 9;
}

@media screen and (max-width: 768px) {
    .promotion_title h2 {
        font-size: 20px;
    }

    .other_promotion li a::after {
        display: none;
    }

    .other_promotion .pmtTitle h3 {
        font-size: 16px;
    }
}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他分頁*/
.promotion_title h2 {
    border-bottom: 0;
}

.promotion_title {
    width: 100%;
    border-bottom: 1px solid #1e1e1e24;
}



@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        display: none;
    }

    .footer.with_shopping_mode {
        padding: 30px 0 70px;
    }

    #to_top {
        bottom: 60px;
    }

    .nav-menu {
        margin: 0;
    }

    .nav-menu>li:not(.tp_links) {
        padding-right: 0;
    }

    .nav-dropdown>li {
        text-align: left;
    }

    .nav-dropdown>li>a {
        width: calc(100% - 45px);
    }

    /*手機版LOGO設定*/
    .footer_logo {
        margin-left: unset;
        margin: auto;
        text-align: center;
    }

    .footer_logo>a {
        display: inline-block;
        width: 100px;
    }

}



/* --------------------------------------------------- */
/* 影片 */



.video-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.video-layer-two li a {
    border: none;
    background: transparent;
    color: #fff;
    transition: all 0.5s;
}

.video-layer-two li a:hover {
    background-color: #1e1e1e;
    color: #fff;
    transition: all 0.5s;
}

.video_page .main_part {
    padding: 50px 0 100px;
}

.page {
    width: 100%;
}

.video-layer-two>li {
    border-bottom: 1px #ffffff65 solid;
    padding: 0;
}

.video-layer-two>li a {
    padding: 10px;
}

.video-list .vidTitle {
    color: #fff;
}





@media screen and (max-width: 768px) {
    .video_menu_list {
        display: none;
    }
}

/* -------------------------------------------------------- */




/* -------------------------------------------------------- */



/*  */


.contact_page #content {
    display: flex;
    flex-direction: row;
}




.contact_page .header_area::before {
    background: transparent;
}

.contact_page .nav-header img {
    filter: contrast(0) brightness(100);
}


.banner.banC {
    display: flex;
    position: sticky;
    padding: 0;
    top: 0;
    width: 40%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    background-image: url(https://pic03.eapple.com.tw/foodtek/bg-08.jpg);
    justify-content: center;
}

.banner.banC h5 {
    display: flex;
    width: 80%;
    align-items: flex-start;
    text-align: left;
    top: 24%;
    left: 50%;
    transform: translate(-50%, 0px);
    display: none;
}




/*  */




.contact_le_map {
    display: none;
}

.contact_page .main_part {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 100px 12vw;
}

.blank_letter {
    display: flex;
    text-align: left;
    font-size: 20px;
    color: #888888;
    letter-spacing: 5px;
    align-items: center;
    padding-top: 0;
    flex-wrap: wrap;
    font-family: "Noto Serif TC", serif;
    justify-content: space-between;
}

.blank_letter.f::before {
    content: "CONTACT";
    display: block;
    font-size: 40px;
    color: #1e1e1e;
    width: 100%;
    font-weight: 500;
    font-family: serif;
}


.blank_letter.i {
    display: flex;
    text-align: left;
    letter-spacing: 5px;
    align-items: flex-end;
    margin-left: 0;
    font-size: 0px;
    color: #888888;
    margin-bottom: 20px;
}

.list_before.info li {
    color: #1e1e1e;
    display: flex;
    margin: 5px 0;
    padding-left: 0;
    letter-spacing: 0.1em;
    font-size: 14px;
}

.contact_form li .form__label {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    text-align: left;
    margin-left: 0;
    padding-right: 0;
    vertical-align: top;
    color: #1e1e1e;
    margin: 0;
    position: relative;
    font-size: 14px;
    font-weight: bold;
}

.contact_content {
    margin: auto;
    padding: 0;
    max-width: 100%;
}

.contact_content form {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

.contact_content .information_left {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 120px;
    position: relative;
}



.contact_content .information_right {
    width: 100%;
    padding: 0;
    background: transparent;
}

.clearfix:before,
.clearfix:after {
    display: none;
}

.contact_form {
    display: flex;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 15px;
    color: #e2e2e2;
    flex-wrap: wrap;
    gap: 40px 100px;
    margin-top: 40px;
}

.contact_form li input.noborder {
    width: 100%;
    border: 0;
    background-color: transparent;
    border-bottom: 1px #0000003d solid;
    padding: 10px 0;
    color: #888888;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


.contact_form li input.noborder:hover,
.contact_form li input.noborder:focus-visible {
    background-color: #ffffff21;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}






.contact_form li textarea.noborder {
    border: 0;
    background-color: transparent;
    border-bottom: 1px #0000003d solid;
    color: #888888;
    height: 40px;
    width: 100%;
}

.contact_form li textarea.noborder:hover,
.contact_form li textarea.noborder:focus-visible {
    background-color: #ffffff21;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.contact_form li {
    width: calc(100% / 2 - 50px);
    padding: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: flex-start;
    position: relative;
    gap: 10px;
}

.contact_form li .form__insert {
    text-align: left;
    color: #888888;
}

.contact_form li:has(input[type=checkbox]) .form__insert,
.contact_form li:has(input[type=radio]) .form__insert {
    grid-template-columns: repeat(auto-fit, minmax(13px, 13px) minmax(140px, 1fr));
}


.form select,
::picker(select) {
    appearance: base-select;
}


.form select {
    background: #ffffff14;
    border: 0;
    border-radius: 5px;
    color: #e2e2e2;
    width: 100%;
    color-scheme: dark;
    padding: 10px;
}

::picker(select) {}


.form select option {
    background: #ffffff14;
    color: #e2e2e2;
    padding: 10px;

}

.form select option:checked {
    background: #ffffff14;
    color: #e2e2e2;

}

select:focus {
    color: #e2e2e2;
    background: #ffffff14;
    border: 0;
}

.contact_form li:nth-last-of-type(2) {
    padding: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    margin: 0;
    flex-wrap: wrap;
}

.contact_form li:nth-last-of-type(2) .form__label {
    width: fit-content;
    margin: 0;
    margin-right: 20px;
}

.contact_form li:nth-last-of-type(2) .form__insert {
    display: flex;
    width: auto;
    flex-direction: row;
    flex-wrap: nowrap;
}

.contact_form li.last blockquote {
    color: #666;
}

.contact_form li.last cite {
    background: #e61f62;
    color: #e2e2e2;
}

.red {
    color: #888888;
    letter-spacing: 0;
}

.blank_letter.f span {
    margin-left: 20px;
}

.contact_form li.last {
    display: flex;
    width: 100%;
    text-align: center;
    margin-top: 0;
    padding-left: 0;
    flex-direction: row;
    justify-content: flex-end;
}

.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: relative;
    font-weight: bold;
    letter-spacing: 2px;
    margin-right: 15px;
    color: #1e1e1e;
}

.info_LINE:before {
    letter-spacing: -2px;

}






.list_before {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin-top: 30px;
    gap: 10px;
}


.list_before.info li.info_TEL2 {
    order: 1;
}

.contact_le_nomap {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 510px;
    border-radius: 20px;
    overflow: hidden;
}







.PHONE:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/foodtek/icon-14.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}



.MAIL:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/foodtek/icon-15.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.ADD:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/foodtek/icon-16.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.last .animated-arrow {
    background: #ffffff14;
    border: 0;
}

.last .animated-arrow.otherSty {
    background: #ffffff14;
    border: 0;
}




@media screen and (max-width: 768px) {
    .contact_content form {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact_content .information_left {
        width: 100%;
    }

    .contact_content .information_right {
        width: 100%;
    }

    .contact_page .main_part {
        padding: 100px 50px;
    }

    .contact_form {
        flex-direction: column;
        align-items: center;
    }

    .contact_form li {
        width: 100%;
    }

    .contact_le_nomap {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .blank_letter {
        flex-wrap: wrap;
    }

    .contact_page .main_part {
        margin-top: 0;
    }

    .contact_page .stellarnav {
        background: transparent;
    }

    .contact_content .information_left::before {
        display: none;
    }
}


@media screen and (max-width: 600px) {
    .contact_form li .form__label {
        background-color: transparent;
    }

    .contact_page .main_part {
        padding: 100px 20px;
    }

    .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 {
        width: 45px;
        text-wrap: nowrap;
    }
}

.accordion li+li .link {
    border: 0;
}