@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libertinus+Serif:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
body{
    font-family:  "Noto Serif TC","Libertinus Serif", serif;
}
.path p, .path p a{ display: none;}

.edit{ padding: 0px 0;}
.info_fix{ display: none;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/* 開場首頁跟浮動 */
.pageIndex #page .info_fix{
    opacity: 0;
    animation: show 1.5s ease-in-out forwards;
    animation-delay: 1.5s;
}
.pageIndex #page .stellarnav .menu-toggle span.bars{
    opacity: 0;
    animation: show 1.2s ease-in-out forwards;
    animation-delay: 1.2s;
}
.pageIndex #page #content_main{
    opacity: 0;
    animation: show 1.5s ease-in-out forwards;
    animation-delay: 2.5s;
}

.pageIndex #page .footer{
    opacity: 0;
    animation: show 1.5s ease-in-out forwards;
    animation-delay: 2.5s;
}


@keyframes show {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}



/* 開場動畫 */

.bannerindex { position: relative; }

.bannerindex::after {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/juji/open-logo.png);
    background-size: contain;
    width: 242px;
    height: 298px;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    z-index: 1000000000000000000001;
    pointer-events: none;
    animation: banner-logo 3s forwards;
}

.bannerindex::before {
    content: "";
    display: block;
    background: #70011c;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1000000000000000000000;
    /* animation: banner-bg 2.6s forwards; */
     backdrop-filter: blur(10px);
     animation: banner-show-off 3s linear forwards;
}

.swiper-banner::after {
    content: "";
    display: block;
    height: 0px;
    background-color: transparent;
    pointer-events: none;
    position: fixed;
    bottom: 240px;
    z-index: 500;
    opacity: 0;
}

@keyframes banner-logo {
    0% {
        opacity: 0;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
    }
    20% {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1.3) rotate(360deg);
    }
    40% {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(0.9) rotate(360deg);
    }
    60% {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1.1) rotate(360deg);
    }
    80% {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1) rotate(360deg);
    }
    100% {
        opacity: 0;
        filter: blur(10px);
        transform: translate(-50%, -50%) scale(0.8) rotate(360deg);
    }
}

@keyframes banner-bg {
    0% {}
    50% {}
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}



@keyframes banner-show-off {
    0%{
        opacity: 1;
        background-color: #802828;
        backdrop-filter: blur(20px);
    }
    50%{
        opacity: 1;
        background-color: #802828e1;
        backdrop-filter: blur(20px);
    }
    75%{
        opacity: 1;
        background-color: #802828a0;
        backdrop-filter: blur(20px);
    }
    100%{
        opacity: 0;
        background-color: transparent;
        }
}


/*反白顏色*/
::-moz-selection{
    background-color: #b5a174;
    color: #6b1e1e;
  }
  ::selection{
    background-color: #b5a174;
    color: #6b1e1e;
  }
  
  body{
      overflow: overlay;
  }
  &::-webkit-scrollbar {
      background: #6b1e1e;
      width: 7px;
  }
  &::-webkit-scrollbar-button {
      display: none;
      background: #6b1e1e;
      border-radius: 0;
    }
  &::-webkit-scrollbar-track-piece {
      background: #6b1e1e;
    }
  
  &::-webkit-scrollbar-thumb {
      border-radius: 4px;
      background-color: #b5a174;
    }
  
  &::-webkit-scrollbar-track {
      box-shadow: transparent;
}



/* swiper pagination */
.swiper-pagination{
    bottom: 30px;
}
.swiper-pagination-bullet{
    opacity: 0.85;
}
.swiper-pagination-clickable .swiper-pagination-bullet-active{
    background: #fff;
    width: 32px;
    border-radius: 5px;
    opacity: 1;
}

@media screen and (max-width:500px) {
    .swiper-pagination-bullet{ width: 6px;height: 6px;}
    .swiper-pagination-clickable .swiper-pagination-bullet-active{ width: 18px;}
}



#to_top{ background: unset; border: 2px solid #afafaf; color: #afafaf; padding-top: 0px; line-height: 10px; position: fixed; bottom: 60px;left: unset; right:12px;box-shadow:unset;}
#to_top:hover{ background: #8c8c8c; color: #fff; border: 0px;}
#to_top i.top:before, #to_top i.top:after{ display: none;}

