@charset "utf-8";
/* *************風格木地板****************** */
/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
/* "Noto Sans TC" */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');
/* "Noto Serif TC" */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');




/* 英文字體 Cormorant Infant */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&display=swap');
/* 英文字體 Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* 英文字體 Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


/*網站全域設定/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
:root {
  /* --Color: #1c3459; */
  --MainColor: #465169; /*網站主要色系*/
  --SubColor: #1c1c1c; /*網站文字色*/
  --SubColor1: #eeeeee; /*網站輔助色系1*/
  --SubColor2: #fdfcf8; /*網站輔助色系2*/
  --SubColor3: #a1b1cb; /*網站輔助色系3*/
  --SubColor4: #c5d0e2; /*網站輔助色系4*/  
  --SubColor5: #eee; /*網站輔助色系5*/ 
  --SubColor6: #181818; /*網站輔助色系6*/ 
  --SubColor7: #8C8C91; /*網站輔助色系7*/ 
  --SubColor8: #d3d9e4; /*網站輔助色系8*/
  --SubColor9: #293943;/*網站輔助色系9*/
  --SFonts: "Inter", "Noto Sans TC",sans-serif;/*英文字體-無襯線*/
  --SFontE: "Montserrat", "Noto Sans TC", serif;/*英文標字體*/  
  --SFontC: "Noto Serif TC", serif;/*中文標字體*/
  --SFont: "Noto Sans TC", serif;/*內文黑體字*/
  --pd100:100px 0;
  --m100:100px;
  --m50:50px;
  --m30:30px;
  --f80:80px;
  --f60:60px;
  --f52:52px;
  --f48:48px;
  --f44:44px;
  --f40:40px;
  --f36:36px;
  --f32:32px;
  --f28:28px;
  --f24:24px;
  --f22:22px;
  --f20:20px;
  --f18:18px;
  --f17:17px;
  --f16:16px;
}
@media (min-width:1520px) {
  :root{ }
}
@media (max-width:1024px) {
:root{
  --f80:70px;
  --m50:40px;
  --m30:25px;
  --f52:48px;
  --f48:40px;
  --f44:38px;
  --f40:36px;
  --f36:32px;
  --f32:28px;
  --f28:24px;
  --f24:22px;
  --f22:20px;
  --f20:18px;
}
}
@media (max-width:768px) {
:root{
  --pd100:70px 0;
  --m100:70px;
  --f80:60px;
  --m50:30px;
  --m30:20px;
  --f52:44px;
  --f48:32px;
  --f44:30px;
  --f40:28px;
  --f36:26px;
  --f32:24px;
  --f28:22px;
  --f24:20px;
  --f20:17px;
  --f18:16px;
  --f17:16px;   
  --f16:15px;
}
}
@media (max-width:600px) {
:root{
  --pd100:50px 0;
  --m100:50px;
  --m50:25px;
  --f80:52px;
  --f52:36px;
  --f48:28px;
  --f44:26px;
  --f40:24px;
  --f36:22px;
  --f32:20px;
  --f28:20px;
  --f24:18px;
  --f18:16px;
  --f17:15px;  
}
}
@media (max-width:375px) {
:root{
  --f80:48px;
  --f52:32px;
  --f48:24px;
  --f44:22px;
  --f40:20px;
  --f36:18px;
  --f32:18px;
  --f28:18px;
  --f24:17px;
  --f22:17px;
  --f20:16px;
  --f18:15px;  
  --f16:14px;
}
}
/*網站全域設定/＝＝＝＝＝*/


/*反白顏色*/
/* ::-moz-selection {
    background-color: #060303;
    color: #fff;
}
::selection {
    background-color: #060303;
    color: #fff;
} */



/*卷軸*/
&::-webkit-scrollbar {
    background: #f1f1f1;
    width: 7px;
}
&::-webkit-scrollbar-button {
    display: none;
    background: #f1f1f1;
    border-radius: 0;
}
&::-webkit-scrollbar-track-piece {
    background: #f1f1f1;
}
&::-webkit-scrollbar-thumb {
    /* border-radius: 4px; */
    background-color: #c1c1c1;
}
&::-webkit-scrollbar-track {
    box-shadow: transparent;
}



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

