@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=Josefin+Sans:ital,wght@0,100..700;1,100..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",  "Josefin Sans", sans-serif;
}
.path p, .path p a{ display: none;}
.edit{ padding: 0px 0;}
.info_fix { display: none;}


#to_top{ background: unset; border: 2px solid #818587; color: #818587; padding-top: 0px; line-height: 10px; position: fixed; bottom: 60px;left: unset; right:12px;box-shadow:unset;}
#to_top:hover{ background: #A7B3BD; 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 #content_main { background: #0F3864;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


body{ overflow-x: hidden;}


.bannerindex-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: clip;
    z-index: 9999;
    pointer-events: none;
}

/* 圖片容器：負責動畫 */
.bannerindex {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bannerZoomIn 1.5s ease-out forwards;
    filter: blur(20px);
    transform: scale(2);
    opacity: 0;
}

/* 動畫關鍵幀 */
@keyframes bannerZoomIn {
    0% {
        opacity: 0;
        transform: scale(2);
        filter: blur(20px);
    }

    60% {
        opacity: 1;
        transform: scale(1.05);
        filter: blur(6px);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}


.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/valleybarbertw/bantext1-1.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100000000000000;

}

.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/valleybarbertw/bantext2-1.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100000000000000;

}

.pageIndex .swiper-wrapper .swiper-slide.swiper-slide-active::before{
       animation:font-in-text 4.2s cubic-bezier(.25, .8, .25, 1) forwards;
}


@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/valleybarbertw/bantext1-2.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100000000000000;
    opacity: 0;
    
}

.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/valleybarbertw/bantext2-2.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 {
   opacity: 0;
  animation:  slide-in-right 0.6s ease-out forwards;
  animation-delay: 1s;
}


