@charset "utf-8";
@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');

body{
	overflow-x:hidden;
	font-family:"Noto Serif TC","Noto Sans TC","Source Sans Pro","微軟正黑體","arial","sans-serif";
	font-weight: 400;
  letter-spacing: 1px;
}


/*購物車搜尋欄*/
.me_tp_features {    padding-right: 10px;}
.me_tp_features {padding-right: 10px;margin-top: 10px;}
/*Main/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.edit_part {max-width: unset;margin: 0;padding: 0;}
.other_page .main_part {max-width: unset;padding: 0px;margin: 0;width: 100%;}
.main_part{max-width: 1400px;width: 90%;margin: auto;padding: 80px 0;}
.show_content{width: 100%;max-width: 100%;padding: 0;}
#content {background: #e9e5d92e;}
/*反白顏色/＝＝＝＝＝*/
::-moz-selection{  background-color: #444;  color: #fff;}
::selection{  background-color: #444;  color: #fff;}
.linkBox_Open + span i {transform:rotate(45deg);}

/*Header/＝＝＝＝＝*/
.main_header_area{background: #fff;}
.main_header_area .container {max-width: 95%;}
.navigation {padding: 0;}
.header_area {background: none;padding: 0;}

.pageIndex .header_area .nav-brand {display: none;}
.pageIndex .header_area.sticky .nav-brand {display: block;}
/*banner01*//*第一張大圖的偽元素*//*依樣可以放before+after 兩個*/
#content_main { margin:0;}/*custom原本有寫*/
.bannerindex { position:sticky; height:auto;}/*custom原本有寫*/
.bannerindex .swiper-banner { position:static; margin:0; height:auto;}/*custom原本有寫*/
.bannerindex .swiper-slide img { height:auto;    animation: none;}/*custom原本有寫*/
.bannerindex .swiper-slide {position: relative;}/*因為偽元素，所以要加的*/
.bannerindex .swiper-slide:before ,.bannerindex .swiper-slide:after { content: ""; position: absolute;  z-index: 999; pointer-events:none;}/*before+after依樣要寫的內容拆出來寫一起，要寫在個別下方也可以*/

.bannerindex .swiper-slide:nth-child(1):before{
    content: "";
    display: block;
    position: absolute;
    top: 5%;
    right: 5%;
    background: url(https://pic03.eapple.com.tw/cafededawntw/banner-01.png);
    width: 100%;
    max-width: 80%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
    animation: swiff 5s infinite cubic-bezier(0.65, 0.01, 0.28, 0.94);
}

@keyframes swiff {
    0%,100%{
        transform: scale(1.2) rotateZ(0deg) translate(0px,0);
    }
    50%{
        transform: scale(1.3) rotateZ(2deg) translate(-100px,0);
    }

}
.bannerindex .swiper-slide:nth-child(1):after {
    background: url(https://pic03.eapple.com.tw/cafededawntw/banner-02.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0%;
    left: -1%;
    width: 100%;
    height: 100% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.43);
}

.bannerindex .swiper-slide:nth-child(2):before {
    background: url(https://pic03.eapple.com.tw/cafededawntw/banner-04.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 5%;
    left: 3%;
    width: 100%;
    height: 100% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.43);
}

.bannerindex .swiper-slide:nth-child(2):after {
    background: url(https://pic03.eapple.com.tw/cafededawntw/banner-03.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0%;
    left: -1%;
    width: 100%;
    height: 100% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.43);
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after {animation: slide-top 2s 0.3s both;}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after { animation: slide-top  2s 0.2s both;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before {animation: slide-fade-in 3s 0.3s both;}


/*上升特效*/
  @keyframes slide-top {
  0% {-webkit-transform: translateY(100%);  /* 一開始的位置 在Y-100(最下方)*/
            transform: translateY(100%);
            opacity:0;/*透明度0*/}
  100% {-webkit-transform: translateY(0);/* 跑到最後終止的位置 在Y-0(最上方)*/
            transform: translateY(0);
            opacity:1;/*透明度顯示*/}
  }

  @keyframes fade-in-elegant {
    0% {
        opacity: 0;
        transform: translateY(20px); /* 從下方滑入 */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* 最終位置 */
    }
}

@keyframes slide-fade-in {
    0% {
        opacity: 0;
        transform: translateX(-20px); /* 從左側滑入 */
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@-webkit-keyframes fade-in-bck {
    0% {
      -webkit-transform: translateZ(150px);
              transform: translateZ(150px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      opacity: 1;
    }
  }
  @keyframes fade-in-bck {
    0% {
      -webkit-transform: translateZ(150px);
              transform: translateZ(150px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      opacity: 1;
    }
  }
  
  @media screen and (max-width: 768px) {
    .bannerindex {
        padding-bottom: 0%;
    }}

    @media screen and (max-width: 500px) {
        .swiper-slide img {
            width: 200%;
        }
        .swiper-slide:nth-child(2) img {
            position: relative;
            height: auto;
            left: 0%;
        }
        
    }
/*第一層*/
.stellarnav > ul > li > a {transition: all 0.3s;padding: 0 10px;margin: 15px 5px 0;}
.stellarnav > ul > li > a b , .stellarnav > ul > li > a {line-height: var(--f32);height: var(--f32);font-weight: 400;}
.stellarnav > ul > li > a:hover b {
    transform: translateY(calc(-1 * var(--f40)));
    -webkit-transform: translateY(calc(-1 * var(--f40)));
    -moz-transform: translateY(calc(-1 * var(--f40)));}
.stellarnav li.has-sub > a:after{content:none;}
.stellarnav > ul > li:hover > a{color: var(--MainColor);}

.stellarnav > ul > li > a:before {
    content: '';
    background-image: url(https://pic03.eapple.com.tw//);
    height: 10px;
    aspect-ratio: 12 / 1;
    position: absolute;
    left: 0;
    bottom: -5px;
    opacity: 0;
    transition: all 0.3s;
    background-position: 0 0;
    -webkit-animation: wave 5s linear 0s infinite;
    animation: wave 5s linear 0s infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    filter: invert(55%) sepia(70%) saturate(254%) hue-rotate(175deg) brightness(88%) contrast(92%);
}
.stellarnav > ul > li > a:hover:before{opacity: 1;bottom: 0;}

/*動畫*/
@-webkit-keyframes wave {
    100% {
background-position: 100% 0
    }
}

@keyframes wave {
    100% {
background-position: 100% 0
    }
}
.stellarnav .icon-close:before{border-bottom: solid 3px rgba(255, 255, 255, 0.9);}
.stellarnav .icon-close:after {border-bottom: solid 3px rgba(255, 255, 255, 0.9);}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {background: #1b543f;color: #fff;}
.stellarnav.mobile ul {background: #fffffff2;}
/*第二層*/
.stellarnav li li {display: block;border: none;    margin-bottom: 0;}
.stellarnav li li + li{border-top: 1px solid var(--MainColor);}
.stellarnav li li > a , .stellarnav li li.has-sub > a{    padding: 10px 5px;    transition: all 0.3s;background: #AF5B5C;;color: #fff;text-align: center;font-size: 90%;}
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{color: #fff;background: var(--MainColor);}
.stellarnav > ul >li >ul {    overflow: hidden;    left: 50%;    transform: translateX(-50%);    border-radius: 10px;    text-align: center;}
/*SubMenu*/
.shop_search_btn {    background: #AF5B5C;}
.tp_links a{display: none;}
.info_fix>span {display: none};

/*側邊選單*/
.info_fix {    bottom: 200px;    right: 16px;}
/*選單漸變效果＝＝*/
/*首頁固定選單 開啟後下方RWD 768對應標籤也需開啟*/
.pageIndex .header_area{position: fixed;    width: 100%;}
.pageIndex .header_area .main_header_area {    background: transparent;transition:all 0.5s;margin-top: 10px;position: relative;}
.pageIndex .header_area.sticky .main_header_area {background:#fff;margin-top: 0;}
.pageIndex .header_area .main_header_area:after {    content: "";    background: rgb(255 255 255 / 85%);    width: 100%;    height: 100%;    position: absolute;    right: 0;    top: 0;    max-width:900px;    border-radius: 150px 0 0 150px;    transition: all 0.8s;    z-index: -1;}
.pageIndex .header_area.sticky .main_header_area:after{max-width: 100%;opacity: 0;}


@media screen and (max-width: 1024px) {
.pageIndex .header_area .main_header_area {
    background: #fff;
    transition: unset;
    margin-top: 0;
    position: relative;}}

@media screen and (max-width: 768px) {
.me_tp_features {display: none;}
.main_header_area .container {
    max-width: 100%;
}}

.stellarnav > ul > li:last-child {
    display: none;
}
/*隱藏購物車搜尋欄*//*
.box_search{display:none;}
/*隱藏購物車*//*
.me_tp_features a.tp_btn_cart {display: none;}
/*隱藏匯款通知*//*
.me_tp_features a.tp_btn_notice{display: none;}
/*隱藏選單按鈕連結*//*
.tp_links{display: none;}

/*選單漸變效果＝＝*/
/*首頁固定選單 開啟後下方RWD 768對應標籤也需開啟*//*
.pageIndex .header_area{position: fixed;    width: 100%;}


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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-layer-two { 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) {
}

@media screen and (max-width: 600px) {
                .products-list {
                    grid-template-columns: 1fr 1fr;
                    grid-gap: 10px;
                }}
/*footer*/
.footer_logo {display: none;}
.footer_info li p.add2:before {content: '營業時間：';}
.footer_info li p.mail:before {content: 'Mail：';}


.footer {
    background:#1B543F;
    padding: 80px 0 0;}

.center {
    max-width: 1400px;
    padding: 0 4%;}

.footer_logo {
    width: 280px;
    margin: 0;}

.footer_logo img {
    max-width: 100%;
    display: block;
    filter: contrast(0) brightness(100);
	max-width: 250px;}

.footer_info {
    display: flex;
    justify-content: space-between;
    flex-direction: column;}

.footer_info, .footer_info li {padding: 0;}
.footer_info ul {
    letter-spacing: 0;
    display: flex
;
    flex-flow: row wrap;
    width: calc(100% - 100px);
    margin-bottom: 40px;
    padding-left: calc(65% - 325px);
    flex-direction: row;}

.footer_info li:before {
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 36px;
    display: block;}

.footer_info li:nth-child(1):before {content: "聯絡資訊";}
.footer_info li:nth-child(2):before {
    content: "網站連結";
    left: 0;
    position: absolute;}

.footer_info li:nth-child(1) {width: calc(100% - 215px);}
.footer_info li p {
    letter-spacing: .3px;
    color: #fff;
    line-height: 175%;
    display: block;
    margin-bottom: 15px;
    font-weight: 400;
}
.footer_info li p a {
    color: #fff;
    width: max-content;
}
.footer_info li p:before {
    color: #fff;
    font-weight: 400;
}
.footer_info li:nth-child(2) {width: 190px;position: relative;}
.footer_menu {
    margin-top: 59px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 13px 60px;
}
.footer_menu a {
	padding: 0;
	border: none;
	color: rgba(255,255,255,.7);
	background: transparent;
	width: max-content;
	text-align: left;
	margin: 0;
	line-height: 175%;
	transition: all 0.3s;
}
.footer_menu a:hover {
    background: transparent;
    color: #fff;
}
.footer_menu a:first-of-type {display: none;}

.copy, .copy a, .copy a:hover {color: #fff;}
.copy {
    font-size: 13px;
    white-space: inherit;
    padding: 5px 0;
    border-top: none;
    background: #251f1d85;
}
.box_link {display: none;}

.info_fix_links {
    display: flex !important;}
.info_fix>span {display:none;}
@media screen and (max-width: 768px) {
    .footer.with_shopping_mode { padding:40px 0 59px; }
    #to_top { bottom:68px;}
    
    .center {padding: 0 6%;}
    .footer_logo { width: 220px;}
    .footer_info ul {
        width: 100%;
        margin-bottom: 60px;
        margin-top: 44px;
        padding-left: 0;
    }
    .footer_info li:nth-child(1),
    .footer_info li:nth-child(2) {
        width: 50%;
    }
    .footer_info li:before {padding-bottom: 20px;font-size: 18px;}
    .footer_menu {
        margin-top: 40px;
        grid-gap: 18px 0;
    }
    .list_before {padding-bottom: 1px;}
    
    .footer_info {      flex-direction: column;
    
    
    }}
    
    @media screen and (max-width: 600px) {
    .footer_info li:nth-child(1),
    .footer_info li:nth-child(2)
    {width: 100%;}
    .footer_menu {grid-gap: 16px 0;}
    .footer_info li:nth-child(2) {margin-top: 36px;}
    }


/*預設解除背景輪播*/
#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;}

/*文章設定*/

@media screen and (max-width: 768px) {

.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}

/*購物車設定*/
.pageIndex .products-list li:nth-child(n+5) a{display: none;}
.pageIndex .prod_part {padding: 0px 20px 100px;}
.i_prod_tit span, .i_video_tit span {
    color: #1B543F;
    font-size: 25px;
    font-family: "Noto Serif TC";
    font-weight: 800;}

.animated-arrow {background: #1B543F;height: 45px;}
.products-list .more {
    border: 1px solid #1B543F;
    color: #1B543F;}

.products-list .item a:hover .more{background: #1B543F;color:#fff;}

.products-list .price b {
    font-weight: 300;
    color: #999;}

.products-list .price .sp_price {color: #B95D3E;}
.products-list .price { align-items: flex-end;}
.prod_part section { max-width: 1200px;}
.i_prod_tit h2, .i_video_tit h2 {
    font-size: 40px;
    font-weight: 400;
    color: #444444;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.product-layer-two li.active a { border: none;}
.product-layer-two li a {
  border: none;
  background: none;
  font-size: 16px;
  color: #1B543F;}
  .product-layer-two li a:hover{background: #1B543F;color: #fff;}
.products-list .price b {color: #999; font-size: 13px;}
.products-list .price .sp_price {
          text-align: right;
          font-size: 18px;
          font-weight: 900;}
.inquiry_a1 {background: #1B543F}
.inquiry_a2 {background: #1B543F}
.inquiry_a3 { background: #1B543F;}
.lastPage {background: #1B543F}
.products-list .item a:hover .more {background: #1B543F}
.products-list .more {border: 1px solid #1B543F color: #1B543F}
.product-layer-two li a:hover {background: #1B543F color: #fff;}
.product_page .main_part { max-width:1500px;}
.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: 300px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 300px);padding-left: 40px;}
ul.page { width: 100%;}
.products-list .more {
  border: 1px solid #1B543F;
  color: #1B543F;}
.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;}
.products-list .item a:hover img {
  transform: scale(1.05);
  transition: all .8s;
  min-height: 412px;
  object-fit: cover;}
.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: 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%;padding: 0;}
.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;padding: 0;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}