.header_area, .header_area.sticky {
    /* position: fixed; */
    z-index: 9999;
    width: 100%;
    background: transparent;
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    height: 86px;
    background-color: #fff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    line-height: 1;
    z-index: 9990;
    transition: all 0.4s ease-out;
    background: url(https://www.yubiwatsukuru.com/wp/wp-content/themes/original_theme/images/common/bg-white01.png) center repeat;
    /* background: transparent; */
}

.main_header_area{
    height: 100%;
}
.main_header_area .container {
    max-width: 100%;
    max-height: 110px;
    padding: 0 30px;
    transition: 0.5s;
    height: 100%;
}

.pageIndex .header_area .main_header_area {
    background: transparent;
    transition: all 0.3s;
    position: relative;
    height: 100%;
}

.pageIndex .header_area.sticky .main_header_area {
    background: transparent;
    transition: all 0.3s;
}

.navigation {
    grid-template-columns: 200px 1fr;
    align-items: center;
    height: 100%;
}




/*選單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/




/* header */
.stellarnav ul{    
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
}
/*dot */
.stellarnav > ul > li:before {
    background-color: #B18A6E;
    border-radius: 0%;
    content: "";
    margin: 0 auto;
    position: absolute;
    right: 0px;
    top: 50%;
    height: 40px;
    width: 1px;
    transform: translateY(-50%);
    background-color: rgb(44 34 31 / 20%);
}
.stellarnav > ul > li:last-child:before  {
    content: none;
}
.stellarnav > ul > li:last-child > a:after {
    content: none;
}



/* 第一層 */
.stellarnav > ul > li {
    position: relative;
    padding: 0 10px;
    font-size: 0;
    padding: 0;
}
.stellarnav > ul > li > a {
    font-family: var(--SFontE);
    color: #1F1F1F;
    letter-spacing: 1px;
    font-size: 0;
    margin: 0;
    font-weight: 400;
    padding: 12px 24px;
    line-height: 1.5;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.stellarnav > ul > li > a b{
    color: #1f1f1f;
    text-transform: capitalize;
    line-height: 1.7;
    height: fit-content;
    font-size: 15px;
}
.stellarnav > ul > li > a b:first-child {
    order: 2;
}
.stellarnav > ul > li > a b:last-child {
    font-size: 13px;
    color: #a19a8f;
}
.stellarnav > ul > li > a:hover b{
    transform: unset; 
    -webkit-transform: unset;
    -moz-transform: unset;
    color: #B18A6E;
}


.stellarnav > ul > li:hover b, .stellarnav > ul > li:focus b,.stellarnav > ul > li:focus b:first-child{
    color: #B18A6E;
    transition: color .3s cubic-bezier(0.77, 0, 0.65, 0.99);
}
.stellarnav ul li:hover a {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.stellarnav ul ul>li>a:hover, .stellarnav ul ul>li>a:focus {
    color: #131413;
    opacity: 1;
}
.stellarnav > ul > li.has-sub > a, .pageIndex .sticky > .stellarnav > ul > li:last-child {
    padding-right: 20px;
}
/* 下拉符號移除 */
.stellarnav li.has-sub > a:after{
    content: none;
}




/* 第二層 */
.stellarnav ul ul {
    background: #fff;
    min-width: 140px;
    max-width: 180px;
    width: max-content;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .15);
}
.stellarnav > ul > li.has-sub > ul:before {
    content: "";
    display: block;
    position: absolute;
    top: -9px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6.5px 9px 6.5px;
    border-color: transparent transparent #ffffff transparent;
    pointer-events: none;
}
.stellarnav li li {
    border: 0;
}
.stellarnav.desktop li.has-sub li a {
    font-size: 14px;
    text-align: center;
    padding: 10px;
    letter-spacing: 0.02em;
    font-family: var(--SFonts);
    border-bottom: 1px solid #f6f6f6;
}
.stellarnav.desktop li.has-sub li a:hover {
    color: #1c1c1c;
}

/* 第三層 */
.stellarnav ul ul ul {
    top: 0;
    left: 100%;
    transform: unset;
}


.me_tp_features {
    display: none;
}


/*電腦LOGO = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.pageIndex .nav-header{
    transition: all 0.3s;
    font-size: 0;
}
.nav-header, .pageIndex .sticky .nav-header {
    grid-row: 1;
    width: auto;
    margin: 0 auto;
    max-width: 100%;
    /* padding: 10px 0; */
    align-self: start;
    filter: unset;
}
.nav-brand {
    max-width: 160px;
    font-size: 0;
    position: absolute;
    top: 0;
    align-self: flex-start;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
    height: 264px;
    border-radius: 0 0 10px 10px;
    aspect-ratio: 17/20;
    padding: 0px 15px 5px;
    height: auto;
    transition: all .3s ease-in-out;
}
.sticky .nav-brand{
    max-width: 130px;
}




/*手機LOGO
.nav-brand-m {}
*/


/*footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.box_link{display: none;}
.footer_logo{display: none;}
.footer {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-top: 0;
    background: #F0F0F0;
    z-index: 1;
}
.footer .center {
    position: relative;
    max-width: 90%;
    padding: 80px 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_info ul {
    position: relative;
    border-bottom: 1px solid #0000001a;
    padding: 15px 0;
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
}
/* 聯絡資訊 */
.footer_info li{
    padding: 0;
}
.footer_info li p {
    font-size: 13px;
    line-height: 1.8;
}
/* .footer_info li p.line:before {
    content: 'Line ID. ';
}
.footer_info li p.phone:before {
    content: 'Tel. ';
}
.footer_info li p.mail:before {
    content: 'Mail. ';
}
.footer_info li p.add:before {
    content: 'Add. ';
} */
/* 網頁連結 */
.footer_info li:nth-child(2) {
    /* position: absolute; */
    right: 0;
    top: 0;
}
.footer_menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 10px 40px;
}
.footer_menu a:first-child{
    display: none;
}
.footer_menu a {
    font-weight: 500;
    background: transparent;
    border: 0;
    letter-spacing: 1.25px;
    margin: 0 0 10px;
    transition: all .3s cubic-bezier(.165,.84,.44,1);
    display: flex;
    flex-direction: column;
    height: 20px;
    font-size: 0;
    overflow: hidden;
}
.footer_menu a:hover {
    background: transparent;
    color: #443f37;
}
/* 動畫 */
.footer_menu a:before {
    content: '';
    font-size: 14px;
    font-weight: 400;
    height: auto;
    letter-spacing: 0.04em;
    line-height: 1.5;
    text-align: left;
    width: auto;
    max-width: 100%;
}
.footer_menu a:after {
    content: '';
    font-size: 14px;
    font-weight: 400;
    height: auto;
    letter-spacing: 0.04em;
    line-height: 1.4;
    text-align: left;
    width: auto;
    max-width: 100%;
    color: #7c7369;
    justify-content: flex-start;
}
/* txt */
.footer_menu a:nth-child(2):before, .footer_menu a:nth-child(2):after{
    content: 'About';
}
.footer_menu a:nth-child(3):before, .footer_menu a:nth-child(3):after{
    content: 'Service';
}
.footer_menu a:nth-child(4):before, .footer_menu a:nth-child(4):after{
    content: 'Products';
}
.footer_menu a:nth-child(5):before, .footer_menu a:nth-child(5):after{
    content: 'Works';
}
.footer_menu a:nth-child(6):before, .footer_menu a:nth-child(6):after{
    content: 'News';
}
.footer_menu a:nth-child(7):before, .footer_menu a:nth-child(7):after{
    content: 'Contact';
}
/* hover */
.footer_menu a:hover:before {
    opacity: 0;
    transform: translate(0px, -14px);
    transition-duration: 600ms;
}
.footer_menu a:hover:after {
    opacity: 1;
    transform: translate(0px, -20px);
    transition-duration: 600ms;
}




/* ------------------------------------------------------------------------------------------------------------ */

.copy {
    color: #666;
    border: none;
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.08em;
    font-family: var(--SFontE);
    font-weight: 400;
    border-top: 0;
    text-align: center;
    padding: 10px 0 15px;
    position: relative;
    background: transparent;
}
.copy a {  color: #666; } 

/* 浮動按鈕 */
/* .info_fix{ bottom: 120px;} */
.info_fix .linksBtn{   box-shadow: 0 0 20px #00000026;}

/* 置頂按鈕 */
#to_top {
    left: unset;
    padding-top: 10px;
    font-size: 0;
    color: #fff;
    background: #000;
    box-shadow: none;
    -webkit-transition: 1.6s;
    -o-transition: 1.6s;
    transition: 1.6s;
    background-color: #fff;
    border: 1px solid #333333;
    border-radius: 5px;
    position: fixed;
    transition: all .3s;
    padding: 0;
    z-index: 100;
    bottom: 48px;
    right: 18px;
    height: 40px;
    width: 40px;
}
#to_top:before {
    display: block;
    content: '';
    background: url(https://dougu-studio.com/images/common/arrow_top.svg);
    z-index: 0;
    margin: auto;
    position: relative;
    left: 0;
    right: 0;
    top: 50%;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    width: 8px;
    aspect-ratio: 7 / 16;
    height: auto;
}
#to_top i.top {
    display: none;
}
#to_top:hover {
    opacity: 0.6;
    transition: opacity 0.2s;
}





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 商品下拉超過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個--結束 */