@keyframes slide-in-right {
  0% {
    opacity: 0;
    transform: translateX(20px); /* 從右邊一點 */
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rightToCenterScale {
  from {
    opacity: 0;
    transform: translateX(100px) scale(1.3);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes sway {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
  75% { transform: rotate(-1deg); }
  100% { transform: rotate(0deg); }
}

@keyframes font-in-text {
    0% {
    transform: translateY(80px);
    opacity: 0;
  }
  60% {
    transform: translateY(-40px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes banner-text {
    0% {
        height: 112%;
        opacity: 0;
    }

    100% {
        height: 100%;
        opacity: 1;
    }
}



.pageIndex .swiper-wrapper .swiper-slide img {
    transform: none !important;
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*反白顏色*/
::-moz-selection{
    background-color: #37597d;
    color: #0C1F2F;
  }
  ::selection{
    background-color: #37597d;
    color: #0C1F2F;
  }
  
  body{
      overflow: overlay;
  }
  &::-webkit-scrollbar {
      background: #0C1F2F;
      width: 7px;
  }
  &::-webkit-scrollbar-button {
      display: none;
      background: #0C1F2F;
      border-radius: 0;
    }
  &::-webkit-scrollbar-track-piece {
      background: #0C1F2F;
    }
  
  &::-webkit-scrollbar-thumb {
      border-radius: 4px;
      background-color: #37597d;
    }
  
  &::-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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*選單設定*/




.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 {
  display: none;
}


.header_area .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
    display: block;
    position: fixed;
    top: 20px;
    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: #43453D;
   font-family:   "Josefin Sans","Noto Serif TC", sans-serif;
    margin-top: 10px;
    
}


.stellarnav.desktop .menu-toggle span.bars span {
    display: block;
    position: relative;
    width: 50px;
    height: 3px;
    border-radius: 6px;
    background: #cecdcd;
    margin: 0;
    margin-bottom: 8px;
    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: all 1s;
}
.stellarnav.desktop .menu-toggle span.bars span:nth-child(3) {
    opacity: 1;
    width: 50px;
    transition: all 1s;
}
.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(2) {
    width: 50px;
    transition: all 1s;
}



/* 漢堡關 */

.stellarnav .menu-toggle span.bars {
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* 未開啟 */

.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-wrap: nowrap;
    justify-content:center;
    pointer-events: all;
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 200px 4% 60px;
    padding-top: 130px;
    align-items: center;
    gap: 30px;
}

.stellarnav.desktop.active > ul::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0;
    background-color: #0f3864d2;
    backdrop-filter:blur(8px);
    animation:nav-updown 1s forwards;
    z-index: -2;
}
.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);
}

/* .stellarnav.desktop.active > ul::after{
    content: "";
    display: block;
    width: 1377px;
    height: 1000px;
    background-image: url(https://pic03.eapple.com.tw/imay/nav-shadow-bg.png);
    background-size: cover;
    -webkit-animation: shadowMove2 12s infinite ease;
    animation: shadowMove2 12s infinite ease;
    opacity: 0.45;
    position: absolute;
    right: -100px;
    top: -120px;
    z-index:-1;
    animation: floatShadow 20s infinite cubic-bezier(0.65, 0.01, 0.28, 0.94);
}

@keyframes shadowMove2{
    0% {
        -webkit-transform: rotate(0) skew(0deg, 0deg);
        transform: rotate(0) skew(0deg, 0deg);
    }
    33% {
        -webkit-transform: rotate(-4deg) skew(1deg, 3deg);
        transform: rotate(-4deg) skew(1deg, 3deg);
    }
    
    66% {
        -webkit-transform: rotate(6deg) skew(3deg, 2deg);
        transform: rotate(6deg) skew(3deg, 2deg);
    }
    100% {
        -webkit-transform: rotate(0) skew(0deg, 0deg);
        transform: rotate(0) skew(0deg, 0deg);
    }
} */


@keyframes floatShadow {
    0%,100%{
        transform: scale(1.2) rotateZ(0deg) translate(0px,0);
    }
    50%{
        transform: scale(1.3) rotateZ(2deg) translate(-100px,0);
    }

}


@keyframes nav-left {
    0%{
        width:  0;
    }
    100%{
        width:  100%;
    }
    
}

@keyframes nav-updown {
     0% {
    opacity: 0;
    transform: scaleZ(0.1) translateZ(0);
  }
  50% {
    opacity: 1;
    transform: scaleZ(1.05) translateZ(0);
  }
  100% {
    opacity: 1;
    transform: scaleZ(1) translateZ(0);
  }
}


@keyframes line-up {
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}



/* ham close */

.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(1) {
    transform: rotate(-49deg);
    left:0px;
    top: 20px;
    transition: all 1s;
}
.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(3) {
    transform: rotate(225deg);
    transition: all 1s;
}
.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: #DED5BC;
    display: flex;
    text-transform: uppercase;
    position: relative;
    font-size: 17px;
    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: space-between;
    align-items: flex-start;
    letter-spacing: 5px;
    transform-origin: 0 0;
    text-decoration: none;
  
    font-family: "Noto Serif TC",  "Josefin Sans", sans-serif;
}
.stellarnav > ul > li > a b {
    line-height: 15px;
    height: 30px;
}
.stellarnav > ul > li{ max-width: 700px; }
.stellarnav > ul > li > a b::before{ content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 0%;
  height: 1px;
  background: #b3eef829;
  transition: 0.3s ease; }
  .stellarnav > ul > li > a:hover b:before{width: 100%; } 

.stellarnav > ul > li > a b:nth-child(1) {font-weight: 400;margin-bottom: 5px; font-size: 22px; color: #fff;  font-family: "Noto Serif TC",  "Josefin Sans", sans-serif; margin: 0px 8px; }
.stellarnav > ul > li > a b:nth-child(2) {
    font-size: 44px;
    color: #8ED0EE;
    word-break: keep-all;
      font-family:  "Josefin Sans", sans-serif;
    display: block;
    transition: 0.5s;
    font-weight: 500;
    margin: 0px 8px;
}


.stellarnav li {
    opacity: 1;
    width: 100%;
}
.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;
   color: #B3EEF8;
}



/* 理髮icon */

/* .stellarnav > ul > li > a:before{
    content: "";
  position: absolute;
  bottom: -11px;
  left: -42px;
  display: block;
  width: 72px;
  height: 72px;
  background-image: url(https://pic03.eapple.com.tw/valleybarbertw/nav-01.png);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transform: translateX(-72px);
          transform: translateX(-72px);
  opacity: 0;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
        transition: 0.3s;

} */

/* .stellarnav > ul > li.has-sub > a:before,.stellarnav > ul > li.has-sub > a:before{
    content: "";
  position: absolute;
  bottom: 68px;
  display: block;
  width: 72px;
  height: 72px;
  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:before{
    background-image: url(https://pic03.eapple.com.tw/valleybarbertw/nav-02.png);
}
.stellarnav > ul > li:nth-of-type(3) > a:before{
    background-image: url(https://pic03.eapple.com.tw/valleybarbertw/nav-03.png);
}
.stellarnav > ul > li:nth-of-type(4) > a:before{
    background-image: url(https://pic03.eapple.com.tw/valleybarbertw/nav-04.png);
}
.stellarnav > ul > li:nth-of-type(5) > a:before{
    background-image: url(https://pic03.eapple.com.tw/valleybarbertw/nav-05.png);
}
.stellarnav > ul > li:nth-of-type(6) > a:before{
    background-image: url(https://pic03.eapple.com.tw/valleybarbertw/nav-06.png);
}

.stellarnav > ul > li > a:hover:before,.stellarnav > ul > li.has-sub > a:hover:before{
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
opacity: 1;
-webkit-transition-delay: 0s;
    transition-delay: 0s;
        animation: spin 2s linear infinite;
}

@keyframes spin {
   0% { transform: scale(1) translateX(-30px); }
  50% { transform: scale(1.2)  translateX(-30px);}
  100% { transform: scale(1) translateX(-30px); }
} */



/* animate word */
.stellarnav > ul > li{
    opacity: 0;
    animation: slideInUp 1.5s forwards;
    animation-delay: 0.2s;
    padding-bottom: 40px;
    /* padding-left: 15px; */
    padding-right: 0;
}

.stellarnav > ul > li:nth-child(2) {
    animation: slideInUp 1s forwards;
    animation-delay: 0.7s;
}
.stellarnav > ul > li:nth-child(3) {
    animation: slideInUp 1s forwards;
    animation-delay: 0.9s;
}
.stellarnav > ul > li:nth-child(4) {
    animation: slideInUp 1s forwards;
    animation-delay: 1.2s;
}
.stellarnav > ul > li:nth-child(5) {
    animation: slideInUp 1s forwards;
    animation-delay: 1.5s;
}
.stellarnav > ul > li:nth-child(6) {
    animation: slideInUp 1s forwards;
    animation-delay: 1.7s;
}
.stellarnav > ul > li:nth-child(7) {
    animation: slideInUp 1s forwards;
    animation-delay: 1.9s;
}
.stellarnav > ul > li:nth-child(8) {
    animation: slideInUp 1s forwards;
    animation-delay: 2.2s;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
  
    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
  }


  /* .stellarnav > ul > li:nth-child(2) a, .stellarnav > ul > li:nth-child(4) a, .stellarnav > ul > li:nth-child(6) a, .stellarnav > ul > li:nth-child(8) a { flex-direction: row-reverse;} */

/* 從左滑入 */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

/* 從右滑入 */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(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: #fff;
    letter-spacing: 1.1px;
    transition: all 0.3s;
}


/* 下拉二層 */

.stellarnav ul ul ul {
    top: 0;
    left: 240px;
}
.stellarnav li.has-sub > a:after{
    display: none;
}

@keyframes ul-show {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
    
}


  /* 漢堡條 */
  .stellarnav .menu-toggle span.bars span {background: #cecdcd; width: 32px; height: 2.5px;}
  .stellarnav .menu-toggle:after { color: #cecdcd;}
  
  /* close menu 拉出來 */
  .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu{
      background: #0F3864;
      color: #fff;
    }
    .stellarnav .icon-close:before{
      border-bottom: solid 3px #fff;
    }
    .stellarnav .icon-close:after{
      border-bottom: solid 3px #fff;
    }
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{
      background: #0f3864c9;
      backdrop-filter:blur(8px);
    }
    .stellarnav a.dd-toggle .icon-plus:before{
      border-bottom: solid 3px #A7B3BD;
      display: none;
    }
    .stellarnav a.dd-toggle .icon-plus:after{
      border-bottom: solid 3px #A7B3BD;
      display: none;
    }
    .stellarnav.mobile > ul > li > a{padding: 16px 43px 16px 10px; }
    .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: transparent;
    }
    .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:768px) {
    .stellarnav > ul > li{
        padding-bottom: 0px;
        padding-top: 0px;
    }
    .stellarnav > ul > li > a b:nth-child(2){
        opacity: 1;
    }
    .stellarnav > ul > li > a b:nth-child(1){ font-size: 20px;}
    .stellarnav > ul > li > a b:nth-child(2){ font-size: 32px;}
}

@media screen and (max-width:570px) {
    .header_area .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
        top: 26px;
        right: 3%;
    }
    
}
@media screen and (max-width:460px) {
    .header_area .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
        top: 20px;
        right: 2%;
    }
    .stellarnav > ul > li > a b:nth-child(1){ font-size: 20px;}
    .stellarnav > ul > li > a b:nth-child(2){ font-size: 18px;}
}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*logo*/
.nav-brand img {
    position: relative;
    top: 43px;
    left: -55px;
    width: 100%;
    max-width: 100%;
    transition: all 0.3s;
    opacity: 1;
}

.pageIndex #page .nav-brand img {
        opacity: 0;
    animation: show 1.5s ease-in-out forwards;
    animation-delay: 2.5s;
}


