@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=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap');
body {font-family: "Noto Serif TC", serif; }
/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


&::-webkit-scrollbar {
    background: #fff;
    width: 7px;
}

&::-webkit-scrollbar-button {
    background: #fff;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #eee;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #5E6B46;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}

/*反白顏色*/
::-moz-selection {
    background-color: #818181;
    color: #fff;
}

::selection {
    background-color: #818181;
    color: #fff;
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

body { overflow-x: hidden;}
.bannerindex { position: relative;}
.bannerindex { position: relative; overflow: hidden; }

.pageIndex .bannerindex::after {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/senjinfloor/logosmall.png);
    background-size: contain;
    width: 200px;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5); 
    z-index: 1000000000000000000001;
    pointer-events: none;
    animation: banner-logo 4.5s forwards;
}

@keyframes banner-logo {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
        filter: blur(10px);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2) rotate(0deg);
        filter: blur(0);
    }
    35% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(180deg);
    }
    45% {  
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(180deg);
         filter: blur(0);
    }
    65% {  
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(360deg);
    }
    80% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(360deg);
       
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1) rotate(540deg);
        filter: blur(10px);
    }
}




.pageIndex .swiper-banner::before{
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/senjinfloor/logosmall2.png);
    background-size: contain;
    width: 290px;
    height: 139px;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: calc(51% + 100px); 
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5); 
    z-index: 1000000000000000000001;
    pointer-events: none;
    animation: action-logo 3s cubic-bezier(0.73, 0.08, 0.11, 0.99) both;
    animation-delay: 0.5s;
}
@keyframes action-logo {
    0%{
        opacity: 0;
    }
     20%{
        opacity: 1;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
.pageIndex .bannerindex::before {

   content: "";
    display: block;
    background: #3D4432;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1000000000000000000000;
    animation: banner-bg 1.5s forwards;
    
}

@keyframes banner-bg {
    0% {}

    50% {}

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


/**/
.pageIndex .stellarnav.desktop {
    opacity: 0;
    animation: banner-navbar 0.7s forwards;
    animation-delay: 1s;
    position: relative;
}

.stellarnav.desktop { 
    opacity: 1; 
    z-index: 0;
}

.pageIndex .me_tp_features { 
    opacity: 0;
    animation: banner-navbar 0.7s forwards;
    animation-delay: 1s;
}

/* 進場動畫 */
@keyframes banner-navbar {
    0% {
        top: 97px;
        opacity: 0;
    }
    100% {
        top: 0px;
        opacity: 1;
    }
}

.pageIndex .stellarnav.desktop > ul > li {
    opacity: 0;
    transform: translateY(20px);
    animation: navItemFade 0.6s forwards;
}

.pageIndex .stellarnav.desktop > ul > li:nth-child(1) { animation-delay: 1s; }
.pageIndex .stellarnav.desktop > ul > li:nth-child(2) { animation-delay: 1.2s; }
.pageIndex .stellarnav.desktop > ul > li:nth-child(3) { animation-delay: 1.4s; }
.pageIndex .stellarnav.desktop > ul > li:nth-child(4) { animation-delay: 1.6s; }
.pageIndex .stellarnav.desktop > ul > li:nth-child(5) { animation-delay: 1.8s; }
.pageIndex .stellarnav.desktop > ul > li:nth-child(6) { animation-delay: 2s; }
.pageIndex .stellarnav.desktop > ul > li:nth-child(7) { animation-delay: 2.2s; }
.pageIndex .stellarnav.desktop > ul > li:nth-child(8) { animation-delay: 2.4s; }


@keyframes navItemFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1) {position: relative; }
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2) { position: relative; }


.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/senjinfloor/banner01.png);
    width: 50%;
    height: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 10001;
    pointer-events: none;
    left: 20%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: banner01-fade-in 1.5s ease-out forwards, 
               banner01-blink 3s ease-in-out infinite;
    animation-delay: 1.5s, 2s; }

.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/senjinfloor/banner01.png);
    width: 50%;
    height: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 10001;
    pointer-events: none;
    left: 20%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: banner01-fade-in 1.5s ease-out forwards, 
               banner01-blink 3s ease-in-out infinite;
    animation-delay: 1s, 2s; 
}


@keyframes banner01-fade-in {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        filter: blur(0);
    }
}


@keyframes banner01-blink {
    0%   { opacity: 1; }
    50%  { opacity: 0.4; }
    100% { opacity: 1; }
}