/* = = = 大圖-分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = *
/*預設解除背景輪播*/
.bannerindex {
    position: relative;
    height: auto;
}
/* 大圖尺寸 */
.bannerindex .swiper-banner {
    position: static;
    height: auto;
    /* height: 100vh; */
    margin: auto;
    width: 100%;
    overflow: hidden;
}
.swiper-wrapper {
    height: 100%;
}
.swiper-slide {
    height: 100%;
}
.bannerindex .swiper-banner .swiper-slide img, .bannerindex .swiper-banner .swiper-slide-active img{
    /* 大圖切換閃爍-opacity */
    opacity: unset !important;
    width: auto;
    object-fit: contain;
    height: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
}









/* 大圖點點按鈕 */
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 12px;
    display: none;
}
/* 大圖點點按鈕END */






.swiper-slide img { height:auto;}
/* .swiper-slide img {
    height: auto;
    transform: scale(1.4);
    animation: banner-img 2s forwards;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */
/* .swiper-slide:before, .swiper-slide:after {
    content: "";
    position: absolute;
    z-index: 100;
    pointer-events: none;
} */
/* banner02 */
/* .swiper-slide:nth-child(2):before {
    background: url(https://pic03.eapple.com.tw/goldenpine/bnA_txt.svg);
    content: "";
    display: block;
    position: absolute;
    top: 48%;
    left: clamp(100px, 12%, 200px);
    width: 38%;
    height: auto;
    transform: translateY(-50%);
    aspect-ratio: 746 / 351;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.swiper-slide:nth-child(2):after {
    background: url(https://pic03.eapple.com.tw/goldenpine/cloud1.png);
    background-repeat: no-repeat;
    bottom: 20%;
    left: -5%;
    width: 50%;
    height: auto;
    aspect-ratio: 120 / 42;
    max-width: 1200px;
    background-size: contain;
    z-index: 0;
}

.swiper-slide.swiper-slide-active:nth-child(2):before {
    -webkit-animation: banner-in 2s ease-in-out both;
    animation: banner-in 2s ease-in-out both;
    animation-delay: 0s;
}
.swiper-slide.swiper-slide-active:nth-child(2)::after {
    animation-delay: 1s;
    animation: cloudLeft 24s linear infinite;
} */


/* banner01 */
/* .swiper-slide:nth-child(1):before {
    background: url(https://pic03.eapple.com.tw/goldenpine/bnB_txt.svg);
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 20%;
    width: 38%;
    height: auto;
    transform: translateY(-50%);
    aspect-ratio: 746 / 351;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.swiper-slide:nth-child(1):after {
    background: url(https://pic03.eapple.com.tw/goldenpine/cloud1.png);
    background-repeat: no-repeat;
    bottom: 20%;
    right: -5%;
    width: 50%;
    height: auto;
    aspect-ratio: 120 / 42;
    max-width: 1200px;
    background-size: contain;
    z-index: 0;
}

.swiper-slide.swiper-slide-active:nth-child(1):before {
    -webkit-animation: banner-in 2s ease-in-out both;
    animation: banner-in 2s ease-in-out both;
    animation-delay: 0s;
}
.swiper-slide.swiper-slide-active:nth-child(1)::after {
    animation-delay: 1s;
    animation: cloudRight 24s linear infinite;
} */

@keyframes banner-in {
    0% {
        opacity: 0;
    }    
    100% {
        opacity: 1;
    }
}
@keyframes banner-img {
    0% {
        filter: brightness(0.1);
        opacity: 0.5;
        transform: scale(1.2);
    }

    100% {
        filter: brightness(1);
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes slide-top {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}


@keyframes move_before {
    0% {
        left: 45%;
        opacity: 0;
    }

    100% {
        left: 50%;
        opacity: 1;
    }
}
@keyframes move_after {
    0% {
        left: 55%;
        opacity: 0;
    }

    100% {
        left: 50%;
        opacity: 1;
    }
}






/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/

/* 麵包屑 */
.path {
    /* display: none; */
    width: 100%;
    padding: 0;
    position: absolute;
    /* transform: translateY(-100%); */
    opacity: 0.6;
    top: 10px;
}
.path p, .path p a {
    text-align: right;
    line-height: 24px;
    font-size: 13px;
    color: #737373;
    font-family: var(--SFonts);
    font-weight: 400;
    text-align: left;
    letter-spacing: 0.5px;
}
.path p a:hover {
    color: #baa48c;
}


/* main */
div#page {
    position: relative;
    overflow: clip;
    padding: 0;
    position: relative;
    width: 100%;
    min-height: 100vh;
}
#page:after{
    content:none;
    display: block;
    position: absolute;    
    z-index: 2;
    opacity: 0.4; 
    height: 300%;
    left: -100%;    
    top: -100%;
    width: 300%;
    pointer-events: none;
}
#content_main, #content {
    margin: 0;
    background: #F4F2EF;
    padding: 80px 0;
    background-repeat: repeat;
    padding: 0;
    z-index: 1;
    background: #fff;
}

.edit_part{
    padding: 0;
}
.main_part {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 120px 30px 120px;
    position: relative;
    /* padding-left: 3.5%;
    padding-right: 3.5%; */
}
.show_content {
    margin: auto;
    padding: 0;
    font-family: var(--SFonts);
}
.subalbum-menu {
    margin: 0;
    padding: 0;
}


/*內頁BANNER 設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.banner {
    position: relative;
    background: #f2f2f2;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-size: cover;
    background-position: top;
    position: relative;
    height: 440px;
    padding: 0;
    background-image: url(https://pic03.eapple.com.tw/style1688/bnA.jpg);
    background-position: 50% 80%;
}
.banner:after {
    content: '';
    background: linear-gradient(0deg, #00000099 0%, #00000000 100%);
    bottom: 0px;
    height: 386px;
    left: 0;
    margin: 0 0 0 0;
    padding: 0px;
    position: absolute;
    top: auto;
    width: 100%;
    /* z-index: -1; */
    opacity: .6;
}
.banner h5 {
    color: #fff;
    text-align: left;
    font-size: 20px;
    font-family: var(--SFontE);
    font-weight: 500;
    width: 100%;
    max-width: 1300px;
    letter-spacing: 2px;
    padding: 240px 40px 120px 40px;
    z-index: 2;
}
.banner h5:before {
    content: 'News';
    color: #FFFFFF;
    display: flex;
    font-family: var(--SFontE);
    font-size: 64px;
    font-weight: 500;
    height: auto;
    letter-spacing: 0.04em;
    line-height: 1.5;
    text-align: left;
    text-shadow: 0px 0px 60px rgba(0, 0, 0, 0.8);
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
}


