@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:"Quicksand", sans-serif, "Noto Sans TC", serif;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*大圖特效*/


#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(1):after {
    background: url(https://pic03.eapple.com.tw/heweicpb/title01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 26%;
    left: 9%;
    width: 28% !important;
    height: 32% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.12);
    animation: fade-in-elegant  2.5s ease-in-out both;
    filter: drop-shadow(2px 2px 5px #d5b04e)
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before {
    background: url(https://pic03.eapple.com.tw/heweicpb/title01-1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 46%;
    left: 9%;
    width: 28% !important;
    height: 32% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.12);
    animation: fade-in-elegant  2.5s ease-in-out both;
    filter: drop-shadow(2px 2px 10px #bf810d91);
}

/*第二張大圖*/

.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
    background: url(https://pic03.eapple.com.tw/heweicpb/title02.svg);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 36%;
    left: 9%;
    width: 28% !important;
    height: 32% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.12);
    animation: fade-in-elegant  2.5s ease-in-out both;
    filter: drop-shadow(2px 2px 5px #5e8248)
}


  @keyframes fade-in-elegant {
    0% {
        opacity: 0;
        transform: translateY(20px); /* 從下方滑入 */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* 最終位置 */
    }
}

  @media screen and (max-width: 600px) { 


    /*RWD大圖*/
  
  .bannerindex .swiper-slide img { display:none; }
  .bannerindex .swiper-slide {height: 117vw;  width: 100% !important; }/*圖片比例*/
  .bannerindex .swiper-slide:nth-child(1) { background-image: url(https://pic03.eapple.com.tw//rwd01.jpg); background-position: top; background-size:cover;}/*個別換背景*/
  .bannerindex .swiper-slide:nth-child(2) { background-image: url(https://pic03.eapple.com.tw//rwd02.jpg); background-position: top; background-size:cover;}
  
  /*第一張大圖*/

  .bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after {
    background: url(https://pic03.eapple.com.tw//title01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 39%;
    left: 7%;
    width: 37% !important;
    height: 36% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.12);
}
  }
  


  
/*logo*/

.nav-header {
    max-width: 430px;
    width: 100%;
}

/*header*/
.me_tp_features {
display: none;
}
.main_header_area .container{max-width: 85%;}
.header_area {
    background: #7b0014;
    padding: 25px 10px 15px;
    box-shadow: 1px 1px 25px rgb(0 0 0 / 6%);
}

.header_area.sticky {
    background: #7b0014
}

.navigation {
    display: flex;
    align-items: center;
}

.main_header_area:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 5%;
    left: 0%;
    bottom: -1px;
    background: linear-gradient(45deg, #927e56, #f1ddb5, #c9aa6e);
    transition: 1s cubic-bezier(0, 0, 0, 0.92);
}
.header_area.sticky .main_header_area:after {  width: 100%;}

/*第一層*/

.stellarnav ul {
    padding-top: 20px;
}

.stellarnav > ul > li > a {
    margin: 0 15px;
    letter-spacing: 2px;
    font-size: 15px;
    color: #fff;
    height: 50px;
}

.stellarnav > ul > li > a b {
    display: flex;
    line-height: 41px;
    height: 20px;
    justify-content: center;
    transition: 0.3s ease-in-out;
}


.stellarnav > ul > li:hover > a b {
    font-weight: 500;
    transition: .5s ease-in-out;
}


.stellarnav > ul > li > a b:nth-of-type(2) {
    font-size: 12px;
    opacity: 0;
    letter-spacing: -10px;
    filter: blur(5px);
}

.stellarnav > ul > li:hover > a b:nth-of-type(2) {
    color: #f1ddb5;
    opacity: 1;
    font-weight: bold;
    letter-spacing: 1px;
    filter: blur(0px);
}


.stellarnav > ul > li > a:hover b {
    transform: none;
    -webkit-transform: none;
}

.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: 11px;
    height: 1px;
    background: #f1ddb5;
    border-radius: 500px;
    top: 74%;
    left: 4%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .7s ease-out;
}

.stellarnav > ul > li:after {
    content: "";
    position: absolute;
    width: 11px;
    height: 1px;
    background: #f1ddb5;
    border-radius: 500px;
    top: 74%;
    right: -6%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .7s ease-out;
}
  
  .stellarnav > ul > li:hover:before {
    transform: translate(-50%, -50%) scale(1.5);
  }
  
    .stellarnav > ul > li:hover:after {
    transform: translate(-50%, -50%) scale(1.5);
  }


/*第二層*/
.stellarnav li li {    border: none;}
.stellarnav ul ul {padding: 0px;letter-spacing: 1px;}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 15px 10px;
    transition: all 0.3s;
    color: #444;
    font-size: 15px;
    background: #fff;
}

.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    border: none;
    margin-left: 10px;
    color:#7b0014;
    font-weight: 500;
    }



/*footer*/
.footer_info li p.tel:before {
    content: '營業時間：';
}
.footer{background: #7b0014;padding: 60px 0 0;}
.footer .center{    max-width: 1200px;}
.footer_logo img { width: 100%;}
.footer_logo {      max-width: 100%;}
.footer_info {
	grid-template-columns: 420px 1fr;
    align-items: center;
    padding: 0;
	grid-gap: 10px 30px;
}
.footer_info ul {
    display: flex;
    flex-direction: column;
}
.footer_info li{    padding: 10px 10px 15px;}
.footer_info li:nth-child(1) {   display: grid;     grid-template-columns: repeat(2, 1fr);}
.footer_info li p, .footer_info li p a{    color: #fff;}
p.add {
    grid-row: 2;
    grid-column: 2;
}
p.taxid {
    grid-row: 1;
    grid-column: 2;
}
.footer_info li:nth-child(2) {border-top: 1px solid #f1ddb5;}

.footer_menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(90px, 100%), 1fr));
}
.footer_menu a {
    margin: 0;
     padding: 10px;;
    transition: all 0.3s;
    background: #f0f0f000;
    border: 0;
	color: #ffffff;
}
.footer_menu a:hover {color: #f1ddb5;background: #f0f0f000;}

.car_page .footer_info li p:before{
    position: initial;
    display: inline;
}

.footer_menu a:nth-child(1){display: none;}
.copy {
    background: #ffffff00;
    color: #ffffff52;
    border: none;
    margin-top: 40px;
}
.copy a{    color: #ffffff52;transition:all 0.3s;}
.box_link {   display: none;}
.box_link a{transition:all 0.3s;}
.box_link a:hover {    background: #0084eb;    color: #fff;}

 @media screen and (max-width: 1300px) {
.footer .center{     padding: 0 5%;}
}
@media screen and (max-width: 1024px) {
.footer_info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	grid-gap: 10px;
	max-width: 800px;
}
.footer_logo {max-width: 400px; }
}


@media screen and (max-width: 768px) {
/*Footer/＝＝＝＝＝*/
#to_top { bottom:60px;}
#bottom_menu{    display: none;}
.footer.with_shopping_mode { padding:40px 0 80px; }
.footer_info li:nth-child(1) {   display: flex;   flex-direction: column;}
p.taxid {  order: 1;}
p.add {order: 2;}
.footer_menu {
	grid-template-columns: repeat(4, 1fr);
	padding-top: 20px;
	gap: 10px;
}
.footer_logo { text-align: center;     margin-bottom: 0;}
.copy{    padding-top: 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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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:none; 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) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*首頁文章*/

.module_i_news .title_i_box
{display: none;}

.i_blog_ri h5 {
    font-weight: 400;}

.module_i_news li a {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.module_i_news ul {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.module_i_news li a:before {
display: none;
}


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
h5.blog_le_t span {
    display: none;
}

h5.blog_le_t {
    font-size: 20px;
    font-weight: 400;
    font-family: "Kanit", sans-serif, "Noto Sans TC", serif;
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog_le .accordion {
    border: none;
    border-radius: 0px;
}

.blog_list_ri h5 {
    font-weight: 400;
}

.subbox_item a {
    display: flex;
    flex-wrap: wrap;
}

.blog_list_ri {
    padding: 0 15px 15px 15px;
}

.accordion li .link a {
    font-weight: 400;
    letter-spacing: 2px;
}

.blog_subbox {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.subbox_item a:after { background: rgba(0,0,0,0.5);}
.blog_le .accordion > li:hover .link, .blog_le .accordion > li.on_this_category .link {background: #7b0014;}
.blog_page .main_part {max-width:1600px;}
.submenu li.on_this_category a, .submenu a:hover {
    background: #EBE7DE;
    color: #444;
}
.submenu a {background: #fff;}
.blog_back a.article_btn_prev,.blog_back a.article_btn_next,.blog_back a.article_btn_back {
    background: #fff;
    color: #333;
    letter-spacing: 1px;}
.blog_back a {
    width: auto;
}

.blog_back {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.blog_back:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #00000017;
    bottom: 56px;
}

.edit {
    padding: 30px 0 90px;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.04em;
}

.subbox_item a:hover:before {
    transform: translate(-50%, -50%) scale(1);
    transition: all 500ms;
}
.path p, .path p a {
display: none;
}



.blog_list_le img {
    z-index: 999;
    padding: 20px;
}

.subbox_item:hover{background: linear-gradient(to left, #faf2d6, #e1c794);border:1px solid #e0c38a}

.subbox_item a:hover .blog_list_le img {
    border-radius: 5px;
    padding: 0px;
}


h4.blog_category_title {
    color: #444;
    font-size: 22px;
    font-weight: 400;
}

.subbox_item {
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid #0000001c;
    border-radius: 5px;
}

.subbox_item a:after{display: none;}
.subbox_item a:before{display: none;}

@media screen and (max-width: 640px) {
    .blog_subbox {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/*相關文章*/

.news_related{display: none;}

.news_related h6 span:before {
    color: #505050;
    font-weight: 400;
}


.news_related_list li a:hover {
    padding: 10px 10px 0px;
    transition: .3s;
}

.news_related_list li a {
    transition: .3s;
}

.news_related {
    background: #f3f3f3b5;
}

.news_related_list li a p {
    padding: 10px;
}
/*首頁文章*/

.animated-arrow{
    background: #b5a6cf;
    border-radius: 50px;}


    


/*聯絡我們/＝＝＝＝＝*/
.contact_form li.last blockquote, .contact_form li.last cite {padding: 1px;border: none;background: linear-gradient(45deg,#f1ddb5, #c9aa6e);color: #ffffff;}
.contact_form li.last cite {background: #7b0014;}
.contact_form li .form__insert {padding: 0px 10px;letter-spacing: 1px;}
input[type="checkbox"], input[type="radio"] {margin: 0 5px;}
.contact_form li {display: flex;flex-wrap: wrap;padding: 0 0 20px 0;border-bottom: none;}
.contact_form {margin-top: 20px;margin-bottom: 0;font-size: 14px;color: #444;letter-spacing: .5px;}
.blank_letter {
  font-size: 25px;
  font-weight: 400;
  padding-top: 0px;

}
.contact_editbox {
    margin: auto;
    height: 400px;
    max-height: 100%;
}

.contact_le_map a {display:none}

@media screen and (max-width: 1024px) {

.contact_content, .contact_editbox {
width: 100%;
}
.blank_letter {
padding: 50px 0px 10px 0px;
}
}

@media screen and (max-width: 600px){
.contact_form li .form__label {
  text-align: justify;
  background: transparent;
  font-weight: 400;
}  
}

/*相簿*/
.subalbum-menu h2 {display: none;}
.show-list .show_pic:hover img {transform: translate(0%, 0%) scale(1.1);transition: all 0.6s;}
.show-list .show_pic img{transition: all 0.6s;}
.overlay{display: none;}
.show-list .item {padding: 0px;}
.pic-list {grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));}
.show-list .show_name {
    font-weight: 400;
}
.show-list .item:hover .show_name {
    color: #333;
}
.other_subalbum li a p {
    position: absolute;
    line-height: 2;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    color: #fff;
    background: #0000005c;
    padding: 0px 15px;
    border-radius: 50px;
    border: 1px solid #EBE7DE;
    font-weight: 300;
    text-shadow: 0 0 2px #0000004d;
    font-size: 17px;
}


.show-list .show_pic:after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    background: #000;
    opacity: 0.2;
    transition: .5s ease-in-out;
}

.show-list .show_pic:hover:after {
    opacity: 0;
    transition: .5s ease-in-out;
}

.show-list {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

@media screen and (max-width: 768px) {
    .show-list {
        grid-template-columns: repeat(auto-fill, minmax(316px, 1fr));
    }
}


/*商品*/

.products-list .more {
    border: none;
    color: #444;
    background: #FFF;
    border-radius: 50px;
    font-weight: 400;
    border: 1pt solid #ceccda;
    box-shadow: 4px 4px 7px #ceccda40;
}

.products-list .item a:hover .more {
    background: #ceccda;
    color: #fff;
}

.products-list .price b {
    color: #ceccda;
}

.product-layer-two li a {
    color: #444;
}

.product-layer-two li li:hover > a {
    color: #A5CE4B;
}

.product-layer-two li li:hover > a:before {
    background: #A5CE4B;
}

.sidebarBtn {
    border: 2px #ddd solid;
}

.sidebarBtn .sp_price {
    color: #ceccda;
}

.inquiry_a1 {
    background: #ceccda;
}

.inquiry_a2 {
    background: #a5ce4b;
}

.prod_related h6 span:before {
    color: #444;
}

.pageIndex .products-list {
    grid-gap: 70px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.pageIndex .animated-arrow {
    color: #ffffff;
    display: inline-block;
    margin-top: 67px;
    height: 47px;
    line-height: 46px;
    overflow: hidden;
    width: 252px;
    text-align: center;
    position: relative;
    background: linear-gradient(to left, #faedd6, #ae8e4f, #ae8e4f, #faedd6);
    font-size: 18px;
}

/*首頁商品*/

.i_prod_tit, .i_video_tit {
    display: none;
    
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


@media screen and (max-width: 1024px) {

    .nav-header {
        width: 130px;
        padding-bottom: 10px;
    }

    .stellarnav ul {
        padding: 5px 0px 5px;
    }
}    


@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 55px; }
#to_top { bottom:60px;}
.footer_info {    justify-content: center;    padding-left: 30px;}
.footer_logo {    text-align: center;}
.stellarnav > ul > li > a:before{display: none;}
.header_area {
    padding: 10px 10px 0px;
}
.header_area.sticky {
    padding: 10px 10px 0px;
}
.stellarnav.mobile li.open li.open {
    padding: 0px;
}
.stellarnav.mobile li.open {
    background: #f3f3f3;
    padding: 0px 10px 10px 10px;
}

.nav-brand {
    width: 160px;
}

.main_header_area::after {
    top: -26px;
    height: 161%;
}

.stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile, .stellarnav .close-menu {
    padding: 7px 10px 15px 10px;
}

.pageIndex .stellarnav.mobile .menu-toggle, .stellarnav.mobile .dd-toggle, .stellarnav.mobile .close-menu, .stellarnav.mobile .call-btn-mobile, .stellarnav.mobile .location-btn-mobile {
    display: none;
}

.pageIndex .header_area.sticky .stellarnav.mobile .menu-toggle, .stellarnav.mobile .dd-toggle, .stellarnav.mobile .close-menu, .stellarnav.mobile .call-btn-mobile, .stellarnav.mobile .location-btn-mobile {
    display: block;
}
.stellarnav ul {
    padding: 0px;
}

.pageIndex .main_header_area::after {
    height: 150%;
}


.pageIndex .header_area {
    animation: none;
    }
    
    
    .pageIndex .stellarnav .menu-toggle:after {
        color: #ffffff;
    }
    
    .header_area.sticky .stellarnav .menu-toggle:after {
        color: #444;
    }
    
    .pageIndex .stellarnav .menu-toggle span.bars span {
        background: #ffffff;
    }
    
    .header_area.sticky .stellarnav .menu-toggle span.bars span {
        background: #444;
    }
    
    .pageIndex .stellarnav > ul > li > a {
        color: #444;
    }
    
    .pageIndex .header_area.sticky {
        padding: 2.5vw 2vw;
    }
    
    .stellarnav > ul > li:not(:nth-last-child(2)):after{display: none;}
    .pageIndex .header_area.sticky .stellarnav > ul > li:not(:nth-last-child(2)):after{display: none;}    
    
    .stellarnav.mobile.left > ul{ animation: slideInFromLeft .8s ease-out forwards;max-width: 100%; }
    
    
    .stellarnav.mobile > ul > li > a b {
        display: grid;
        justify-content: start;
    }
    
    .stellarnav > ul > li > a > b:nth-child(2) {
        font-size: 12px;
        letter-spacing: 2px;
        font-weight: 300;
        color: #aba07d;
        opacity: 1;
    }
    
    .stellarnav.mobile > ul > li > a {
        padding: 25px 43px 25px 10px;
    }
    
    .stellarnav.mobile > ul > li > a.dd-toggle {
        padding-top: 30px;
    }
    
    .stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a{
    margin-left: 0px;
    }
    
    .stellarnav.mobile li.open li a:not(.dd-toggle):not(.icon-plus) {
        margin-left: 30px;
        font-size: 15px;
        border-left: 1pt solid #bababa;
        padding: 10px 20px;
        color: #878787;
    }
    
    .stellarnav.mobile li.open {
        background: #fff;
    }
    
    .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;
        box-shadow: none;
    }
    
    .stellarnav.mobile li.open li.open {
        background: #ffffff;
        padding: 0px;
    }
    
    .stellarnav.mobile ul ul ul {
        margin-left: 30px;
    }
    
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
        top: -1px;}
    
    
    .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: #7b0014;color: #fff;
    }
    
    .stellarnav .icon-close:before,.stellarnav .icon-close:after{border-color: #fff;}
    .stellarnav > ul > li:before{display: none;}
    
    }
    
    @keyframes slideInFromLeft {
        0% {
          transform: translateX(-100%);
          opacity: 0;      
        }
        100% {
          transform: translateX(0);    
          opacity: 1; 
        }
      }
    




@media screen and (max-width: 600px) { 
    /*Footer/＝＝＝＝＝*/
.box_link {    text-align: center;}



.footer_info { padding-left: 10px;}

.contact_form li .form__label {
    background: transparent
}

.pageIndex .products-list {
    grid-gap: 50px;
}

.pageIndex .nav-header {
    width: 257px;
    margin-top: 5px;
}

.pageIndex .main_header_area::after {
    height: 135%;
}

.copy {
    background: #fdfdfd;
    color: #adadad;
    padding: 5px;
    letter-spacing: 0.04em;
}

.copy a {
    color: #6d6d6d;
    transition: all 0.3s;
}

.total_view {
    padding: 5px;
}

}

@media screen and (max-width: 400px) { 
    .footer_menu {
        max-width: 300px;
    }
}