/* ============================== */
/* 預設不顯示動畫圖 */

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before{ pointer-events: none;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before{ pointer-events: none;}

/* ============================== */
@media screen and (max-width: 768px) {
.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before {width: 280px;height: 70%; left: 18%;top: 50%;}
.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {width: 280px;height: 70%;left: 18%;top: 50%;}

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*背景*/
#content {
    min-height: 80vh;
    background: #ffffff;
    background-size: cover;
}

#content_main {
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    z-index: 60;
    position: relative;
    margin-top: 100vh;
    background: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
}



#to_top {
     position: fixed;
    right: 10px;
    z-index: 600;
    width: 50px;
    height: 50px;
    padding-top: 10px;
    font-size: 12px;
    color: #3D4432;
    text-align: center;
    text-decoration: none;
    background: #ffffff;
    border-radius: 0%;
}

#to_top i:before, #to_top i:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100px;
    background: #3D4432;
    transition: all 100ms ease-in-out;
}




/*上方選單解除滑動固定
.header_area.sticky { position:relative;}*/

/*Main/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*header*/

.header_area {
    position: fixed;
    z-index: 9999;
    padding: 0px;
    background: #ffffff00;
    width: 100%;} 

.header_area.sticky{
    display: block;
    opacity: 1;
    
  }

.header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: #3d443261;
}
.pageIndex .sticky .main_header_area,
.main_header_area {
    background: transparent;
    position: relative;
}

/* 偽元素 */
.pageIndex .sticky .main_header_area::after,
.main_header_area::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;                
    background: #fff;
    transform: scaleX(0);       
    transform-origin: center;   
    animation: border-slide 1s ease-out forwards;
    animation-delay: 3.5s;
}

@keyframes border-slide {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/**/

.main_header_area .container {   max-width: 97%;}
.pageIndex .sticky .header_area {   position: fixed;   width: 100%;}
.pageIndex .sticky .main_header_area,.main_header_area {   
    background: #ffffff00;
    transition: all 0.3s;
}

.sticky .main_header_area{background:transparent 0;   transition: all 0.3s; } 
.navigation {
   grid-template-columns: 200px 1fr; 
    grid-gap: 0 20px;
    justify-items: end;
}

.sticky .navigation {
    grid-template-columns: 1fr;
}


/*LOGO*/
.nav-brand {width: 180px;margin-top: 5px;}
.pageIndex  .nav-brand img {  filter: contrast(0) brightness(100); }
.pageIndex .sticky .nav-brand img {  transition: all 0.3s;  filter: none;}
.sticky .nav-brand {width: 0px;}
/*選單*/
.stellarnav ul {
    margin: 0;
    padding: 0;
    text-align: right;

}
.sticky .stellarnav ul {
    margin: 0;
    padding: 0;
    text-align: center;
}
.stellarnav > ul > li > a, .stellarnav li.has-sub > a {
    font-weight: 400;
    position: relative;
    padding: 0;
    color: #ffffff;
    padding: 0 0px 0 0;
    margin: 0px;
    letter-spacing: 2px;
    width: 6vw;
}

/*hover*/
.stellarnav > ul > li > a {
    position: relative;
    overflow: hidden;
}

.stellarnav > ul > li > a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 0.5px; 
    width: 100%;
    background: #ffffff98;
    transform: rotate(20deg) scaleX(0);
    transform-origin: left top;        
    transition: transform 0.5s ease;
    opacity: 1;
}

.stellarnav > ul > li:hover > a,
.stellarnav > ul > li.has-sub:hover > a {
    color: #fff;
}

.stellarnav > ul > li:hover > a::after,
.stellarnav > ul > li.has-sub:hover > a::after {
    transform: rotate(20deg) scaleX(1);
}

/**/

.stellarnav > ul:hover > li {
    opacity: .8;
    transition: .3s ease-in-out;
}
.stellarnav > ul:hover > li:hover {
    opacity: 1;
    transition: .3s ease-in-out;
}

/*最後一顆按鈕*/
.stellarnav > ul > li:nth-last-child(1) > a{margin: 0;}