.banner.banC {
    background-image: url(https://pic03.eapple.com.tw/style1688/bnD.jpg);
}
.banner.banC h5:before {
    content: 'Contact';
}
.banner.banE {
    background-image: url(https://pic03.eapple.com.tw/style1688/bnB.jpg);
}
.banner.banE h5:before {
    content: 'Works';
}


.album_b .banner.banE,
.banner.banF {
    background-image: url(https://pic03.eapple.com.tw/style1688/bnC.jpg);
}
.album_b .banner.banE h5:before,
.banner.banF h5:before {
    content: 'Products';
}





@media screen and (min-width: 1400px) {}


/* 上方區域_平板版面1024 */
@media screen and (max-width: 1024px) {
    /* = = header = = */
    .header_area {
        /* position: relative; */
    }
    .header_area.sticky {
        position: fixed;
    }
    .main_header_area .container {  }
    .navigation {
        display: grid  ;
        grid-template-columns: 100px 1fr;
        align-items: center;
    }
    /* logo*/
    .pageIndex .nav-brand, .sticky .nav-brand, .nav-brand {  }
    .nav-brand img { }
    .sticky .nav-brand img{ }




    /* 導覽列 */
    .pageIndex .stellarnav {
        opacity: 1;
        pointer-events: unset;
    }
    .stellarnav ul {
        text-align: right;
    }
    .stellarnav > ul > li {
        /* padding: 10px 0; */
    }    
    .stellarnav > ul > li > a {
        /* letter-spacing: 0; */
        /* padding: 0px 8px; */
        margin: 0;
        font-size: 15px;
    }
    .stellarnav>ul>li:after {
        height: 3px;
        top: 100%;
        bottom: 0;
        transform: translate(-50%, 0);
    }

    /* 內頁BN */
    .banner {
        height: 360px;
    }
    .banner h5 {
        padding: 120px 40px 120px 40px;
    }
    .banner h5:before {
        font-size: var(--f52);
    }
}

@media screen and (max-width: 920px) {
    .stellarnav > ul > li > a {
        letter-spacing: 0;
        padding: 10px 12px;
    }
}

/* 上方區域_手機版面768 */
@media screen and (max-width: 768px) {
    /* = = 大圖 = = */
    .bannerindex {
        /* height: 72vh; */
        padding: 0;
        margin: 0;
        overflow: hidden;
    }
    .bannerindex .swiper-banner {
        width: 100%;
        height: 100%;
    }
    /* 大圖位置 */
    .bannerindex .swiper-banner .swiper-slide img {
        object-position: 40%;
    }
    .bannerindex .swiper-banner .swiper-slide:nth-child(3) img {
        object-position: 50%;
    }

    span.swiper-notification {
        right: 25px;
    }

    span.swiper-notification:before{
        font-size: 10px;
        margin-bottom: 20px;
    }
    span.swiper-notification:after{
        height: 30px;

    }





    

    /* logo*/    
    .nav-header {
        padding-top: 12px;
        max-width: 56px;
    }
    .pageIndex .nav-brand, .sticky .nav-brand, .nav-brand {
        max-width: 100px;
    }
    .nav-brand img { }




    /* = = header = = */
    .header_area {
        height: 80px;
    }
    .main_header_area .container {
        padding: 0 8%;
    }
    .navigation {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
    }
    .stellarnav.mobile {
        right: 0;
        left: unset;
    }



    /* 導覽列漢堡選單 */
    .stellarnav.mobile .menu-toggle {
        display: flex;
        margin: 29px 0;
        padding: 0;
    }
    /* 漢堡選單樣式 */
    .stellarnav .menu-toggle:after {
        text-transform: capitalize;
        content: 'Menu';
        font-size: 0;
        color: #000;
        transform: scale(1);
        font-family: var(--SFontE);
        letter-spacing: 0.04em;
    }
    .stellarnav .menu-toggle span.bars {
        display: block;
        margin: 0;
    }
    .stellarnav .menu-toggle span.bars span {
        width: 32px;
        height: 2px;
        border-radius: 0;
        background: #717171;
        margin: 0 auto 6px;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(3) {
        width: 24px;
        margin-right: 0;
    }
    
    /* 導覽列展開 */
    .stellarnav.mobile.left > ul {
        left: unset;
        right: 0;
        font-size: 0;
        max-width: 100%;
        padding: 0 30px;        
        /*右滑出現*/
        right: -100vw;
        overflow: hidden;
        transition: all .5s ease;
        height: 100%;
    }
    .stellarnav.mobile.left.active > ul{        
        right: 0;
        max-width: 100%;
    }


    .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
        display: inline-block;
        font-size: 12px;
        background: transparent;
        height: 76px;
        width: fit-content;
        padding: 0;
        margin: 26px 0 28px;
        text-transform: capitalize;
        content: 'Menu';
        font-size: 14px;
        color: #000;
        transform: scale(1);
        font-family: var(--SFontE);
        letter-spacing: 0.04em;
        height: fit-content;
        width: 100%;
        text-align: right;
        display: flex;
        flex-direction: row-reverse;
    }
    .stellarnav .icon-close {
        box-sizing: border-box;
        width: 18px;
        height: 12px;
        position: relative;
        display: inline-block;
        margin: 2px 9px 0 3px;
    }
    .stellarnav .icon-close:before , .stellarnav .icon-close:after {
        width: 18px;
        height: 0px;
        border-bottom: solid 1px #000;
    }
    /* 導覽列選取Hover效果 */
    .stellarnav ul:hover li a {
        opacity: 1;
        transition: all 0.3s ease-in-out;
    }


    /* 第一層 */
    .stellarnav.mobile > ul > li {
        border: 0;
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid #f0f0f0;
        margin-bottom: 5px;
    }
    .stellarnav > ul > li:before{
        content: none;
    }
    .stellarnav.mobile li.open {
        background: #f3f3f3;
        color: #fff;
        padding: 0 0 5px;
    }
    .stellarnav.mobile > ul > li > a {
        overflow: auto;
        height: auto;
        line-height: 150%;
        display: block;
        color: #333;
        font-size: 16px;
        letter-spacing: 0.04em;
        text-align: center;
        padding: 10px 20px;
        display: flex
;
    }
    .stellarnav.mobile li.open > a {
        /* color: #fff; */
        /* padding-bottom: 15px; */
        border: 0;
        padding: 20px 10px;
    }    
    .stellarnav > ul > li > a:before{
        content: none;
    }
    /* +符號修改 = = */
    .stellarnav.mobile > ul > li > a.dd-toggle {
        top: 5px;
        /* transform: translateY(-50%);*/
    }
    .stellarnav.mobile > ul > li.open > a.dd-toggle {
        top: 0;
    }
    .stellarnav a.dd-toggle .icon-plus:before {
        width: 8px;
        height: 8px;
        border-bottom: solid 1px #666;
        top: 50%;
        /* top: 0; */
        left: 0;
        transform: rotate(-45deg);
    }
    .stellarnav a.dd-toggle .icon-plus:after {
        width: 8px;
        height: 8PX;
        top: 50%;
        border-bottom: solid 1px #666;
        transform: rotate(45deg);
    }
    .stellarnav li.open > a.dd-toggle .icon-plus {
        -moz-transform: translateY(10px) scaleY(-1);
        -webkit-transform: translateY(10px) scaleY(-1);
        -o-transform: translateY(10px) scaleY(-1);
        transform: translateY(10px) scaleY(-1);
    }/* +符號修改END = = */

    /* 第二層 */
    .stellarnav.mobile ul ul {
        left: unset;
        margin: 0 auto;
        box-shadow: none;
        width: calc(100% - 10px);
        margin: auto;
        left: unset;
        box-shadow: none;
        max-width: 100%;
        transform: unset;
    }
    .stellarnav > ul > li.has-sub > ul:before{
        content: unset;
    }
    .stellarnav li li {
        font-size: 14px;
        color: #333;
        font-family: var(--SFont);
        letter-spacing: 0.04em;
        font-size: 15px;
        color: #333333;
        letter-spacing: 0.04em;
        width: 100%;
    }
    .stellarnav.mobile li.open li.open {
        background: #eee;
        background: #d7d0c7;
        padding: 5px 0;
    }
    .stellarnav li li a{
        width: 100%;
    }


}








/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 購物車 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page #content {
    background: #fff;
}
.product_page .main_part {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 120px 30px 120px;
}


.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: 200px;
    letter-spacing: 1px;
    min-height: 30vw;
}
.product-layer-two>li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    border-bottom: 0;
    padding-bottom: 0;
}
.product-layer-two li a {
    position: relative;
    border: 0;
    background: #f3f3f3;
    padding:15px;
    display: block;
    font-size: 16px;
    color: #1f1f1f;
    background: transparent;
    border-bottom: 1px solid #eae3db;
    transition: .3s cubic-bezier(.4,.4,0,1);
}
.product-layer-two>li>a:after {
    content: '';
    background: #9e5a20;
    bottom: 0px;
    flex: none;
    height: 1px;
    left: 0px;
    margin: 0 0 0 0;
    position: absolute;
    right: auto;
    width: 0px;
    z-index: 2;
    max-width: 100%;
    transition: .3s cubic-bezier(.4,.4,0,1);
}
.product-layer-two li i {
    right: 0;
    color: #baa48c;
    top: 20px;
    height: fit-content;
}
.product-layer-two>li:hover > a {
    /* font-weight: 500; */
}
.product-layer-two>li:hover > a:after {
    flex: none;
    transition-duration: 600ms;
    width: 100%;
    max-width: 100%;
}
.product-layer-two li.active a {
    font-weight: bold;
    border: 0;
    border-bottom: 1px solid #eae3db;
}
.product-layer-two > li.active {
    background: #f2f2f2;
}
/* 次分類 */
.product-layer-two li ul {
    position: static;
    margin-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    margin-left: 0;
    gap: 0;
}
.product-layer-two li:hover ul {
    border: none !important;
}
.product-layer-two li li {
    display: block;
    padding: 0;
    transition: all ease .3s;
    background: transparent;
}
.product-layer-two>li ul>li+li {
    /* margin-top: 5px; */
}
.product-layer-two li li a {
    padding: 10px;
    padding-left: 15px;
    letter-spacing: 0.02em;
    color: #686868;
    background: transparent;
}
.product-layer-two li li:hover>a {
    background: transparent;
    color: #ad925e;
}
.product-layer-two li li:hover {
    margin-left: 8px;
}
.product-layer-two li li>a:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: transparent;
    left: 0;
    margin-left: 0px;
    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_page .products-list, .product-wrapper {
    width: calc(100% - 200px - 60px);
}
.products-list {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 20px;
}
.products-list .pic {
    border-radius: 10px;
}
.products-list li a .pic img{
    transition: all .3s;
}
.products-list li a:hover .pic img{
    transform: scale(1.1);
    opacity: 0.6;
}
.products-list .more {
    border: 1px solid #f4f2ef;
    color: #1f1f1f;
    border-radius: 50px;
    font-size: 15px;    
    background: #f4f2ef;
    font-weight: 400;
}
.products-list .item a:hover .more {
    background: transparent;
    color: #1f1f1f;
    letter-spacing: 2px;
}











