@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

body {font-family: "Poppins", sans-serif,"Noto Sans TC", serif;}
.path p, .path p a{display: none;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/

/*大圖特效*/


#content_main {  margin: 0;}
.bannerindex { position: static; height: auto;}
.swiper-banner { position: static; margin: 0; height: auto;}
.swiper-slide { padding: 0px !important;}
.swiper-slide img { height: auto;}
.swiper-pagination { display: none;}
.swiper-slide { position: relative;}
.bannerindex .swiper-slide.swiper-slide-active:before {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
.bannerindex .swiper-slide.swiper-slide-active:after {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
@media screen and (max-width: 768px) {
    .bannerindex { padding:0; margin:0;}
    }

/*第一張大圖*/
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
  background: url(https://pic03.eapple.com.tw/densensalon/title01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 40%;
  left: 13%;
  width: 38% !important;
  height: 39% !important;
  background-position: left;
  padding-bottom: calc(100% / 1* 0.12);
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after { animation: fade-in-elegant  2.5s ease-in-out both;}


  @keyframes fade-in-elegant {
    0% {
        opacity: 0;
        transform: translateY(20px); /* 從下方滑入 */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* 最終位置 */
    }
}


@media screen and (max-width: 500px) {
    .bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
        background: url(https://pic03.eapple.com.tw/densensalon/rwd_title01.svg);
        background-size: contain;
        background-repeat: no-repeat;
        bottom: 46%;
        left: 13%;
        width: 43% !important;
        height: 42% !important;
        background-position: left;
        padding-bottom: calc(100% / 1 * 0.12);
    }
    }


/*logo*/

.nav-header {
    width: 150px;
}
/*header*/

.main_header_area .container {
    transition: .6s ease-in-out;
}

.header_area.sticky .main_header_area .container {
    max-width: 1000px;
    transition: .6s ease-in-out;
}



.header_area {
  background: #fff;
  padding: 50px 10px 0px;
  transition: .6s ease-in-out;
  height: 120px;
}

.header_area.sticky {
    transition: .6s ease-in-out;
    background: linear-gradient(180deg, #f5eee8, transparent);
}

.me_tp_features {
    position: absolute;
    top: -27px;
    z-index: 999999;
}
.tp_links {
    display: none;
}
.navigation {
    display: flex;
    align-items: center;
    height: 60px;
}

.stellarnav ul {
    padding-top: 10px;
}



/*第一層*/


.stellarnav > ul > li > a {
  margin: 0 15px;
  letter-spacing: 1px;
  font-size: 14px;
  color: #000000;
  position: relative;
  transition: top 0.5s ease;
  display: flex;
  align-items: flex-end;
  height: 100px;
  top: -37px;
  z-index: 999;
}

.stellarnav > ul > li:hover > a {
  top: 10px;
}

.stellarnav > ul > li.has-sub > a {
padding-right:0px
}

.stellarnav li.has-sub > a:after{
    display: none;
}



.stellarnav > ul > li:before {
  content: "";
  position: absolute;
  width: 105px;
  height: 0;
  background: #f5eee8;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  transition: height 0.4s ease-out;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.stellarnav > ul > li:hover:before {
    height: 168px;
}

.stellarnav > ul > li::after {
  content: "";
  position: absolute;
  top: 35%;
  left: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s;
}

.stellarnav > ul > li:hover:after {
  opacity: 1;
  animation: wave-reveal 1s both;
}
  

@keyframes wave-reveal {
  0% {
    clip-path: inset(100% 0 0  0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}


.stellarnav > ul > li:nth-child(2):after {
  background-image: url(https://pic03.eapple.com.tw/densensalon/icon-01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.stellarnav > ul > li:nth-child(3):after {
  background-image: url(https://pic03.eapple.com.tw/densensalon/icon-02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.stellarnav > ul > li:nth-child(4):after {
  background-image: url(https://pic03.eapple.com.tw/densensalon/icon-03.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.stellarnav > ul > li:nth-child(5):after {
  background-image: url(https://pic03.eapple.com.tw/densensalon/icon-04.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.stellarnav > ul > li:nth-child(6):after {
  background-image: url(https://pic03.eapple.com.tw/densensalon/icon-05.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.stellarnav > ul > li:nth-child(7):after {
  background-image: url(https://pic03.eapple.com.tw/densensalon/icon-06.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.stellarnav > ul > li:nth-child(8):after {
  background-image: url(https://pic03.eapple.com.tw/densensalon/icon-07.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.stellarnav > ul > li:nth-child(9):after {
  background-image: url(https://pic03.eapple.com.tw/densensalon/icon-08.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*第二層*/
.stellarnav ul ul {
  padding-top: 0px;
  top: 110px;
  background: transparent;

}

.stellarnav li li {
  border: none;
  background: #f5eee8;
  padding: 7px;
  right: 7px;
}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 8px 9px;
    transition: all 0.3s;
    color: #444;
    font-size: 15px;
}
.stellarnav li li:hover {
  background: #c4b1a2;
}



@media screen and (max-width: 1024px) {
    .me_tp_features {
        top: 46px;
        margin: 0px;
    }
    .header_area {
    padding: 20px 10px 15px;
}
  .stellarnav > ul > li:hover:before {
      height: 114px;
      top: 29px;
  }
  .stellarnav > ul > li:hover > a {
    top: 36px;
}
.stellarnav > ul > li::after {
    top: 67%;
  }
    }
 

@media screen and (max-width: 768px) {
.me_tp_features {
z-index: 0;
}

    }

/*Footer/＝＝＝＝＝*/

.footer_info li p.tel:before {
  content: '營業時間：';
}

.footer_info {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    flex-direction: row;
    justify-content: flex-end;
    grid-gap: 0px;
}
  .footer_menu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: flex-end;
}
.footer_menu a {
    margin: 0;
    text-align: end;
    transition: all 0.3s;
    background: #ffffff;
    border: none;
    font-size: 13px;
    line-height: 187%;
    position: relative;
    letter-spacing: 3px;
    padding: 5px 5px 2px 5px;
}

.footer_menu a:hover {
  background: #f5eee8;
  color: #000;
}
  .footer_logo img {
    width: 110px;
    position: absolute;
    top: 110px;
    left: 100px;
}
  .footer_logo {
    display: flex;
    justify-content: center;
  }
  .footer {
    background: #fff;
  }
  .footer_info ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    align-items: flex-end;
    padding-left: 100px;
    padding-bottom: 85px;
}

  .footer_info li:nth-child(1) {
    width: 100%;
    padding: 0px;
    display: flex;
    flex-direction: column;
  }
  .footer_info li p:nth-of-type(2) {
    order: 5;
}
.footer_info li:nth-child(2) {
  width: 300px;
  display: flex;
  justify-content: flex-end;
  padding: 0px;
}
  .footer_menu a:nth-of-type(1) {
    display: none;
  }

  .footer_info li p {
    letter-spacing: 2px;
    color: #575757;
}
  .center {
    padding: 50px 0px 0px 0px;
  }

   .copy {margin-top: 47px;}
   .box_link {
    left: 96px;
    bottom: 21px;
    z-index: 999;
    width: fit-content;
}
.box_link a:nth-of-type(6) {left: 0px;}
.box_link a:nth-of-type(4){left: 45px;}
.box_link a:nth-of-type(2) {left: 90px;}
.box_link a:nth-of-type(1) {left: 135px;}


.box_link a:nth-of-type(3){display: none;}

   .box_link a:nth-of-type(5){display: none;}


   .box_link a {
    font-size: 18px;
    margin: 0px 10px 0 0;
    border-radius: 100px;
    transition: .5s;
    position: absolute;
    bottom: 0px;
    height: auto;
}

.box_link a:hover {
  background: #c5a993;
  transition: .5s;
  color: #fff;
  border-color: #fff;
}

@media screen and (max-width: 768px) {
  .box_link a {
      display: block;
      }
    }

  @media screen and (max-width: 768px) {
    /*Footer/＝＝＝＝＝*/
.footer_info {
    justify-content: flex-start;
}
    .center {
      padding: 20px 0px 64px 0px;
    }
    .footer_info li:nth-child(2) {
      width: 100%;
      justify-content: flex-start;
      padding: 0px;
  }
  .footer_info ul {
    padding-bottom: 44px;
    flex-direction: column;
    padding-left: 18px;
}
.footer_menu {
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
}
.footer_logo img {
  width: 114px;
  position: relative;
  top: 0px;
  left: 0px;
}

.footer_logo {
  justify-content: flex-start;
  align-items: stretch;
  padding-left: 20px;
  padding-bottom: 20px;
}

.box_link {
  left: 46px;
  bottom: -16px;
  position: absolute;
}

}

@media screen and (max-width: 600px) {

  .box_link {
    left: 30px;
}


}

/*購物車側選單*/

.product-layer-two li a {
    padding: 10px 16px;
    color: #444;
    background: #e7e4df;
    position: relative;
  }
  
  
  .product-layer-two li.active a {
    border: none;
    font-weight: 400;
  }
  
  .product-layer-two li i {
    top: 4px;
    color: #444;
    transition: 0.3s;
  }
  
  .product-layer-two li i:hover {
    filter: drop-shadow(2px 2px 3px #4f5a47);
    transform: rotate(45deg);
    color: #FFF;
    transition: 0.3s;
  }
  
  .product-layer-two li.active li a {
    font-weight: 400;
    letter-spacing: 2px;
    color: #444;
    background: transparent;
  }
  
  .product-layer-two li li a {
    padding: 5px 10px;
    color: #444;
    transition: all 0.4s;
  }
  
  .product-layer-two > li 
  { width:100%; max-width:100%; padding:0; text-align:left; padding-bottom: 5px;}
  
  
  
  /*商品外觀*/
  
  .products-list .price b {
    color: #7e7a72;
    letter-spacing: 1px;
    font-weight: 400;
  }
  .products-list .name {
    font-size: 16px;
    color: #444;
    letter-spacing: 1px;
    font-weight: 400;
    border-bottom: 1pt solid #cad3c3;
    height: 60px;
  
  }
  
  .products-list .more {
    display: none;
  }
  
  .products-list .item a {
    padding-bottom: 0px;
    position: relative;
  
  }
  
    .products-list .pic img {
      border-radius: 5px;
  }
  
  .products-list .pic:before {
    content: "READ MORE";
    letter-spacing: 2px;
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    line-height: 161%;
    background: #e7e4df;
    opacity: 1;
    transition: all 0.3s;
    font-size: 14px;
    width: 100%;
    color: #444;
  }
  
  .products-list .pic img {
    border-radius: 5px;
    transition: all 0.6s;
  }
  
  .products-list a:hover .pic:before {
    opacity: 0;
  }
  
  .products-list a:hover .pic img {
    transform: translate(0%, 0%) scale(1.1);
    filter: none;
    transition: all 0.6s;
  }
  
  
  /*商品內頁側邊單*/
  .sidebarBtn {
    border: none;
  }
  .product_info li .txt_box {
    color: #7e7a72;
  }
  .sidebarBtn .price span {
    color: #947c63;
    font-weight: 500;
    border-radius: 50px;
    text-align: justify;
    font-size: 17px;
    margin: 8px 0px;
}
  
  .sidebarBtn h2 {
    color: #7e7a72;
    letter-spacing: 1px;
    font-size: 20px;
    font-weight: 500;
  }
  
  .sidebarBtn .price {
    color: #444;
      font-size: 18px;
      font-weight: 400;
    border-bottom: 1px solid #adb8a4;
  }
  
  .radio-inline__input:checked + .radio-inline__label {
    background: #e7e4df;
    color: #444;
  }
  
  .inquiry_a3 {
    background: #bd9692;
  }
  
  .inquiry_a3:hover {
    letter-spacing: 2px;
    background: #e7e4df;
  }

  .pd_tabTitle li.activeTab::after {
    height: 1px;
}

.edit {
    font-weight: 400;
    color: #333;
    letter-spacing: 0.04em;
}
  
  /*商品推薦*/
  
  
  .prod_related {
    background: #ffffff;
    padding: 25px 15px;
  }
  
  .related_list li a {
    background: #f8f6f3;
    height: 100%;
    padding: 11px;
    border-radius: 10px;
    transition: all 0.5s;
  }
  
  .related_list li a:hover {
    box-shadow: 3px 3px 3px #afafaf45;
    transform: translate(0%, 0%) scale(1.1);
    transition: all 0.5s;
  }
  
  
  .prod_related h6 span:before {
    content: 'RECOMMEND';
    font-size: 21px;
    color: #FFF;
    font-weight: 400;
    letter-spacing: 5px;
  }
  
  .prod_related h6 {
    max-width: 100%;
    margin: 0px auto 48px;
    background: #cdc9c2;
    text-align: center;
    padding: 8px 0px;
  }
  
  .related_list li a p {
    padding-top: 10px;
  }
  
  .lastPage {
    color: #fff;
    background: #cdcbc5;
    border-radius: 50px;
    padding: 10px 20px;
    margin: 55px auto 40px;
    text-align: center;
    transition: all 0.3s;
  }
  
  .lastPage:hover{
   background:#e7e4df;
   transition: all 0.3s;
  
  } 


/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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: 13px 0px; /*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:hover > a { background:#fff; color:#9d988f;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 23px;}
.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:#9d988f;}

.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;
    font-size: 20px;
    font-weight: 400;
    padding-left: 7px;
}
a.pd_menu_toggle i {
    color: #444;
}
.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;}
.mobile_product_name {display: none;}
}
@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 {
display: none;
}
.banner h5 {display: none;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*首頁文章*/

.module_i_news {
  padding: 20px 20px 0px;
}

.module_i_news .title_i_box h4 {padding: 49px 0 45px;position:relative;color: #212121;line-height: 120%;letter-spacing: 0.1em;font-weight: 500;font-size: 30px;}
.module_i_news .title_i_box h4:after {
    content: 'NEWS';
    position: absolute;
    top: 74%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: #C4B19F;
    line-height: 120%;
    letter-spacing: 0.1em;
    font-family: 'Poppins';
    font-weight: 400;
}

.module_i_news li a {
  display: flex;
  grid-gap: 17px;
  flex-direction: column;
  flex-wrap: wrap;
}

.module_i_news ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 50px;
}

.i_blog_le {
  padding: 0px 34px;
  aspect-ratio: auto;
}

.i_blog_le img {
  border-radius: 20px;
  z-index: 999;
  transition: .5s;
  aspect-ratio: 1 / 1;
}

.i_blog_ri h5 {
    display: flex;
    font-size: 16px;
    font-weight: 400;
    z-index: 999;
    position: relative;
    color: #636363;
    letter-spacing: 0.8px;
}

.i_blog_ri em {
  margin: 0px;
  position: absolute;
  top: 3px;
  writing-mode: sideways-rl;
  left: 6px;
}

.i_blog_ri p {
  letter-spacing: 1px;
  font-size: 14px;
  color: #aba07d;
  font-weight: 300;
  -webkit-line-clamp: 2;
}


.module_i_news li a:before {
display:none;
}


.module_i_news li a:hover:before {
  height: 108.5%;
  transition: all .6s;
}

.module_i_news li a:hover .i_blog_ri h5 {
  color: #b19076;
}

.module_i_news li a:after {
  left: -6px;
  top: -23px;
  bottom: 0;
  z-index: 8;
}

.module_i_news li a:hover .i_blog_le img {
  border-radius: 500px;
  transition: 1.5s;
}

.i_blog_b a {
  display: none;
}


@media (max-width: 568px) {
.module_i_news .title_i_box h4 {font-size: 20px;padding: 49px 0 20px;}
.module_i_news .title_i_box h4:after{font-size: 15px;    top: 91%;}
.i_blog_ri em{display: none;}

}

/*文章*/

/*隱藏最新消息*/
h5.blog_le_t em {display: none;}
h5.blog_le_t span {
    display: inline-block;
    font-family: "El Messiri", serif;
    border-left: 2pt solid #9a6c68;
    padding-left: 20px;
    margin-bottom: 20px;
}

.news_related{display: none;}

.blog_box {
    padding: 10px 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.h4.blog_category_title {display: none;}
.blog_le {padding: 36px 0 0;}
.blog_ri {padding: 0 0 0 60px;}
.blog_le, .blog_ri {margin-bottom: 1vw;}
.blog_subbox {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0px;
}
.blog_box:after, .blog_box:before, .blog_subbox:before {content: none;}
.subbox_item {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(0,0,0,.4);
    padding: 36px;
}
.subbox_item a {
    display: flex;
    flex-flow: row wrap;
    flex-wrap: nowrap;
}
.blog_list_le {
    width: 400px;
    padding: 0;
    height: auto;
    overflow: hidden;
    position: relative;
}
.blog_list_le img {
    min-width: 100%;
    display: block;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .6s ease;
    border-radius: 30px;
}
.subbox_item a:hover .blog_list_le img{
    transform: scale(1.1);
    transition: all .6s ease;
}
.blog_list_ri {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    padding: 24px 42px;
    width: calc(100% - 305px);
    position: relative;
}
.blog_list_ri h5 {
    color: #9d988f;
    font-weight: 400;
}
.blog_list_ri em {
    order: 1;
    font-weight: 400;
    margin: 0;
    color: #afafaf;
    position: relative;
}
.blog_list_ri p {
    line-height: 175%;
    margin: 16px 0;
    -webkit-line-clamp: 2;
    text-align: justify;
}
.blog_list_ri em:after {
    content: '＋ Read More';
    letter-spacing: 0.4px;
    color: #9d988f;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 14px;
    transition: all 0.6s ease;
}
.subbox_item a:hover .blog_list_ri em:after {letter-spacing: 1.6px;opacity: 0;transition: .5s;}
.subbox_item a:before, .subbox_item a:after {content: none;}
.blog_le .accordion {border:none;border-radius: 0px;}
.accordion li .link {
    padding: 14px 16px;
    color: #746e6a;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
}
.accordion li .link, .accordion li:last-of-type {border-bottom: none;}
.accordion li {
    border-bottom: 1px solid #f5eee8;
    transition: all 0.3s ease;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.open:hover,
.blog_le .accordion > li.on_this_category:hover {
    background: #f5eee8!important;
}
.blog_le .accordion > li.open, .blog_le .accordion > li.on_this_category {
    background: #f5eee8!important;
}
.blog_le .accordion > li.open .link a, .blog_le .accordion > li.open .link i {
    color: #333333 !important;
}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a {
  color: #333333 !important;
}
.accordion li .link i, .accordion li .link a {
    color: #444 !important;
}
.submenu {background: #f1e9da;font-size: 14px;}
.submenu a {
    color: #918b82;
    letter-spacing: 0;
    font-weight: 400;
    padding: 14px 14px 12px 40px;
    border-left: #FFF 0 solid;
    transition: all .15s;
    background: #ffffff;
    letter-spacing: 1px;
}
.submenu a:before {
    top: 13.5px;
    left: 16px;
    font-weight:var(--fa-style, 900);
}
.submenu a:hover {
    background: #f9f6f5;
    color: #787878;
    border-left: #f9f6f5 8px solid;
}

.blog_search input[type=search] {
    font-size: 13px;
    border-radius: 0;
    border: 1px solid #ccc;
}
.blog_search input[type=submit] {
    height: 36px;
    filter: grayscale(20);
}

.blog_le .accordion li.open i.fa-chevron-down::before {
    content: '\f077';
    color: #FFF;
}
.submenu li.on_this_category a, .submenu a:hover {
    background: #f9f6f5;
    color: #444;
}
/*內頁*/
.blog_in_page h4.blog_category_title {
    display: block;
    border-bottom: 1px #9f9f9f solid;
    padding: 0 0 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-size: 24px;
    color: #978e89;
    font-weight: 400;
}
.blog_in_page .blog_ri {padding-top: 36px;}
.blog_box_edit * {line-height: 175%;}
.blog_box_edit {
    font-size: 16px;
    color: #666;
}
.blog_back {
    width: 100%;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    justify-content: center;
}
.blog_back a {width: 100%;transition: all .3s ease;}
.blog_back a.article_btn_next , .blog_back a.article_btn_prev, .blog_back a.article_btn_back {
    background: transparent;
    color: #4c3e31;
    border: 1px solid #d2d2d2;
    font-size: 14px;
    border-radius: 40px;
}
.blog_back a:hover {background: #f5eee8!important;color: #444;}
.blog_back {
    grid-gap: 16px;
}

@media screen and (max-width: 1200px) {

.blog_ri {
    padding:0px;
}

}

@media screen and (max-width: 1024px) {

.module_i_news ul{grid-template-columns:1fr 1fr;}
.blog_list_ri, .blog_list_le {width: 100%;}
.blog_list_ri {padding: 16px 0;}
.blog_box_edit {font-size: 15px;}

}

@media screen and (max-width: 980px) {
.blog_subbox{grid-template-columns:1fr;}
.subbox_item {
    padding: 30px 10px;
}
}

@media screen and (max-width: 768px){
h5.blog_le_t {display: block;}
.h4.blog_category_title{font-size: 24px;}
.h4.blog_category_title span{font-size: 20px;}
.blog_le,.blog_ri {margin-bottom: 0;}
.blog_ri {padding: 0;width: 100%;}
.subbox_item {        padding: 30px 0px;}
.blog_list_ri p {
line-height: 160%;
margin: 12px 0 16px;
-webkit-line-clamp: 3;
font-size: 14px;
}
.subbox_item:first-of-type {padding-top:18px;}
.blog_le {padding: 22px 0 0;}
.blog_in_page h4.blog_category_title {font-size: 20px;}
.blog_in_page .blog_ri {padding: 16px 0 0 0;}
.blog_list_ri h5 {
font-size: 19px;}

}

@media screen and (max-width: 600px){
/*文章管理/＝＝＝＝＝*/
.module_i_news ul , .blog_subbox{grid-template-columns:1fr;}
.h4.blog_category_title{font-size: 20px;}
.h4.blog_category_title span{font-size: 18px;}
.subbox_item a {
    padding: 0px 20px;
    flex-wrap: wrap;
}
.subbox_item {
    padding: 30px 0px 10px;
}
}

/*一排呈現
.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; } 取消連結被點擊效果
*/

.subalbum-menu h2{display: none;}

.overlay{display: none;}

.pic-list .show_pic {
  aspect-ratio: 2 / 3;
}

.pic-list .show_pic img {
  border-radius: 20px;
}

.show-list .show_pic {
  aspect-ratio: 2 / 3;
}

.show-list .show_pic img {
  border-top-left-radius: 300px;
  border-top-right-radius: 300px;
  transition: transform 0.5s ease, filter 0.5s ease;
}



.show-list .item a p {
    line-height: 2;
    font-weight: 400;
    letter-spacing: 2px;
    align-items: center;
    text-align: justify;
    transform: translate(-50%, 50%);
    position: absolute;
    top: 0%;
    left: 50%;
    opacity: 0;
    color: #fff;
    transition: all .5s;
}

.show-list .item:hover a p {
    opacity: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    transition: all .5s;
}


/*相簿特效*/

.show-list .show_pic::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #ffffff00 40%, #f5eee8c2 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  border-top-left-radius: 300px;
  border-top-right-radius: 300px;
}


.show-list .show_pic::after {
    content: "";
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 30%;
    background: radial-gradient(circle at center, #ffffff00 20%, #f5eee8c2 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    transition: all .5s;
}

/* hover 時遮罩出現 */
.show-list .show_pic:hover::before {
  opacity: 1;
}

.show-list .show_pic:hover::after{
  top: 42%;
  opacity: 1;
      transition: all .5s;
}


/*促銷方案*/

.promotion_title{display:none}
.other_promotion{display:none}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*聯絡我們/＝＝＝＝＝*/
.contact_page .main_part {padding: 50px 20px 0px 20px;}
.contact_editbox {    padding: 0;}
.contact_le_map a {    background: #e7e4df;}
.contact_form li.last cite {background: #bd9692;}
.contact_content {
    padding: 80px 10px 10px;
}


/*表格排列版面*/
.contact_content .information_left{display: none;}
.red {color: #bd9692;}
.contact_content .information_right {    width: 90%;    padding: 0;    margin: 0 auto 100px;    max-width: 1400px;    display: block;}
.blank_letter {     padding: 0;    font-size: 20px;    color: #42342B;text-align: center;}
.blank_letter .note{display: block;color: #bd9692;text-align: center;}
.contact_form {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(min(400px,100%), 1fr));    gap: 30px;}
.contact_form li{padding: 0;}
.contact_form li .form__label {    display: block;    width: 100%;    text-align: end;    margin: 0 0 5px;    padding: 0;}
.contact_form li.last {    text-align: center;    grid-column: 1/-1;}
.contact_form li.last blockquote, .contact_form li.last cite{border-radius:50px;    border: 1px #bd9692 solid;    padding: 0px;}


@media screen and (max-width: 600px){
    .contact_form li .form__label {
        text-align: justify;
        background: transparent;
        font-weight: 400;
    }  
}

@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}

/*選單MENU*/
.stellarnav .menu-toggle:after {
display: none;
}
.stellarnav .menu-toggle span.bars span{
    background: #a99479;
}

/*漢堡單*/
.stellarnav li li {
  border: none;
  background: #fff;
  padding: 0px;
  right: 0px;
}

.stellarnav > ul > li:hover > a {
  top: 0px;
}
.stellarnav a.dd-toggle .icon-plus {
    padding-top: 40px;
}

.stellarnav > ul > li > a:hover {
    background: none;
}

.stellarnav li li.has-sub:hover > a {
    background: #ffffff;
}
.header_area.sticky .stellarnav > ul > li > a {
    display: grid;
    margin: 0px 5px;
}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    background: #FFF;
}

.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
top: -1px;
background: #f4f2ef;
border-right: none;
}

.stellarnav > ul > li.has-sub > a {
padding: 10px 43px 10px 10px;
}

.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
background: #cdc8c1;
}


.stellarnav > ul > li > a:hover {
    color: #9a6c68;
}

.stellarnav.mobile li.open {
    background: #FFF;
    padding: 0px 0px 10px 0px;
}

.stellarnav li li:last-of-type {
    border-bottom-width: 0px;
}
.stellarnav.mobile > ul > li {
    border-bottom: 1px #fcfcfc solid;
    padding: 10px 0px;
}

.stellarnav.mobile li.open li a:not(.dd-toggle):not(.icon-plus) {
  margin-left: 30px;
  font-size: 15px;
  border-left: 1pt solid #cdc8c1;
  padding: 9px 20px;
  color: #878787;
}

.stellarnav li a {
    color: #444;
    background: transparent;
    border-radius: 0px;
}

.stellarnav > ul > li ul li a:hover {
    background: transparent;
}

.stellarnav.mobile ul ul {
    padding: 2px;
}

.stellarnav.mobile li.open li.open {
    background: #ffffff;
    padding: 0px;
}

.stellarnav.mobile ul ul ul {
    margin-left: 30px;
}

.stellarnav a.dd-toggle .icon-plus:before , .stellarnav a.dd-toggle .icon-plus:after {
    border-bottom: solid 2px #827a6f;
}

.stellarnav > ul > li::after,.stellarnav > ul > li:before {display: none;}
.stellarnav ul ul {
  top: auto;
}

.stellarnav > ul > li > a {
  display: block;
  height: 40px;
  top: 0px;
  z-index: 0;
}

.stellarnav li li:hover {
  background: transparent;
}

.stellarnav ul {
padding-top: 0px;
}

#bottom_menu li:nth-of-type(2) {display: none;}
#bottom_menu li a em {display: none;}
#bottom_menu li a {background: #efe9e3;padding: 20px 0px 15px;}
#bottom_menu {box-shadow: none;}
.header_area {height: 120px;}
}


@media screen and (max-width: 600px) { 
}




@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;
      font-size: 20px;
      font-weight: 400;
      letter-spacing: 1px;
    }
    
    .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;}
    h5.blog_le_t em {display: block;font-family: "Poppins", sans-serif,"Noto Sans TC", serif;}

    }