#to_top{
    -webkit-animation: topmoveTop 3000ms infinite;
    animation: topmoveTop 3000ms infinite;
}

@keyframes topmoveTop {from{transform:translateY(20px);}55%{transform:translateY(0px);}60%{transform:translateY(10px);}70%{transform:translateY(0px);}to{transform:translateY(20px);}}
@-webkit-keyframes topmoveTop {from{transform:translateY(20px);}55%{transform:translateY(0px);}60%{transform:translateY(10px);}70%{transform:translateY(0px);}to{transform:translateY(20px);}}
.topmoveTop {/* -webkit-animation: topmoveTop 3000ms infinite; */animation: topmoveTop 3000ms infinite;}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
  

.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(1)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/juji/bantext1-2.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100000000000000;
   animation: banner-title 3s ease-in-out infinite;
}

.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(2):before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/juji//bantext2-2.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100000000000000;
   animation: banner-title 3s ease-in-out infinite;
}


.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(3):before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/juji//bantext3-2.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100000000000000;
   animation: banner-title 3s ease-in-out infinite;
}

@keyframes banner-title {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(1)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/juji/bantext1-1.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100000000000000;
}

.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(2)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/juji/bantext2-1.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100000000000000;
}

.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(3)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/juji/bantext3-1.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100000000000000;
}