.product_info_page .products-list, .product-wrapper { width: 100%; }


/* 下方頁碼 */
ul.page {
    width: 100%;
}


/*購物車/內層＝＝*/
.product_info_page .main_part {
    width: 90%;
}
.product_info_page .product-layer-two {
    display: none;
}
.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;
}



/*按鈕顏色*/
.inquiry_a1 {
    background: #cbc0a0;
}
.inquiry_a2 {
    background: #bdab77;
}
.inquiry_a3 {
    background: #ADA17E;
}
.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover {
    background: #222;
}
.lastaction {
    color: #ADA17E;
    background-color: #f2f2f2;
}
.nextaction {
    background-color: #ADA17E;
}
.lastPage {
    background: #ADA17E;
}

/*商品側邊規格*/
.product_info li .txt_box {
    color: #222222;
    width: 100%;
}
.sidebarBtn .sp_price {
    color: #cbc0a0;
}
.mobile_product_name {
    font-size: 24px;
}
/*相關推薦*/
.prod_related h6 span:before {
    font-size: 28px;
}










@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) {}





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*文章設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.article_a #content_main, #content {
    background: url(https://www.yubiwatsukuru.com/wp/wp-content/themes/original_theme/images/common/bg-white01.png) center repeat;
}

/* 文章首頁 */
/* 標 */
.module_i_news {
    padding: 100px 0 120px;
}
.module_i_news section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1300px;
}
.module_i_news .title_i_box {
    margin-bottom: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px 0px;
}
.module_i_news .title_i_box h4 {
    font-size: 24px;
    color: #202020;
    font-weight: 400;
    font-size: var(--f32);
    font-family: var(--SFontC);
    letter-spacing: 2px;
    color: #1f1f1f;
}
.module_i_news .title_i_box h6 {
    font-size: 36px;
    color: #a8a586;
    font-size: 14px;
    font-size: 0;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-family: var(--SFontE);
    margin-bottom: 0;
}
.module_i_news .title_i_box h6:before {
    content: '( News )';
    color: #baa48c;
    font-size: 16px;
}
/* 圖文 */
.module_i_news li a:before, .module_i_news li a:after{
    content: none;
}
.module_i_news_list{
    padding: 40px 0;
}
.module_i_news ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0 30px;
}
.module_i_news li {
    text-align: left;
    width: 100%;
}
.module_i_news li a {
    position: relative;
    display: flex;
    grid-template-columns: 1fr;
    grid-gap: 12px;
    width: 100%;
    height: 100%;
    flex-direction: column;
}
.i_blog_le{
    overflow: hidden;
    position: relative;
    aspect-ratio: 52 / 35;
    width: 100%;
    background-color: transparent;
    border-radius: 10px;
}
.i_blog_le img{
    transition: .3s ease;
}
.module_i_news li a:hover img {
    transform: scale(1.1);
}
.i_blog_ri{
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 20px;
}
.i_blog_ri h5{
    margin: 15px 0;
    margin: 5px 0;
    padding: 0;
    font-family: var(--SFontE);
    font-size: var(--f20);
    font-weight: 400;
    height: auto;
    letter-spacing: 0.5px;
    line-height: 1.8;
    text-align: left;
    width: auto;
    max-width: 100%;
    order: 2;
    transition: .3s cubic-bezier(.4,.4,0,1);
}
.module_i_news li a:hover h5{
    color: #baa48c;
    transition-duration: 600ms;
}
.i_blog_ri em{
    order: 1;
    font-size: 14px;
    color: #aaa;
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
    color: #baa48c;
    font-family: var(--SFontE);
    font-size: 13px;
    font-weight: 500;
    position: relative;
    left: -40px;
    height: auto;
    letter-spacing: 0.5px;
    line-height: 1.6;
}
.i_blog_ri p{
    color: #666;
    font-family: var(--SFonts);
    font-size: 14px;
    font-weight: 400;
    height: auto;
    letter-spacing: 0.5px;
    line-height: 1.7;
    text-align: left;
    width: auto;
    max-width: 100%;
    order: 3;
}
/* BTN */
.i_blog_b {
    max-width: 1300px;
    margin: auto;
    text-align: center;
}
.i_blog_b a {
    color: #1f1f1f;
    background: #f4f2ef;
    border: 1px solid #f4f2ef;
    border-radius: 999px;
    width: fit-content;
    padding: 15px 60px;
    height: auto;
    line-height: 1.5;
    margin: 20px 0 0;
    font-size: 0;
}
.i_blog_b a:hover{
    background: #FFFFFF;
    border: 1px solid #eae3db;
}
.i_blog_b a b:before {
    content: 'View more';
    color: #1f1f1f;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--SFontE);
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-align: left;
    max-width: 100%;
}
.i_blog_b a:after {
    background-image: url(https://www.blooming.or.jp/images/common/arw_0.png);
    filter: brightness(0);
    background-size: 26px 10px;
    background-repeat: no-repeat;
    content: "";
    margin: 0 auto;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    height: 10px;
    width: 26px;
    transition: .3s ease-in-out;
}
.i_blog_b a:hover:after{    
    right: 20px;
}



/*文章功能頁/ = = = = */
.blog_box{
    display: flex    ;
    margin: auto;
    padding: 0;
    font-family: var(--SFonts);
    justify-content: space-between;
    flex-wrap: wrap;
}
/* 左側分類欄位 */
.blog_le {
    width: 200px;
    padding: 0;
}
h5.blog_le_t {
    margin-bottom: 10px;
    text-align: left;
    padding-bottom: 0;
    font-family: var(--SFontE);
}
h5.blog_le_t span {
    font-size: 0;
}
h5.blog_le_t em {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.2em;
    padding-bottom: 10px;
    color: #baa48c;
}
.blog_search {
    position: relative;
    margin-bottom: 10px;
    opacity: .8;
    display: none;
}
.blog_search input[type=search] {
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    background: #eee;
    border-radius: 0;
    padding: 10px 40px 10px 10px;
}
/* 分類列 */
.blog_le .accordion {
    border-radius: 0;
    border: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    text-align: left;
    border-top: 1px solid #dadbdb;
    border-bottom: 1px solid #dadbdb;
    font-size: 0;
    justify-items: start;
}
.blog_le .accordion li {
    text-align: left;
    transition: .2s ease-out;
    width: 100%;
}
.accordion li+li .link {
    border: 0;
    border-left: 1px solid #dadbdb;
}
.accordion li .link a {
    padding: 5px 10px;
    line-height: 1.7;
    letter-spacing: 0.12em;
    font-size: 16px;
    font-weight: 500;
    margin: 10px 0;
    width: 100%;
    text-align: left;
}
.blog_le .accordion > li.on_this_category{ background: #eee !important; }
.blog_in_page .blog_le .accordion > li.on_this_category { background: #f7f7f7 !important; }
.blog_le .accordion > li.on_this_category:hover .link a, .link a ,.blog_le .accordion > li:hover .link a{
    color:var(--SubColor)  !important;
}
.blog_le .accordion > li:hover {
    background: #f0f0f0 !important;
}
.blog_le .accordion > li.on_this_category .link a {
    color: var(--SubColor)  !important;  
}
/* 右側圖文區 */
.blog_ri {
    width: calc(100% - 200px - 60px);
    padding: 0 0 0 20px;
    padding: 0;
}
h4.blog_category_title {
    padding: 0;
    margin: 0;
    width: fit-content;
    font-weight: 600;
    letter-spacing: 0.04em;
}
/* 圖文區塊 */
.blog_subbox {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.subbox_item {
    position: relative;
    width: 100%;
    background: rgb(255 255 255);
    border-radius: 0;
    overflow: hidden;
    transition: .5s ease-out;
    border: 0;
    height: fit-content;
    width: 100%;
    margin: 0;
    height: 100%;
    background: transparent;
    box-shadow: #f1e9e95c 0 0 24px 0;
    border-radius: 10px;
    overflow: hidden;
}
.subbox_item:hover {
    transition: .5s ease-out;
    box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%);
}
.subbox_item a {
    background: #fff;
    gap: unset;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.subbox_item a:after, .subbox_item a:before {
    content: none;
}
/* 圖 */
.blog_list_le {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 52 / 35;
    background-color: black;
}
.blog_list_le img {
    width: 100%;
    transition: .4s ease;
}
.subbox_item a:hover img {
    z-index: 1;
    transition: 0.4s;
    opacity: 0.3;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.subbox_item a:hover .blog_list_le::before{
    opacity: 1;
    transition: 0.5s;
    margin-top: -20px;
}
.blog_list_le::before{
    content: "MORE +";
    position: absolute;
    line-height: 1.462;
    font-family: var(--SFontE);
    left: 50%;
    top: 50%;
    z-index: 99;
    transform: translateX(-50%);
    margin-top: -80px;
    display: block;
    padding: 10px 20px 7px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: #fff;
    border: 2px solid #fff;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
/* 文字 */
.blog_list_ri {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}
.blog_list_ri h5 {
    font-size: var(--f20);
    text-align: left;
    color: #333;
    font-size: 20px;
    font-weight: 400;
    height: auto;
    letter-spacing: 0.5px;
    line-height: 1.8;
    text-align: left;
    width: auto;
    max-width: 100%;
    order: 2;
    margin: 5px 0;
}
.blog_list_ri em {
    font-size: 13px;
    color: #aaa;
    padding: 0;
    font-family: var(--SFontE);
    margin: 0;
    background: #baa48c;
    color: #fff;
    order: 1;
    border: 1px solid #baa48c;
    font-size: 13px;
    font-weight: 300;
    height: auto;
    letter-spacing: 1.5px;
    line-height: 1.6;
    padding: 0px 12px 1px 12px;
    width: fit-content;
    border-radius: 100px;
}
.blog_list_ri p {
    font-weight: 400;
    color: #454545;
    font-size: 14px;
    font-weight: 400;
    height: auto;
    letter-spacing: 0.5px;
    line-height: 1.8;
    text-align: left;
    width: auto;
    max-width: 100%;
    order: 3;
    margin: 0;
    padding-bottom: 10px;
}

/*文章內層/ = = = = */
.blog_in_page #content {
    background:#fff;
}
.blog_in_page .blog_ri {
    /* width: 90%;  */
    display: block;
    padding: 0;
    margin: auto;
    margin-right: 0;
    padding: 40px 60px;
    background: #FFFFFF;
    border: 1px solid #eae3db;
}
.blog_in_page h4.blog_category_title {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
    font-size: var(--f28);
    font-family: var(--SFontE);
    font-weight: 400;
    height: auto;
    letter-spacing: 1.5px;
    color: #1f1f1f;
}

/* 上下篇按鈕 */
.blog_back {
    z-index: 1;
    justify-self: flex-end;
    width: calc(100% - 200px - 60px);
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 5px;
    margin: auto;
    margin-top: 40px;
    text-align: center;
    margin-right: 0;
    justify-items: center;
}
.blog_back a {
    font-size: 13px;
    letter-spacing: 0.08em;
}
.blog_back a.article_btn_back {
    position: relative;
    background: transparent;
    color: #1f1f1f;
    font-size: 14px;
    font-weight: 400;
    height: auto;
    letter-spacing: 0.04em;
    line-height: 1.8;
    transition: .4s ease;
    width: fit-content;
    padding: 10px 30px;
    border-bottom: 1px solid #eae3db;
}
.blog_back a.article_btn_back:after {
    content: '';
    background: #9e5a20;
    bottom: 0px;
    flex: none;
    height: 1px;
    left: 0px;
    margin: 0 0 0 0;
    position: absolute;
    right: auto;
    width: 0px;
    z-index: 2;
    max-width: 100%;
    transition: .3s cubic-bezier(.4,.4,0,1);
}
.blog_back a.article_btn_back:hover:after {
    flex: none;
    transition-duration: 600ms;
    width: 100%;
    max-width: 100%;
}
/* .blog_back a.article_btn_back:hover {
    opacity: .6;
} */
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {
    background: #eee;
    color: #555;
    transition: .4s ease;
    display: none;
}


/* 分享按鈕 = = */
.blog_shareData {
    border: 1px solid #ccc;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 20px;
    width: fit-content;
    padding: 10px;
    border-radius: 5px;
    margin: 0;
    display: none;
}
.toShareNews b, .toShareNews a, .toShareNews a object, .toShareNews a i {
    font-weight: 400;
    font-size: 14px;
    color: #333;
}
.toShareNews a object {
    filter: grayscale(1) brightness(1) contrast(1);
}
.toShareNews > a:hover > object {
    filter: none;
}
/* 文章編輯器 */
.blog_box_edit {
    background: transparent;
    padding: 0;
    margin: 10px 0;
    font-size: var(--f16);
    color: #2F2F2F;
    line-height: 1.8;
    padding: 0;
    letter-spacing: 0.04em;
}
.articel_mainPic {
    /* display: none; */
}
.articel_mainPic img {
    aspect-ratio: 3 / 2;
    height: auto;
    object-fit: cover;
    padding: 20px 0;
}
.blog_box_edit * {
    letter-spacing: 0.5px;
    line-height: 1.8;
    font-size: 16px;
    padding: 0;
}

/*文章-相關推薦*/
.news_related, .prod_related {
    font-family: var(--SFont);
    background: #fff;
    padding: 80px 5%;
    margin: auto;
    display: none;
}
.news_related h6 span:before, .prod_related h6 span:before {
    font-size: 24px;
    color: #333;
    font-weight: 500;
    letter-spacing: 0.04em;
}
.news_related_list, .related_list {
    margin: 40px auto;
}
.news_related_list li, .related_list li {
    display: block;
    padding: 0px;
}
.news_related_list li a, .related_list li a {
    padding: 10px;
    background: #fff;
    height: 100%;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: .35s ease;
}
.news_related_list li a:hover, .related_list li a:hover {
    box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%);
    transition: .35s ease;
}
.news_related_list li a p, .related_list li a p{
    font-size: 16px;
    letter-spacing: 0.04em;
    color: #333;
    padding: 10px 0 5px;
    line-height: 1.5;
}
/* 按鈕 */
.news_related_b_box, .prod_related_b_box {
    margin: auto;
    background: transparent;
    color: #fff;
    position: relative;
    z-index: 1;
    min-width: 165px;
    width: 200px;
    height: 50px;
    border: 1px solid #0F0F0F;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #0F0F0F;
    overflow: hidden;
    transition: color 0s ease;
    border: 1px solid #bcbfbf;
}
.lastPage {
    color: #fff;
    background: transparent;
    transition: all .5s;
    font-family: var(--SFont);
    font-weight: 500;
    letter-spacing: 0.12em;
    font-size: 16px;
    margin: 0 auto;
    color: #293943;
    line-height: 1.8;
}
a.lastPage:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    background-color: var(--SubColor2);
    transition: all 0.5s;
}
a.lastPage:hover {
    color: #fff;
}
a.lastPage:hover:after {
    width: 100%;
}




@media screen and (max-width: 1024px) {
    /* 首頁 */
    .module_i_news {
        padding: 80px 0;
    }
    .module_i_news ul {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px 30px;
        width: 90%;
        margin: auto;
    }
    

    .blog_subbox {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    .blog_list_ri p {
        letter-spacing: 0.08em;
    }
    .blog_list_ri h5 {
        -webkit-box-orient: unset;
        letter-spacing: 0.04em;
    }
    
    .blog_in_page .blog_ri{
        padding: 40px 20px;
    }
}

@media screen and (max-width: 768px) {
    /* 首頁 */
    .module_i_news .title_i_box h6:before {
        font-size: 14px;
        letter-spacing: 0.8px;
        padding-bottom: 5px;
        font-weight: 500;
    }
    .module_i_news .title_i_box h4 {
        font-size: var(--f40);
    }
    .module_i_news_list {
        padding-top: 20px;
        width: 95%;
        margin: auto;
    }
    .module_i_news ul {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0 20px;
        width: 95%;
    }
    .module_i_news li {
        border-bottom: 0;
    }
    .i_blog_le {
        border-radius: 5px;
    }

    /* 功能 */
    .blog_le {
        width: 100%;
        margin-bottom: 20px;
    }
    .blog_ri {
        width: 100%;
    }
    .blog_back {
        width: 100%;
    }
}

@media screen and (max-width: 620px) {
    .subbox_item a {
        flex-direction: column;
    }
    .blog_list_le {
        max-width: 100%;
    }
    .blog_list_ri em {
        margin: 10px 0 20px 0;
    }
}

@media screen and (max-width: 480px) {
    /* 首頁 */
    .module_i_news {
        padding: 60px 0;
    }
    .module_i_news ul {
        grid-template-columns: 1fr;
        grid-gap: 20px;
        width: 95%;
    }

    .blog_list_ri h5 {
        order: 2;
    }
    .blog_list_ri em {
        order: 1;
        font-size: 13px;
        margin: 0;
    }
    .blog_list_ri p {
        order: 3;
    }

}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*促銷活動設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/* 促銷首頁 */
.news_part {
    width: 100%;
    padding: 50px 20px;
    background: #fff;
}






/* = = = 分隔線 相本主分類= = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*相本分類全版面 ( 限制最寬2000px  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.show-list .item:hover .show_name{color: #897764;}

/*相簿*/
.other_album_choice li {background: #ccc;}
/*相簿下方隱藏*/
.other_album_choice{display:none;}
.album_fixed_title{display:none;}


.show-list .item a .show_pic {transition: all .8s;}
.show-list .item a:hover .show_pic {filter: grayscale(0);}
.show-list .show_pic {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
}
.show-list .item a .show_pic img {
    transition: all .8s;
}
.show-list .item a:hover .show_pic img {
    transform: scale(1.05);
}
.overlay {
    background: rgb(102, 74, 56, .4);
    z-index: 1;
    transition: all .4s 100ms cubic-bezier(.42,0,.58,1);
    -webkit-transform: scale(1);
    transform: scale(1);
}
.show-list .item a:hover .overlay {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}











/* = = = 分隔線 相本分類= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*相本列表*/
.album_page #page, .album_class_page #page, .album_info_page #page{
}
.album_page #content, .album_class_page #content, .album_info_page #content{
    background: transparent;
}

.album_page .show_content, .album_info_page .show_content{ 
    width: 100%;    
    text-align: center;
}

/* 主分類相簿名 */
.subalbum-menu h2 {
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--SubColor);
    padding: 0;
    margin: 0;
    font-size: 0;
}
/*大分類頁*/
.album_class_page .show_content,.album_info_page .show_content {width: 90%;}
.show-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: clamp(20px, 4%, 50px);
    gap: 30px;
}
.album_class_page .show-list {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.show-list .item {
    text-align: center;
    width: 100%;
    background: transparent;
}
/* 次分類相簿名 */
.other_subalbum li a p {
    line-height: 2;
    margin: -22px 0 0 11px;
    margin: 0;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 20px;
    font-family: var(--SFontE);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .1em;
    color: #333;
    transition: .3s cubic-bezier(.4,.4,0,1);
}
.show-list .item a:hover p{
    color: #baa48c;
    transition-duration: 600ms;
}


/*相本內頁-.album_info_page*/
.album_info_page{}
.album_descrip p {
    font-weight: 700;
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    color: #333;
    font-size: 20px;
    letter-spacing: 0.12em;
}
/*相簿瀑布流*/
.album_info_page .pic-list {
    -webkit-column-count: 3;
    -webkit-column-gap: 10px;
    column-count: 3;
    column-gap: 10px;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-gap: 10px;
}
.album_info_page .pic-list .item { width: 100%;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 0;
    margin: 0;
}
.album_info_page .pic-list .show_pic {
    height: auto;
    padding: 0;
    aspect-ratio: 4 / 4;
}
.pic-list .item h6 {
    padding: 0;
}



@media (max-width: 1440px){
.album_info_page .pic-list{ 
    -moz-column-count:3; 
    -webkit-column-count:3;  
    column-count:3;
}
}
@media screen and (max-width: 1280px){
    .show-list {
        grid-template-columns: 1fr 1fr;
    }
    .main_part {
        width: 90%;
    }
}
@media screen and (max-width: 980px){
    .main_part {
        width: 100%;
    }
}

@media screen and (max-width: 768px){
    .show-list {
        grid-template-columns: 1fr ;
    }
}

@media screen and (max-width: 600px){
    .album_page .show-list .item{width: 100%;}	
    .album_page .show-list .item{margin:auto;}
    .show-list .item{margin:auto;}
    .show-list .item a .show_pic img{min-height: 340px;}
    
}





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*聯絡我們 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.contact_form li.last cite {
    background: #d3af79;
}

.contact_editbox{
	padding: 0;
}
.contact_content .information_left{
	display: none;
}

/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
@media screen and (min-width: 1700px) {
    /* footer */
    .footer_info {
        margin: auto;
    }
}

@media screen and (max-width: 1024px) {
    /* footer */
    .footer_info {
        grid-template-columns: 1fr;
        text-align: center;
        position: relative;
        gap: unset;
    }
    .footer_logo {
        position: relative;
        left: unset;
        width: 100%;
        max-width: 180px;
        font-size: 0;
        transform: unset;
    }
    .footer_logo a {
        position: relative;
        display: block;
        width: 100%;
    }

    .footer_info ul {
        grid-template-columns: 1fr;
        gap: 20px;
        flex-direction: column;
    }
    .footer_info li+li{
        margin-top: 0;
    }
    .footer_info li:nth-child(2) {
        padding: 15px 0;
    }
    .footer_menu {
        display: flex;
        justify-content: center;
        margin-left: auto;
    }
    .footer_menu a {
        margin: 0;
        border: none;
        background: transparent;
        width: fit-content;
        transition: all 0.3s;
        font-size: 12px;
        padding: 0;
    }
    .footer_menu a:hover:after {
        transform: translate(0px, -32px);
    }

    
}

/* 下方區域_手機版面768 */
@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu { display: none    }
    .footer.with_shopping_mode { padding: 0; }
    #to_top {
        bottom: 10px;
        width: 40px;
        height: 40px;
        padding-top: 5px;
        left: 10px;
    }

    .footer .center {
        padding-bottom: 60px;
    }
    .footer_menu {
        flex-wrap: wrap;
    }
    .footer_menu a:after{
        content: none !important;
    }
    .footer_menu a:hover:before {
        opacity: 1;
        transform: unset;
        transition-duration: 600ms;
        color: #baa48c;
        font-weight: 500;
    }



}

@media screen and (max-width: 600px) {
    .copy {
        font-size: 10px;
    }
}
@media screen and (max-width: 560px) {
    .pageIndex .nav-brand, .sticky .nav-brand, .nav-brand {
        max-width: 80px;
    }
}
@media screen and (max-width: 480px) {
}