/*下拉*/
.stellarnav ul ul, .stellarnav ul ul ul { background: transparent; backdrop-filter: blur(10px);}
.stellarnav > ul > li.drop-left > ul { right: auto; left: 50%; transform: translateX(-50%);}
.stellarnav li.drop-left ul ul { left: 100%; right: auto;}
.stellarnav li li {     border: 1px solid transparent;background: #ffffff87; border-bottom: 1px solid #ffffff;}

/*右拉箭頭*/
.stellarnav li.has-sub > a:after{display: none;}
.stellarnav li li.has-sub > a::after { border-left: 6px solid  #3D4432;}
.stellarnav li li.has-sub:hover > a::after { border-left: 6px solid var(--TextColor_4); border-top: 6px solid transparent;}

/*下拉選單*/
.stellarnav li.has-sub > ul > li.has-sub > a, .stellarnav li.has-sub > ul > li > a { color: #3D4432; padding: 7px 20px 7px 5px; font-family: "微軟正黑體", sans-serif;}
.stellarnav li li > a, .stellarnav li li.has-sub > a { color:  #3D4432; font-size: 15px; font-weight: normal; padding: 7px 5px; border-left: 1px solid transparent; background: transparent; transition: all 0.3s;}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a { color: var(--MainColor); padding-left: 10px; transition: all 0.3s;}
.stellarnav li ul:hover li, .stellarnav li ul li.has-sub ul:hover li { opacity: .8; transition: .3s ease-in-out;}
.stellarnav li ul:hover li:hover , .stellarnav li ul li.has-sub ul:hover li:hover { opacity: 1; transition: .3s ease-in-out;}
.stellarnav li ul:hover li > a, .stellarnav li ul li.has-sub ul:hover li > a { opacity: .8; transition: .3s ease-in-out;}
.stellarnav li ul:hover li:hover > a, .stellarnav li ul li.has-sub ul:hover li:hover > a { opacity: 1; transition: .3s ease-in-out;}

@media screen and (max-width: 1400px) {
.stellarnav > ul > li > a, .stellarnav li.has-sub > a {width: 100%;}}
@media screen and (max-width: 1024px) {
    /*header*/  
    .header_area.sticky {   position: fixed;}
    .pageIndex .main_header_area {  background: transparent;}
    
   /*選單*/
   .stellarnav ul {
    margin: 0;
    padding: 0;
    text-align:center;
}
    /*LOGO*/
    .pageIndex .nav-brand img {filter: contrast(0) brightness(100); }

    /*上方購物車*/
    .me_tp_features {text-align: center;}
}
@media screen and (max-width: 980px) {
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0;
    align-items: center;
    justify-items: center;
    transition: all 0.9s ease;
}
.sticky .navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0;
    align-items: center;
    justify-items: center;
    transition: all 0.9s ease;
}
.sticky .stellarnav ul {
    margin: 0;
    padding: 0;
    text-align: center;
}
}
@media screen and (max-width: 768px) {
   .header_area {
    position: relative;}

  .header_area {
    display: block !important;
    opacity: 1 !important;
    animation: none !important;
  }


/*手機側邊選單*/
.stellarnav li li {background: transparent;}
.header_area { background: #3d4432;}
.pageIndex .stellarnav .menu-toggle span.bars span {   background: #ffffff;}
.sticky .stellarnav .menu-toggle span.bars span {  }
.pageIndex .stellarnav .menu-toggle:after {  color: #ffffff;    }
.sticky .stellarnav .menu-toggle:after {   }

.stellarnav .menu-toggle span.bars span {   background: #ffffff;}
.stellarnav .menu-toggle:after {     color: #ffffff;}
.stellarnav > ul > li > a::after {display: none;}
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {  max-width: 100%;   background: #ffffff;  backdrop-filter: saturate(100%) blur(10px);  transition: all 1s;   left: 0;}
.stellarnav.mobile.left .close-menu {      background: none;          color: #3D4432; }
.stellarnav .icon-close:after {    border-bottom: solid 3px #3D4432;}
.stellarnav .icon-close::before {    border-bottom: solid 3px #3D4432;}
.stellarnav a.dd-toggle .icon-plus:after {    border-bottom: solid 3px #3D4432;}
.stellarnav a.dd-toggle .icon-plus:before {    border-bottom: solid 3px #3D4432;}
.stellarnav > ul > li:not(.tp_links) > a:before {display: none;}
.stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile, .stellarnav .close-menu { padding: 14px 15px;     position: relative;   }
.stellarnav.mobile ul {    background: none;  }
.stellarnav.mobile li.open li.open {     background: transparent;}
.stellarnav.mobile li.open {   background: none;  }
.stellarnav.mobile > ul > li {         border-bottom: 1px #3D4432 solid; text-align: center;     margin: 0px }
.stellarnav.mobile > ul > li > a {text-align: left;overflow: auto;height: auto;line-height: 200%;display: block; }
.stellarnav > ul > li:after {display: none;}
.stellarnav li li {   border-bottom: 1px #372d2d solid; border: none;    margin-bottom: 0px; }
.stellarnav>ul>li>a {display: inline-block;width: 100%;}
.stellarnav > ul > li:nth-last-child(1) > a{margin: 0 5px;}
.stellarnav > ul > li > a, .stellarnav li.has-sub > a { width: auto;}
/**/

.pageIndex .main_header_area, .main_header_area {  background:transparent;}
.sticky .main_header_area {  backdrop-filter:unset;}
.stellarnav > ul > li > a, .stellarnav li.has-sub > a {  color: #3D4432;}
.stellarnav > ul > li > a:hover,.stellarnav li.has-sub > a:hover {color: #5E6B46;}
.stellarnav > ul > li:hover > a, .stellarnav > ul > li.has-sub:hover > a { color: #5E6B46;}


/*LOGO*/
    .pageIndex .nav-brand img {filter: none; }
    .nav-brand { width: 45%; margin-top: 15px;}
    .sticky .nav-brand { width: 40%;}

}

/*上面購物車*/
.me_tp_features {width: 100%; text-align: right;}
.sticky .me_tp_features {width: 100%; text-align: center;}
.me_tp_features a { color: #ffffff;}
.sticky .me_tp_features a {color: #ffffff;}

.me_tp_features a:hover.tp_btn_cart  {color: #9fad83;}
.me_tp_features a:hover.tp_btn_notice  {color: #9fad83;}

.tp_links {display: none;}
.shop_search_btn {
    background: #3D4432;
    color: #fff;
    font-size: 13px;
    border: none;
    border-radius: 20px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 4px 12px;
    cursor: pointer;
    height: 100%;
}



 /*下拉頁面隱藏下方選單*/
 body.other_select_page .promotion_title {
    display: none;}

body.other_select_page .other_promotion { display: none;}
.path {display: none;}

body.other_select_page .page {
        margin: auto;}
/* = = = 頁尾 = = = =  = = = = = = = = */


/*footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.box_link {
    position: absolute;
    top: 0%;
    right: 0px;
    width: auto;
    max-width: 350px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    max-height: 100%;
    justify-content: flex-end;
    z-index: 10;
}

.box_link a{border: 1px #ffffff solid;    color: #ffffff;}
.box_link a:hover {
    border: 1px #ffffff solid;
    color: #ffffff;
}
.footer {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-top: 0;
    z-index: 99;
    background: #3D4432;
}
.footer .center {
    position: relative;
    max-width: 90%;
    padding: 60px 0 0 0;
    font-size: 13px;
}
.footer_info {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0;
    position: relative;
    flex-direction: column;
    gap: 10px;
    font-family: var(--SFontE);
}
.footer_logo {
    background-image: url(https://pic03.eapple.com.tw/senjinfloor/footerlogo.png) !important;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
   
}

.footer_logo img {
    opacity: 0;
}


.footer_info ul {
    position: relative;
    border-top: 1px solid #ffffff91;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
}
/* 聯絡資訊 */
.footer_info li{
    padding: 0;
}
.footer_info li p {
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
    color: #ffffff;
}
.footer_info li p a{
    color: #ffffff;
}


/* 網頁連結 */
.footer_info li:nth-child(2) {   
    right: 0;
    top: 0;
}
.footer_menu {
    display: flex;
    flex-wrap: wrap;
}
.footer_menu a:first-child{
    display: none;
}
.footer_menu a {
    color: #ffffff;
    background: transparent;
    border: 0;
    letter-spacing: 1.25px;
    margin: 0 0 10px;
    transition: all .3s cubic-bezier(.165,.84,.44,1);
}

.footer_menu a:hover {
    background: transparent;
    color: #c0c0c0;
   
}


/**/
.copy {background:transparent; color: #ffffff; border:none; padding: 10px 0;margin: 10px 0 0;}
.copy a{color: #ffffff;transition:all 0.3s;}
.copy a:hover {color: #5E6B46;}
.box_link a {
    display: block;
    width: 40px;
    border: 0px #ccc solid;
    border-radius: 5px;
    padding: 5px;
    font-size: 24px;
    text-align: center;
    margin: 2px;
}
.box_link a{transition:all 0.3s;}
.box_link a:hover {background: #5E6B46;  color: #ffffff;}
.box_link {}



/*上方選單右邊設定 臉書/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}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/*內頁BANNER 設定*/
/* ===== 共用 Banner 樣式 ===== */
.banner {
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    flex-direction: column;
    height: 50vw;
    max-height: 750px;
}

/* ===== 各頁 Banner 圖片 ===== */

.banner.banblog { background-image: url(https://pic03.eapple.com.tw/senjinfloor/banner.jpg); }
.banner.banC,
.banner.banD,
.banner.banB,
.banner.banE,
.banner.banA,
.banner.banF{ display: none;}


/* ===== Banner 文字 ===== */
.banner h5 {
    color: #ffffff;
    font-size: 24px;

}

.banner h5:before {
    content: "";
    font-size: 50px;
    white-space: pre-line;
    display: block;
    color: #ffffff;
    font-family: "Scope One", serif !important;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.1;
    -webkit-animation: imgSlideUpAnimation 1s 0.1s ease-in-out forwards;
    animation: imgSlideUpAnimation 1s 0.1s ease-in-out forwards;
    opacity: 0;
}

/* ===== 各頁 Banner 文字內容 ===== */

body.blog_page .banner h5:before,
body.blog_in_page .banner h5:before { content: 'ARTICLE'; }

/* ===== 動畫效果 ===== */
@-webkit-keyframes imgSlideUpAnimation {
    0% { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); }
    100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes imgSlideUpAnimation {
    0% { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); }
    100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

/* ===== RWD (手機版) ===== */
@media screen and (max-width: 768px) {
    .banner {
        max-height: none;
        background-attachment: scroll; /* 手機避免 fixed 卡頓 */
    }
    .banner h5:before { font-size: 40px; }
    .banner h5 { font-size: 20px; }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*頁碼*/
.path p, .path p a {
    display: none;
    text-align: right;
    line-height: 24px;
    font-size: 13px;
    color: #3d3938;
}




/*按鈕*/
.animated-arrow {
    background: transparent;
    color: #3D4432;
    display: inline-block;
    margin-top: 20px;
    height: 50px;
    overflow: hidden;
    width: 250px;
    text-align: center;
    position: relative;
    border-radius: 0px;
    border: 1px solid #3D4432;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.car_page .information_left {
    display: block;
}

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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;
  
    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;
    
    width: 100%;
    margin-left: 0;
}

.product-layer-two li:hover ul {
    border: none !important;
    
}

.product-layer-two li li {
    display: block;
    padding: 0;
    transition: all ease .3s;
}

.product-layer-two li.active a {
    font-weight: bold;
    border: 0px #ccc solid;
}




.product-layer-two li li a {
    padding: 5px 10px;
    background-color: #f3f3f32b;
}

.product-layer-two li li:hover>a {
    background: #fff;
    color: #3D4432;
}

.product-layer-two>li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    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%;
    background: transparent;
    padding: 20px;
}

.product-layer-two li li:hover {
    margin-left: 15px;
    border-bottom: 1px dotted #ccc;
}

.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: #3D4432;
}

.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;
}

#prod_thumbSwiper .swiper-slide {
    padding-top: calc(25% - 2px);
    position: relative;
}

#prod_thumbSwiper img {
    position: absolute;
    left: 0;
    top: 0;
}

/*外層*/
.products-list .more {
    border: 1px solid #3D4432;
    color: #3D4432;
    font-size: 16px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
    transition: all .5s;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
}

.products-list .item a:hover .more {
    background: #3D4432;
    color: #ffffff;
    letter-spacing: 2px;
}

.products-list .name {
    font-size: 15px;
    color: #444;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
}

.products-list .price b {
    color: #3D4432;
    width: calc(50% - 10px);
}

.products-list .item {
    position: relative;
    background-color: transparent;
    padding: 5px;
}

/*左側分類*/

.product-layer-two li a {
    position: relative;
    background: transparent;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color: #3D4432;
    border-bottom: 1px #3D4432 solid;
    border-left: 0;
    border-right: 0;
    border-top: 0;
}

.product-layer-two li:hover a {
    color: #3D4432;
    border: 1px #3D4432 solid;
    background-color: #3D443200;
}
/*下拉圖示*/
.product-layer-two li i.close::before {
    content: '\f056';
    color: #3D4432;
}

/*左邊分類底色*/
.product-layer-two>li.active {
    background: transparent;

}

/*產品資訊標題*/
.pd_tabTitle li.activeTab a {
    color: #3D4432;
}

element.style {
    color: #3D4432;
}

/*產品資訊內文*/
element.style {
    color: #3D4432;
}
.pd_tabInner_contain {
    padding-top: 20px;
    color: #3D4432;
}

/*右側商品資訊*/
.product_info li .txt_box {
    display: inline-block;
    vertical-align: top;
    color: #3D4432;
}

/*標題*/
.sidebarBtn h2 {
    color: #3D4432;
    font-size: 24px;
}

.sidebarBtn .price {
    color: #3D4432;
    font-size: 22px;
}

.sidebarBtn .sp_price {
    display: block;
    color: #bd2424;
    font-size: 22px;
    font-weight: bold;
}
/*加入購物車*/
.inquiry_a3 {
   background: #b6a495;;
}
/*加入詢價*/
.inquiry_a1 {
    background: #dac0a7;
}
/*檢視詢價車*/
.inquiry_a2 {
    background: #dac0a7;
}


.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
    letter-spacing: 2px;
    background: #b9a084;
}

/*底*/
.sidebarBtn {
    padding: 15px;
    display: inline-block;
    width: 28%;
    vertical-align: top;
    border: 0px #dddddd00 solid;
    background: transparent;
}

/*內文*/
.product_info li span {
    display: block;
    font-size: 12px;
    color: #3D4432;
    margin-bottom: 3px;
    letter-spacing: 1px;
}


/*底下相關商品*/
.prod_related {
    background: #e9dfd3;
    padding: 25px 15px;
}

.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    color: #3D4432;
}

.related_list li a {
    display: block;
    padding: 0px;
    background: #fff;
    height: 100%;
}

/*詢價車*/
/*回產品頁*/
.rewrite_simple {
    background: #C2AE9F url(../images/simple_left.png) 10% center no-repeat;
}


/*送出詢價*/
.send_simple {
    background: #C2AE9F url(../images/simple_right.png) 88% center no-repeat;
}

.shopping-cart .cart_head {
    background: #C2AE9F;
    color: #fff;
}

/*訂購資料*/
.formbox_form li .form__label {
    display: block;
    width: 100%;
    text-align: left;
    color: #3D4432;
}

.form label {
    display: block;
    position: relative;
    float: left;
    width: auto;
    margin-right: 20px;
    margin-bottom: 5px;
    color: #3D4432;
}

.form label.Bigcheck {
    float: none;
    display: inline-block;
    color: #3D4432;
    font-size: 15px;
    margin-left: 20px;
    top: 5px;
}

.declaration {
    background: #C2AE9F;
    line-height: 40px;
    padding: 5px 15px;
}

.shopping-cart .cell.product_name p {
    width: calc(100% - 90px);
    color: #3D4432;
}

.shopping-cart .cell {
    padding: 10px;
    text-align: center;
    width: 20%;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 5px;
    color: #3D4432;
}

.total_amount li b {
    font-weight: normal;
    color: #3D4432;
}

.total_amount li span {
    color: #3D4432;
}


.total_amount li {
    margin: 10px 0;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    color: #3D4432;
}

.total_amount li .couponData, .total_amount li .transFree {
    color: #ff4f4f;
}

.send_simple:hover {
    background-color: #b9a084
}

.rewrite_simple:hover {
    background-color: #b9a084
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*底色通常為白色*/
.payer {
    background: #EAD9CE;
}


/*匯款資訊*/
.contact_le_map a {
    display: block;
    background: #C2AE9F;
    text-align: center;
    padding: 10px;
    color: #3D4432;
}
.blank_letter {
    padding-top: 30px;
    font-size: 26px;
    color: #3D4432;
    background-position: left bottom;
    background-repeat: no-repeat;
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*文章管理*/
h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color: #3D4432;
    letter-spacing: 2px;
    margin-bottom: 7px;
    font-family: "Noto Serif TC", serif; 
}

/*側邊標題*/
.accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color: #3D4432;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

.blog_le .accordion>li:hover, .blog_le .accordion>li.on_this_category {
    background: #cab094 !important;
}

.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border: 1px #3D4432 solid;
    overflow: hidden;
    border-bottom: 1px #3D4432 solid;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0px
}
/*次分類底色*/
.submenu {
    display: none;
    background: #C2AE9F45;
    font-size: 14px;
}
/*次分類hover*/
.submenu li.on_this_category a, .submenu a:hover {
    background: #C2AE9F;
    color: #FFF;
}
/*右側文章排版*/
.blog_subbox {

    padding: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

/*標題*/
.blog_list_ri h5 {
    font-weight: 900;
    font-size: 20px;
    color: #3D4432;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

/*時間*/
.blog_list_ri em {
    font-size: 14px;
    color: #9d9c9c;
    font-style: normal;
    display: block;
}

/*內文*/
.blog_list_ri p {
    font-size: 15px;
    color: #3D4432;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
}
/*文章圖片*/
.blog_list_le img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.blog_subbox {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: 20px;
}

/*內文hover*/
.subbox_item a {
    display: flex;
    grid-template-columns: 160px 1fr;
    position: relative;
    grid-gap: 20px;
    flex-direction: column;
}

.subbox_item a:before {
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    font-size: 15px;
    color: #999;
    transition: all .6s;
}

.subbox_item a:before {
    transform: translate(-50%, -50%);
    left: 50%;
    right: 0;
    bottom: -15%;
    letter-spacing: 2px;
    opacity: 0;
    display: block;
    color: #fff;
    background: #3D4432;
    border-radius: 15px 15px 0 0;
    width: 100%;
    padding: 8px 0;
    text-align: center;
}

.subbox_item a:hover:before {
    bottom: -6%;
}

.subbox_item a:hover:before, .subbox_item a:hover:after {
    opacity: 1;
    transition: all .5s;
}

.blog_subbox * {
    transition: all 0.6s ease;
}

.subbox_item a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: #c2ae9f42;
    opacity: 0;
    transition: all .5s;
}


/*文章內頁*/
h4.blog_category_title {
    color: #3d3938;
    font-size: 30px;
    padding: 10px 0;
    margin-bottom: 20px;
}

.blog_box_edit * {
    line-height: 150%;
    color: #3d3938;
}

body.blog_in_page.article_a .accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color: #3D4432;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}


body.blog_in_page.article_a .blog_le .accordion>li:hover, .blog_le .accordion>li.on_this_category {
    background: #C2AE9F !important;
}

body.blog_in_page.article_a h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color: #3D4432;
}

/*隱藏文章縮圖*/
.articel_mainPic img {display: none;}


/*分享文字*/
.toShareNews {
    font-size: 1em;
    color: #a1a1a1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

/*上一頁*/
.blog_back a.article_btn_prev { background: #C2AE9F;}
.blog_back a.article_btn_next {background: #C2AE9F;}
/*文章按鈕*/
.blog_back a.article_btn_back {
    background: #A49481;
}


.blog_back a.article_btn_back:hover, .blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
    background: #3D4432;
}

/*相關文章*/
.news_related {
    background: #e9dfd3;
    padding: 25px 15px;
}

.news_related h6 span:before {
    content: '相關文章';
    font-size: 24px;
    color: #3D4432;
}

/*按鈕*/
.lastPage {
    font-size: 16px;
    color: #fff;
    background: #3D4432;
    padding: 10px 20px;
    display: block;
    margin: 40px auto;
    width: 130px;
    text-align: center;
}

/*首頁-文章管理*/
.module_i_news li a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: #afa89f61;
    opacity: 0;
    border: 0px #3d3938 solid;
}

.module_i_news li a {
    position: relative;
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-gap: 10px;
    border: 1px solid #3D4432;
}

/*首頁-文章顯示*/
.module_i_news li:nth-child(n+5) {
    display: none !important;
}

/*背景*/
.module_i_news {
    padding: 50px 20px;
    background: #ffffff ;
    background-size: cover; 
}




/*標題*/

.module_i_news .title_i_box h4 {
    font-size: 24px;
    color: #3D4432;
    font-weight: bold;
    letter-spacing: 3px;
}

.module_i_news .title_i_box h4::before{
    content: "NEWS";
    display: block;
    color: #3D4432;
    font-size: 80px;
    letter-spacing: 0px;
    margin-bottom: -5px;
    font-weight: 600;
    font-family: "Bodoni Moda", serif;
}






/*文章標題*/
.i_blog_ri h5 {
    font-weight: 500;
    font-size: 20px;
    color: #3d3938;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

/*時間*/
.i_blog_ri em {
    font-size: 14px;
    color: #858585;
    font-style: normal;
    display: block;
    margin: 7px 0;
}

/*內文*/
.i_blog_ri p {
    font-size: 15px;
    color: #3d3938;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*相簿*/

.show-list .item:hover .show_name {
    color: #C2AE9F;
}
.other_subalbum li {
    display: block;
    background: transparent;
    width: 100%;
    margin: 0;
    border: none !important;
}


/*下方分類按鈕*/
.other_album_choice li {
    background: #C2AE9F;
    font-size: 15px;
    display: inline-block;
    border-radius: 18px;
    padding: 7px 20px;
    margin: 0 7px 7px 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: #2d2d2d;
    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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




@media screen and (max-width: 768px) {

    /*文章*/
    .path p, .path p a {
        text-align: left;
    }


}

@media screen and (max-width: 600px) {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*側邊按鈕*/





/*表單*/
.contact_form li.last cite {
    background: #3D4432;
    color: #fff;
}

.contact_form li.last blockquote, .contact_form li.last cite {
    display: block;
    vertical-align: top;
    font-style: normal;
    padding: 7px;
    text-align: center;
    border: 1px #3D4432 solid;
    width: 150px;
    max-width: calc(50% - 10px);
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: static;
    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;
    }
}

/*大圖*/
.swiper-banner .swiper-slide img {
    width: 100%;
    height: auto;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

@media screen and (max-width: 1600px) {


    /*表單*/
    .contact_form li .form__label {
        width: 100%;
        margin-left: 0;
        text-align: left;
        font-weight: bold;
        padding: 5px;
        background: transparent;
    }
}

@media screen and (max-width: 1400px) {
    .container {
        max-width: 1200px;
        transition: all 0.3s;
    }
}

@media screen and (max-width: 1200px) {
    

    .footer_logo {
        width: 300px;
    }

 

    .stellarnav>ul>li>a {
        font-size: 16px;
    }
}

@media screen and (max-width: 980px) {
 
    .main_header_area .container .navigation> * {
        grid-row: unset;
        grid-column: unset;
        text-align: center;
    }
    .footer_info li:nth-child(1), .footer_info li:nth-child(2) {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {

    /*Footer/＝＝＝＝＝*/
    .footer_info li p { text-align: left;  display: flex; color: #ffffff; flex-direction: row; }
    .footer.with_shopping_mode { padding: 30px 0 60px;}
    .footer_logo {  text-align: center;}
    .footer_info li {  width: 80%; }
    .footer_info ul {  display: flex; flex-wrap: nowrap;  flex-direction: column; align-items: center;}
    .footer_info { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; align-items: flex-start; padding: 10px;flex-direction: column;}
    .footer_info li:nth-child(1) {  display: flex; flex-wrap: wrap; justify-content: center; flex-direction: column; text-align: center; }
    .footer_menu {   display: grid; grid-template-columns: repeat(auto-fit, minmax(min(135px, 100%), 1fr)); gap: 5px;}
    .footer_menu a { margin: 0; text-align: center; transition: all 0.3s; color: #ffffff; background: #ffffff00; border: 1px #ffffff solid; }
    .footer_menu a:hover {  border: 1px #e0e0e0 solid; }

    /* 開啟手機板下方按鈕所需設定 */
    #to_top {  bottom: 60px; }
   .box_link { display: none; }
    #bottom_menu li a {  background: #ffffff;}
    #bottom_menu {  flex: 1;  float: none;  border-right: 1px solid #ffffff;  z-index: 9998;  box-shadow: none;  border-top: 1px solid #ffffff; }
    #bottom_menu li a:hover { color: #3d4432;}

    /*產品頁面*/


    .product_menu_list>h5 {
        color: #3D4432;
        font-size: 18px;
        padding: 10px;
    }

    .product_menu_list>h5 a {
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        text-align: right;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
    }

    a.pd_menu_toggle {
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        border: 1px #3D4432 solid;
        border-radius: 20px;
    }

    /*產品內頁-標題名稱*/
    .mobile_product_name {
        display: block;
        margin-bottom: 10px;
        color: #3D4432;
    }

    /*產品資訊*/
    .sidebarBtn {
        padding: 15px;
        display: inline-block;
        width: 100%;
        vertical-align: top;
        border: 0px #dddddd00 solid;
    }

    .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% !important;
        border-right: none;
    }

    .product_page .product_menu_list>h5 {
        display: block;
    }

    .product_page .product_menu_list {
        width: 100% !important;
        order: 0;
        min-height: unset;
    }

    /*上方購物車*/
    .me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice {
        display: none;
    }

    /*購物車內頁*/
    .inquiry_a1 {
        background: #4d4d4d;
    }

    .inquiry_a2 {
        display: none;
    }

    .inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
        letter-spacing: 2px;
        background: #C2AE9F;
    }

    /*文章*/
    .blog_subbox {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        grid-gap: 5px;
    }
}

@media screen and (max-width: 600px) {}