.pageIndex .swiper-wrapper .swiper-slide.swiper-slide-active::after {
    animation: font-in-text 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

@keyframes font-in-text {
    0% {
        transform: translate(0, 5vw);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }

}

@keyframes banner-text {
    0% {
        height: 95%;
        opacity: 0;
    }

    100% {
        height: 100%;
        opacity: 1;
    }
}



.pageIndex .swiper-wrapper .swiper-slide img {
    transform: none !important;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*選單設定*/
.nav-header{
    max-width: 180px;
    position: fixed;
    z-index: 123;
    top: 0px;
    left: 0%;
    transition: all 0.3s;
    opacity: 0;
    animation: show 3.5s ease-in-out forwards;
    animation-delay: 2.6s;
}
.nav-brand {
    display: block;
    /* margin-top: -10px; */
    margin-left: 12px;
    transition: all 2s;
    padding: 24px;
}
.nav-brand img{
    max-width: 220px;
}
.header_area .nav-brand::after{
    content: '';
    position: absolute;
    transition: inherit;
    z-index: -1;
    bottom: 6px;
    left: 0px;
    height: 88%;
    width: 159%;
    background-image: url(https://pic03.eapple.com.tw/juji/logo-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    animation: strokeReveal 3.6s ease-out forwards;
    animation-delay: 3s;
}
@keyframes strokeReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

/* 
@keyframes electric {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(2); }
}
.plaque.electric {
  animation: electric 0.4s infinite;
} */



/* .header_area.sticky .nav-brand::after{
    height: 100%;
    bottom: 16px;
    transition: 0.5s;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
} */

.main_header_area .container{ max-width: 100%;}

.header_area{
    padding: 0;
}


.header_area .main_header_area {
    position: fixed;
    background: transparent;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: all 0.5s;
}
.header_area.sticky .main_header_area {
    transition: all 0.5s;
}

/* 購物車搜尋 */
.me_tp_features{ margin-top: 30px; position: absolute; right: 8%; opacity: 0;
    animation: show 1.5s ease-in-out forwards;
    animation-delay: 1.5s;}

.tp_links{ display: none;}
.shop_search_btn{ background: #a98b56;}

.me_tp_features a.tp_btn_cart span,.me_tp_features a.tp_btn_notice span{ display: none;}
.me_tp_features a.tp_btn_cart,.me_tp_features a.tp_btn_notice{ color: #fff;}
.me_tp_features a{ transition: 0.5s;}
.me_tp_features a:hover{ color: #dd302a;}

.header_area.sticky .me_tp_features a.tp_btn_cart,.header_area.sticky .me_tp_features a.tp_btn_notice{ color: #d0ba85;}
.header_area.sticky .me_tp_features a:hover.tp_btn_cart,.header_area.sticky .me_tp_features a:hover.tp_btn_notice{ color: #dd302a;}



.header_area .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
    display: block;
    position: fixed;
    top: 14px;
    right: 1%;
    transition: all 0.5s;
    pointer-events: all;
}
.header_area.sticky  .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
    top: 27px;
    transition: all 0.5s;
}


/* ham */
.stellarnav .menu-toggle{
    text-align: center;

}
.stellarnav .menu-toggle:after{
    content: "MENU";
    display: none;
    font-size: 12px;
    text-align: center;
    color: #DF8B2C;
    font-family:  "Noto Serif TC","Libertinus Serif", serif;
    margin-top: 10px;
}

/* .stellarnav .menu-toggle span.bars::before{
    content: "MENU";
    font-size: 13px;
    color:#2b2b2b;
    display: block;
    font-family:  "Libertinus Serif", serif;
    margin-bottom: 9px;
    margin-right: 6px;
} */

.stellarnav.desktop .menu-toggle span.bars span {
    display: block;
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 15px;
    background: #fff;
    margin: 3px;
    left: 0;
    transition: 0.5s;
}
.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(1) {
    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: 1;
    /* width: 25px; */
     transition: 0.6s;
}
.stellarnav.desktop .menu-toggle span.bars span:nth-child(3) {
    opacity: 1;
    /* width: 50px; */
     transition: 0.6s;
}
.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(1),.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(3) {
    width: 0px;
     transition: 0.6s;
}
.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(2){
    /* width: 50px; */
     transition: 0.6s;
}



/* 漢堡關 */
.stellarnav .menu-toggle span.bars {
    top: -7px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    background:#9d7c52;
    padding: 20px 16px;
     /* padding: 15px 16px 10px; */
}

.pageIndex #page .stellarnav .menu-toggle span.bars{ 
    background: #9d7c52;
}

/* 未開啟 */

.stellarnav.desktop > ul {
    display: none !important;
    margin: 0;
    padding: 0;
    text-align: center;
    background: transparent;
    position: relative;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: -5;
    transition: all 0.3s;
}
.stellarnav.desktop{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    pointer-events: none;
    transition: 1s;
}
.stellarnav.desktop::before{
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: 1s;
}



/* 開啟 */
.stellarnav.desktop.active > ul {
    display: flex !important;
    transition: all 0.3s;
    /* flex-direction: column; */
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    pointer-events: all;
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 200px 8% 60px;
    padding-top: 130px;
    /* align-items: center; */
    align-items: flex-start;
}

.stellarnav.desktop.active > ul::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0;
    background-color: transparent;
     background-image: url(https://pic03.eapple.com.tw/juji/footer-bg.jpg);
    background-size: contain;
    background-repeat: repeat;
    backdrop-filter:blur(8px);
    animation: nav-left 0.5s forwards;
}

/* .stellarnav.desktop.active > ul::after{
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/oneballco/nav-bg.png );
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 10000000000000000;

} */
.stellarnav.desktop.active{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-content: flex-end;
}
.stellarnav.desktop.active::before{
    content: "";
    width: 100%;
    height: 100%;
    /* background-color: #fff; */
    border-radius: 0;
    /* backdrop-filter: blur(5px); */
    opacity: 1;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}


@keyframes nav-left {
    0%{
        width:  0;
    }
    100%{
        width:  100%;
    }
    
}

@keyframes line-up {
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}




/* 圖片顯示 */
.stellarnav.desktop.active::after {
    content: "";
    width: 100%;
    height: 300px;
    background-image: url(https://pic03.eapple.com.tw/juji/nav-pic.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    bottom:-20%;
    left: -100%;
    transform: translate(0, -50%);
    opacity: 0;
    animation: photo-left-right 1.2s linear forwards;
    animation-delay: 0.8s;
}


@keyframes photo-left-right {
    0% {
        left: -100%;
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
      }
      100% {
        left: 50%;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }
}


/* ham close */
.stellarnav.desktop.active .menu-toggle:hover span.bars{
    padding: 20px 0px;
}
.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(1) {
    transform: rotate(-49deg);
    left:30px;
    top: 0px;
    transition: all 1s;
    background: #FFF;
    width: 40px;
    height:5px;
}
.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(3) {
    transform: rotate(225deg);
    transition: all 1s;
    background: #FFF;
    width: 40px;
     height:5px;
    top: 0PX;
    left:-30px;
}
.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(2) {
    opacity: 0;
    transition: all 1s;
}


/* 選項 */
.stellarnav > ul > li > a {
    margin: 0 20px;
    padding-left: 0;
    color: #fff;
    display: flex;
    text-transform: uppercase;
    position: relative;
    font-size: 26px;
    line-height: 20px;
    height: auto;
    margin: 0;
    overflow: visible;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    opacity: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    /* align-items: flex-start; */
    align-items: center;
    letter-spacing: 5px;
    transform-origin: 0 0;
    font-family: "Noto Serif TC", sans-serif;
    transition: 0.5s;
    /* writing-mode: vertical-lr; */
    text-align: end;
}
.stellarnav > ul > li > a b {
    /* line-height: 15px; */
    /* height: 20px; */
    height: 180px;
    line-height: 35px;
}
.stellarnav > ul > li > a b:nth-child(1) {font-weight: 800;margin-bottom: 5px;}
.stellarnav > ul > li > a b:nth-child(2) {
    font-size: 16px;
    color: #dd302a;
    word-break: keep-all;
     font-family: "Libertinus Serif", serif;
    display: block;
    transition: 0.5s;
}

.stellarnav > ul > li > a:hover{
    transform: translateY(12px);
}

.stellarnav li {
    opacity: 1;
    /* width: 100%; */
    /* width: 33%; */
}
.stellarnav > ul > li::before {
    content: "";
    display: none;
    width: 0%;
    height: 1px;
    margin: 15px 0;
    background-color: #43453d21;
    animation: line-left-right 1s forwards linear;
}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
}

.stellarnav > ul > li > a:hover b {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
}

/* 數字 */
.stellarnav > ul > li > a:before{
    content: "Ⅰ";
    display: block;
    font-size: 20px;
    font-family:  "Libertinus Serif", serif;
    font-weight: bold;
    text-align: center;
    color: #8e6942dc;
    position: relative;
    top: 5px;
}

.stellarnav > ul > li:nth-of-type(2) > a:before{
    content: "Ⅱ";
}
.stellarnav > ul > li:nth-of-type(3) > a:before{
    content: "Ⅲ";
}
.stellarnav > ul > li:nth-of-type(4) > a:before{
    content: "Ⅳ";
}
.stellarnav > ul > li:nth-of-type(5) > a:before{
    content: "Ⅴ";
}
.stellarnav > ul > li:nth-of-type(6) > a:before{
    content: "Ⅵ";
}


/* 
.stellarnav > ul > li > a:after{
    content: "";
  position: absolute;
  bottom: 68px;
  display: block;
  width: 170px;
  height: 140px;
  background-image: url(https://pic03.eapple.com.tw/oneballco/nav-01.png);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  opacity: 0;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
        transition: 0.3s;
}

.stellarnav > ul > li.has-sub > a:after,.stellarnav > ul > li.has-sub > a:after{
    content: "";
  position: absolute;
  bottom: 68px;
  display: block;
  width: 170px;
  height: 140px;
  background-image: url(https://pic03.eapple.com.tw/oneballco/nav-01.png);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  opacity: 0;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
        transition: 0.3s;
} */
/* 
.stellarnav > ul > li:nth-of-type(2) > a:after{
    background-image: url(https://pic03.eapple.com.tw/oneballco/nav-02.png);
}
.stellarnav > ul > li:nth-of-type(3) > a:after{
    background-image: url(https://pic03.eapple.com.tw/oneballco/nav-03.png);
}
.stellarnav > ul > li:nth-of-type(4) > a:after{
    background-image: url(https://pic03.eapple.com.tw/oneballco/nav-04.png);
}
.stellarnav > ul > li:nth-of-type(5) > a:after{
    background-image: url(https://pic03.eapple.com.tw/oneballco/nav-05.png);
} */

.stellarnav > ul > li.has-sub > a{ padding-right: 0px;}

.stellarnav > ul > li > a:hover:after,.stellarnav > ul > li.has-sub > a:hover:after{
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
opacity: 1;
-webkit-transition-delay: 0s;
    transition-delay: 0s;
}

/* animate word */
.stellarnav > ul > li{
    opacity: 0;
    animation: slideInRight 1.5s forwards;
    animation-delay: 0.5s;
    /* padding-bottom: 36px;
    padding-left: 15px; */
    padding-right: 0;
    /* margin: 32px 0px; */
    margin: 0px 32px;
    writing-mode: vertical-lr;
}

/* .stellarnav > ul > li:nth-child(2) {
    animation: slideInUp 1s forwards;
    animation-delay: 0.5s;
}
.stellarnav > ul > li:nth-child(3) {
    animation: slideInUp 1s forwards;
    animation-delay: 1s;
}
.stellarnav > ul > li:nth-child(4) {
    animation: slideInUp 1s forwards;
    animation-delay: 1.5s;
}
.stellarnav > ul > li:nth-child(5) {
    animation: slideInUp 1s forwards;
    animation-delay: 2s;
}
.stellarnav > ul > li:nth-child(6) {
    animation: slideInUp 1s forwards;
    animation-delay: 2.5s;
}
.stellarnav > ul > li:nth-child(7) {
    animation: slideInUp 1s forwards;
    animation-delay: 3s;
}
.stellarnav > ul > li:nth-child(8) {
    animation: slideInUp 1s forwards;
    animation-delay: 3.5s;
} */

@keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
  
    100% {
        opacity: 1;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
  }
/* @keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
  
    from {
      opacity: 0;
      transform: translate3d(3000px, 0, 0) scaleX(3);
    }
  
    60% {
      opacity: 1;
      transform: translate3d(-25px, 0, 0) scaleX(1);
    }
  
    75% {
      transform: translate3d(10px, 0, 0) scaleX(0.98);
    }
  
    90% {
      transform: translate3d(-5px, 0, 0) scaleX(0.995);
    }
  
    100% {
    opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  } */


/* 下拉 */
.stellarnav ul ul {
    border-radius: 5px;
    left: -155px;
    top: 0;
    background: #2c383d;
    box-shadow: 1px 1px 5px #000000b3;
    display: none!important;
}
.stellarnav li li {
    display: block;
    border: 0;
    margin-bottom: -1px;
    background: transparent;
    transition: all 0.3s;
}


.stellarnav li li:nth-child(1) {
}
.stellarnav li li:nth-last-child(1) {
    border-radius: 0 0 5px 5px;
}
.stellarnav li li:hover {
    background: rgba(0, 0, 0, 0.551);
    z-index: 100000;
    transition: all 0.3s;
}

.stellarnav li li a {
    padding: 15px 10px;
    display: block;
    color: #EAE3CE;
    font-size: 14px;
    transition: all 0.3s;
}
.stellarnav li li:hover > a {
    color: #DF8B2C;
    letter-spacing: 1.1px;
    transition: all 0.3s;
}


/* 下拉二層 */

.stellarnav ul ul ul {
    top: 0;
    left: 240px;
}
.stellarnav li.has-sub > a:after{
    display: none;
    border-top: 0px;
    top: unset;
    right: unset;
    margin-left: 0px;
}

@keyframes ul-show {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
    
}


  /* 漢堡條 */
  .stellarnav .menu-toggle span.bars span {background: #DF8B2C; width: 32px; height: 2.5px;}
  .stellarnav .menu-toggle:after { color: #DF8B2C;}
  
  /* close menu 拉出來 */
  .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu{
      background: #D8842C;
      color: #FFE8D5;
    }
    .stellarnav .icon-close:before{
      border-bottom: solid 3px #FFE8D5;
    }
    .stellarnav .icon-close:after{
      border-bottom: solid 3px #FFE8D5;
    }
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{
      background: #ffffffcf;
      backdrop-filter:blur(10px);
    }
    .stellarnav a.dd-toggle .icon-plus:before{
      /* border-bottom: solid 3px #B8B8B8; */
      display: none;
    }
    .stellarnav a.dd-toggle .icon-plus:after{
      /* border-bottom: solid 3px #B8B8B8; */
      display: none;
    }
    .stellarnav.mobile > ul > li > a.dd-toggle{
      padding: 11px;
      top: 14px;
    }
    .stellarnav.mobile > ul > li > a.dd-toggle:before{
        display: none;
    }
    .stellarnav.mobile li.open{
      background: #384a53d5;
    }
    .stellarnav.mobile ul ul{
      width: 100%;
      position: relative;
      left: 0;
    }
    .stellarnav.mobile > ul > li{
      border-bottom: 0px;
    }
  
    .stellarnav.mobile li a{ border-bottom: 0px;}
  
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{max-width: 100%;}

@media screen and (max-width:1400px) {
    .nav-brand img{ max-width: 180px;}
    .header_area .nav-brand::after{ height: 83%; width: 138%;}

}
@media screen and (max-width:1100px) {
    .nav-brand img{ max-width: 80%;}
    .header_area .nav-brand::after{ width: 80%; height: 80%;}

}
@media screen and (max-width:1024px) {
    .nav-header{
        left: -3%;
    }
    .nav-brand img{ width: 72%;}
    .header_area .nav-brand::after{ left: 0px;}
}
@media screen and (max-width:768px) {
    .pageIndex #page .nav-brand{ display: none;}
    .stellarnav > ul > li{
        padding-bottom: 10px;
        padding-top: 10px;
    }
    .stellarnav > ul > li > a b:nth-child(2){
        opacity: 1;
    }
    .header_area .stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile{
        top: 5px;
    }
    .header_area.sticky .stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile{
        top: 15px;
        background: #ffffffe3;
        padding: 5px;
        box-shadow: 0px 0px 7px #e8be909e;
    }
    .stellarnav > ul > li > a:hover{
        transform: translateX(100px);
    }
    .stellarnav li{ width: 80%;}
    .stellarnav.mobile > ul > li > a{ padding-left: 20px; }
    .stellarnav > ul > li > a:before{ top: 42px; left: -30px; color: #f7b32c1a;} 
    .stellarnav > ul > li.has-sub > a:after{ display: block;width: 135px; height: 100px;bottom: -8px; left: -82px; }
    .stellarnav > ul > li > a:after,.stellarnav > ul > li.has-sub > a:after{ width: 106px; height: 85px;bottom: -8px; left: -71px;}
    .stellarnav > ul > li.has-sub > a:after{ display: block!important; width: 81px!important;}
    .stellarnav > ul > li > a:hover{ transform: translateX(100px); padding-left: 80px; overflow: visible;}
    .stellarnav > ul > li:nth-of-type(2) > a:before{ left: -46px;}

}

@media screen and (max-width:500px) {
    .stellarnav li{ width: 100%;}
    .stellarnav .menu-toggle span.bars::before{ display: none;}
    .stellarnav .menu-toggle span.bars{ top: 11px;}
    .header_area.sticky .stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile{ background: transparent; box-shadow: unset; padding: 0px;}
    .nav-brand{ display: none;}
}
@media screen and (max-width:450px) {
    .stellarnav > ul > li > a:before{ left: 31px;}
    .stellarnav > ul > li:nth-of-type(2) > a:before{ left: 17px;}

}
@media screen and (max-width:360px) {
    .stellarnav > ul > li > a:after,.stellarnav > ul > li.has-sub > a:after { width: 73px; height: 63px; bottom: -3px; left: -80px;}
    .stellarnav > ul > li > a:hover{ padding-left: 20px;}
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



.footer:before{
    content: "";
    display: block;
    max-width: 354px;
    height: 174px;
    background-image: url(https://pic03.eapple.com.tw/juji/f-top-pic.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: center;
   /* animation: mooncakeSwing 3.5s ease-in-out infinite; */
    position: relative;
    top: -119px;
    left: 50%;
    transform: translate(-50%, 0);
}

@keyframes mooncakeSwing {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(3deg);
  }
  75% {
    transform: rotate(-3deg);
  }
}

.footer { 
    background: transparent;
    background-image: url(https://pic03.eapple.com.tw/juji/footer-bg.jpg);
    background-size: contain;
    background-repeat: repeat;
    padding: 0px 0 0;
}
/* .footer_logo { width: 260px; }
.footer_logo img { max-width: 260px; width: 100%; filter: brightness(0) invert(1);} */
.footer_logo { max-width: 260px;}
.footer_logo {
    background: url(https://pic03.eapple.com.tw/juji/f-logo.png) no-repeat;
    background-size: contain;
}
.footer_logo img {    opacity: 0;}
.footer_info { padding: 0; display: flex; flex-direction: column; align-items: center; margin-top: -98px;
    /* padding-top: 48px; */
}
.footer_info ul { width: calc(100% - 300px); padding: 0; display: flex; flex-wrap: wrap; align-items: center;}

/*footer_info*/
.footer_info li {
    text-align: right;
    padding: 0px;
}
.footer_info li:nth-child(1) { width: 50%; padding: 10px 10px 0; text-align: left; display: flex; justify-content: center; flex-wrap: wrap; flex-direction: column;}
.footer_info li p { display: inline; margin: 0 20px; color: #fff; padding: 5px 0px;}
.footer_info li p a { color: inherit;}

.footer_info li:nth-child(2){ width: 50%;}

.footer_info li p.add2:before{ content: '營業時間：';}

.footer_info li p:nth-child(2) { order: 1;}
.footer_info li p:nth-child(1) { order: 2;}
.footer_info li p:nth-child(3) { order: 3;}
.footer_info li p:nth-child(4) { order:4;}


/*footer_menu*/
.footer_info li:nth-child(3) { display: inline-block; width: 100%; vertical-align: top; text-align: center;}
.footer_menu { margin-top: 10px; text-align: center; /*display: grid; grid-template-columns: repeat(auto-fit, minmax(min(130px,100%), 1fr)); gap: 5px;*/}/*footer按鈕最小寬度100px*/
.footer_menu a { margin: 5px; padding: 5px 20px; background: transparent; text-align: center; border: none;  text-align: center; color: #d0b467; width: 12%; line-height: 22px; position: relative;}
.footer_menu a:last-child { border-right: none;}
.footer_menu a:hover { background: transparent; color: #fff; }
.footer_menu a:nth-child(1){ display: none;}

.footer_menu a:after{
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 0px;
    top: 3px;
    right: 3px;
    background-color: #fff;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    -webkit-transition:all 0.8s;
    transition: all 0.8s;
}

.footer_menu a:hover:after{
    height: 90%;
}


.box_link{ display: none;}

/*版權*/
.copy { background: transparent; color: #bc0226; border: none; margin-top: 20px;}
.copy a { color: #bc0226; transition:all 0.3s;}
.privacyLinks a+a { border-left: 1px solid #bc0226;}

@media screen and (max-width:937px) {
    .footer_info ul{
        width: calc(100% - 100px);
    }
}
@media screen and (max-width: 768px) {
    /*footer*/

    .footer_info { justify-content: center;}
    .footer_logo { text-align: center;}
    .footer_info ul { flex-direction: column;}
    .footer_info li p { display: block; text-align: center;}
    .footer_info li:nth-child(1) { width: 100%; border-right:none;}
    .footer_info li:nth-child(3) { width: 100%;}
    .footer_info li:nth-child(2){ width: 85%;}
    .footer_menu a{ width: 11%;}
}
@media screen and (max-width: 600px) { 
    /*聯絡icon*/
    .box_link { text-align: center;}
}
@media screen and (max-width:550px) {
    .footer_menu a{ width: 12%; padding: 5px 8px;}

}
@media screen and (max-width:456px) {
    .footer_menu a{ width: 10%;}

}
@media screen and (max-width:430px) {
    .footer_info li:nth-child(1){ padding: 0px 0px 0;}
    .footer_info li:nth-child(2){ width: 70%;}
}
@media screen and (max-width:392px) {
   .footer:before { max-width: 250px; height: 123px;}
   .footer_info ul{ width: 100%;}
}

@media screen and (max-width:333px) {
    .footer_menu a{ border-right: 0px;  padding: 5px 26px 5px 15px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product_menu_list { display: none;} 
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {}
.banner h5 { }
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





.car_page .information_left {
    display: block;
}
body.car_page .footer_info li p:before{
    position: initial;
    display: inline;
}
.contact_le_map a{background: #2a93d8; }




@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
.footer.with_shopping_mode { padding:30px 0 55px; }
#to_top { bottom:90px;}
}

@media screen and (max-width: 600px) { 
}