@keyframes show {
    0%{
        opacity: 0;
        transform: translateX(-30px);
        filter: blur(5px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes show-line {
    0%{
        right: 100%;
        opacity: 0;
    }
    100%{
        right: 0;
        opacity: 1;
    }
}

/* logo反白 */
.header_area .nav-brand img {    filter: none;  }
/* .header_area.sticky .nav-brand img { filter:brightness(1) invert(1);    transition: all 0.3s;} */


.nav-header {
    position: fixed;
    z-index: 123;
    top: -23px;
    left: 6%;
    transition: all 0.3s;
    max-width: 220px;
}

.nav-brand {
    display: inline-block;
    width:220px;
    transition: all 0.3s;
}


@media screen and (max-width: 1024px) {
    .nav-brand {
        width: 180px;
    }
    .nav-brand img {
        position: relative;
        max-width: 100%;
        z-index: 100000;
        transition: all 0.3s;
    }
    .header_area.sticky a.nav-brand::before {  
        width: 20%;
        left: 50%;
        transform: translateX(-50%);
        transition: all 0.3s;
    }
    .stellarnav > ul > li > a {
        margin: 0 15px;
    }
    
}
@media screen and (max-width: 768px) {
.nav-brand-m {    display: block;    text-align: left;    padding: 15px 10px;}
.nav-brand-m img {    max-width: 160px;    width: 100%;}
.nav-brand {
    display: inline-block;
    width: 140px;
}
.header_area.sticky a.nav-brand::before {
    width: 120%;
}
.nav-header {
    z-index: 0;
    top: -25px;
    left: 5%;
}

}

@media screen and (max-width:570px) {
    .nav-brand{ width: 140px;}
     .nav-header{ left: 6%;}
}



/*開場NAV */
.pageIndex #page .stellarnav.desktop .menu-toggle{
    opacity: 0;
    top: 27px;
    animation: showright 1.5s ease-in-out forwards;
    animation-delay: 1.5s;
    z-index: 9;
}

@keyframes showright {
0%{
    opacity: 0;
     transform: translateX(30px);
    filter: blur(5px);
}
100%{
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}
}

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 展示footer demo */
.footer_logo{ display: none;}
.footer_info ul { display: none;}
.copy{ display: none;}
.box_link{ display: none;}
.footer {
    border-top: none !important;
    padding:0 0;
    height:402px;
    background-image: url(https://pic03.eapple.com.tw/valleybarbertw/footer.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.fix_ri{display: block!important;}

@media screen and (max-width:1400px) {
    .footer{ height: 295px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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:60px;}
}

@media screen and (max-width: 600px) { 
}




