@charset "utf-8";



/* 全域變數 */
/*------------------------------------------------*/
/* 全域重置上方空白 */
/*------------------------------------------------*/
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
:root {
    /* 顏色 */
    --main-color: #e1cea5;
    --sub-color: #855F26;
    --sub1-color: color-mix(in srgb, var(--main-color) 75%, black);
    --sub2-color: color-mix(in srgb, var(--main-color) 25%, white);
    --sub3-color: color-mix(in srgb, var(--main-color) 3%, white);
    --ac-color: #1F1A17;
    --f1-color: #675744;
    --f2-color: #866028;
    --f3-color: #f6f6f6;
    --f4-color: #EFE6D8;
    --bg-color: white;
    /* 字型 */
    --font: "Noto Serif CJK TC", sans-serif;
    --sfont: "Noto Serif CJK TC","Cinzel", sans-serif;

    /*變化*/
    --tr: ease-out 0.5s;
    transition: var(--trans);
    --trans: .4s linear;
    /*圓角*/
    --br: 0px;
    --op-duration: 3s; /* OP Logo 動畫總時間 */
    /*字大小*/
     --f60: 60px;
    --f54: 54px;
    --f48: 48px;
    --f42: 42px;
    --f40: 40px;
    --f36: 36px;
    --f32: 32px;
    --f28: 28px;
    --f24: 24px;
    --f22: 22px;
    --f20: 20px;
    --f18: 18px;
    --f17: 17px;
    --f16: 16px;
    --pd80:80px;
}


/*★★★卷軸設定↓↓↓↓↓↓↓↓↓↓↓↓*/
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    width: 10px; /*右側捲軸寬度*/
    height: 0px; /*下方捲軸高度*/
}

/* 軌道背景底色 */
::-webkit-scrollbar-track {    background: #EBEBDF; }
/* 滑桿顏色 */
::-webkit-scrollbar-thumb {    background: #675744;}
/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {    background:#e1cea5;}

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path { display:none;}
.pageIndex .main_part {    border-top: none;}
#content {    min-height: 80vh;}
body.blog_in_page {
    font-size: var(--f16);
    letter-spacing: 1px;
}
body {
    overflow-x: hidden;
}

/*頁碼*/
.page strong, .page a:hover {    background: var(--sub1-color);}
.page li.activeN {    color: var(--sub1-color);}

.main_part {    max-width: 1400px;    padding: var(--pd80) 20px;}


@media screen and (max-width: 768px) {
.main_part {
    padding: 20px;
}
}

.me_tp_features,.sb_marquee  {
    display: none;
}
/*------------------------------------------------*/
/* 基本說明 */
/*------------------------------------------------*/
/* CSS 屬性繼承規則與使用提醒：
   1. 後定義會覆蓋前定義。
   2. 特殊情況：絕對路徑命名或 !important
*/

/*------------------------------------------------*/
/* 商品下拉超過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;
}

/*------------------------------------------------*/
/* RWD 調整 */
/*------------------------------------------------*/
@media screen and (max-width:1200px){ }

@media screen and (max-width:1024px){
    .product_main { display:block; width:100%; }
    .sidebarBtn { display:block; width:100%; }
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*------------------------------------------------*/
/* OP Logo 動畫 */
/*------------------------------------------------*/
/* 出場 Logo 圖層 */ 
.pageIndex #page::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: url(https://pic03.eapple.com.tw/mytaspa/logo_op.png) center center no-repeat;
    background-size: 350px auto;
    animation: logoAppearBlur 1.6s ease-out forwards;
    pointer-events: none;
}

/* 背景漸層動畫層 */
.pageIndex #page::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    background-image: linear-gradient(150deg, #e1cea5, #f9fdff, #fff1d2);
    background-size: 250% 250%;
    width: 100%;
    height: 100%;
    z-index: 9998;
    pointer-events: none;
    animation: smoothGradientWash 2.2s ease-in-out both; /* 縮短漸層出場時間 */
    opacity: 0.9;
}

/* 模糊遮罩層 */
.pageIndex .bannerindex::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(9px) brightness(1.05);
    z-index: 999;
    animation: fogFadeAway 2.8s ease-in-out forwards; /* 淡出時間稍縮短 */
    pointer-events: none;
    mix-blend-mode: screen;
}

/* LOGO 動畫：微放大 + 淡出 + 模糊 */
@keyframes logoAppearBlur {
    0% {
        opacity: 1;
        transform: scale(1);
        backdrop-filter: blur(0px);
    }
    80% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
        backdrop-filter: blur(5px);
    }
}

/* 背景動畫：漸層流動 + 淡出 */
@keyframes smoothGradientWash {
    0% {
        background-position: 0% 50%;
        opacity: 1;
    }
    50% {
        background-position: 100% 50%;
        filter: blur(4px);
    }
    100% {
        background-position: 0% 50%;
        opacity: 0;
    }
}

/* 遮罩模糊淡出 */
@keyframes fogFadeAway {
    0% {
        backdrop-filter: blur(10px) brightness(1.05);
        opacity: 1;
    }
    100% {
        backdrop-filter: blur(0px) brightness(1);
        opacity: 0;
    }
}



/*rwd*/
@media screen and (max-width: 1350px) {
    /* 完全取消背景黑 + 模糊 */
    .bannerindex::before {
        all: unset;      /* 移除所有屬性 */
        display: none;   /* 不顯示 */
    }

    /* 完全取消中心 Logo */
    .bannerindex::after {
        all: unset;      /* 移除所有屬性 */
        display: none;   /* 不顯示 */
    }
}
/*------------------------------------------------*/
/* Banner 基礎設定 - 移除多餘空間 */
/*------------------------------------------------*/
#content_main { margin: 0; padding: 0; }
.swiper-banner { position: static; margin: 0; height: auto; }
.swiper-slide { position: relative; overflow: hidden; }
.swiper-slide img { display: block; height: auto; animation: none !important; transform: scale(1.01); }
/*------------------------------------------------*/
/* Banner 背景圖片覆蓋 */
/*------------------------------------------------*/
.pageIndex .swiper-wrapper .swiper-slide:nth-child(1)::before,
.pageIndex .swiper-wrapper .swiper-slide:nth-child(2)::before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:2;
    pointer-events:none;
}

.pageIndex .swiper-wrapper .swiper-slide:nth-child(1)::before {
    background:url(https://pic03.eapple.com.tw/mytaspa/banner-03.png) center/cover no-repeat;
}

.pageIndex .swiper-wrapper .swiper-slide:nth-child(2)::before {
    background:url(https://pic03.eapple.com.tw/mytaspa/banner-05.png) center/cover no-repeat;
}

/* 主圖滑入動畫 */
.pageIndex .swiper-slide.swiper-slide-active:nth-child(1)::before,
.pageIndex .swiper-slide.swiper-slide-active:nth-child(2)::before {
    animation: bannerSlideUp 1.6s ease both;
}

@keyframes bannerSlideUp {
    0% { opacity:0; transform:translateY(120px); }
    100% { opacity:1; transform:translateY(0); }
}



/*------------------------------------------------*/
/* RWD 手機修正 */
/*------------------------------------------------*/
@media screen and (max-width: 768px){
    .bannerindex { margin:0; padding:0; }
    .pageIndex .swiper-wrapper .swiper-slide::after { width:120px; height:120px; }
    .swiper-slide img { width:100%; height:auto; }
}


/*------------------------------------------------*/
/* header */
/*------------------------------------------------*/

.header_area {
    position: fixed;
    width: 100%;
    background: transparent;
    transition: all 0.8s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    padding: 0;
    opacity: 0;
    animation: showmenu 1.5s forwards;
    animation-delay: 2s;
}

.main_header_area{
    position: relative;
}

/* header 漸層-內頁) */
.main_header_area:after{
    content:"";
    position:absolute;
    width:100%;
    height:20rem;
    top:0;
    pointer-events:none;
    transition:.6s ease-in-out;
    background:linear-gradient(180deg,#f5eee8,transparent);
}

/* 首頁 */
/* 首頁黑色 */
.pageIndex .main_header_area:after{
    background:linear-gradient(rgb(0 0 0 / 40%), rgb(0 0 0 / 0%) 48%, transparent);
}


/* sticky 後漸層消失 */
.pageIndex .header_area.sticky .main_header_area:after,.header_area.sticky .main_header_area:after {
    background: transparent !important;
}




.nav-header {
    max-width: 150px;
    padding-top: 8px;
    position: fixed;
    top: 25px;
    left: 5%;
    transform: none;
    transition: all 0.8s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


/* 漸顯動畫 */
@keyframes showmenu {
    0% { opacity: 0; }
    100% { opacity: 1; }
}


/* 預設隱藏 */
.nav-brand img {
    opacity: 0;
    transition: opacity .4s ease;
}

/* sticky 後顯示 */
.sticky .nav-brand img {
    opacity: 1;
}

/*rwd*/
@media screen and (max-width: 500px) {
.main_header_area:after {
    background: unset;}

.nav-header {
    max-width: 80px;
    top: 15px;
}    
}
/*------------------------------------------------*/
/* 漢堡menu */
/*------------------------------------------------*/

.stellarnav.mobile .menu-toggle {
    position: fixed;
    top: 50px;
    right: 40px; 
    z-index: 99999;
}

/* 漢堡線條 */
/* 其他頁面 */
.stellarnav .menu-toggle span.bars span {
    width: 55px;
    height: 2px;
    background:var(--sub-color); /* 咖啡色 */
    margin-bottom: 10px;
}

/*首頁*/
.pageindex .stellarnav .menu-toggle span.bars span {
    background: var(--main-color);
}


/*側邊選單*/
.stellarnav.mobile.left > ul {
    right: 0;
    left: unset;
    background: #000000a3;
    z-index: 99999;}

.stellarnav.mobile > ul > li {    
    padding: 15px;
}
.stellarnav.mobile > ul > li > a {
    padding: 0;
}
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {max-width: 30%;}
.stellarnav.mobile li a {
    border-bottom: 1px solid rgb(255 255 255 / 0%);
}

    .stellarnav .menu-toggle:after {margin-top: 8px;font-weight: 400;}
	.stellarnav.mobile > ul > li > a.dd-toggle{top: 15px;}
	.stellarnav.mobile > ul > li.open > a.dd-toggle{top: 5px;}
	.stellarnav a.dd-toggle .icon-plus:before,.stellarnav a.dd-toggle .icon-plus:after {border-bottom: solid 1px #e1cea5;}
	.stellarnav.mobile .close-menu{position: relative;color: transparent;}
	.stellarnav.mobile .close-menu > *{display: none;}
	.stellarnav.mobile .close-menu:before{content: "×";position: absolute;right: 10px;top: 10px;color: #000;
        font-size: 12px;}
    .stellarnav.mobile > ul > li > a b{vertical-align: middle;}
	.stellarnav .menu-toggle:after {display: none;}
	.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {background: transparent;}
	.stellarnav.mobile.left .close-menu {background: var(--main-color);width: 32px;height: 32px;margin: 10px 10px 0 auto;
		border-radius: 10px;display: block;}
    .stellarnav.mobile .close-menu:before {font-size: 20px;top: 0;right: 0;display: block;width: 100%;height: 100%;
    	line-height: 30px;text-align: center;color: #fff;padding-left: 1px;}
    .stellarnav.mobile {left: 8px;top: 8px;}
    .stellarnav.mobile li.open {background: #ada17e00;padding: 0;}
    .stellarnav.mobile li.open li.open {background: #f3f3f3;padding: 0;}
    .stellarnav.mobile li li.has-sub a {padding: 10px 15px;}
    .stellarnav.mobile li.has-sub li a {text-align: left;padding: 8px 15px;color:var(--main-color);}
    .stellarnav.mobile li.has-sub li a.dd-toggle{right: 5px;}
    .stellarnav.mobile li.has-sub li a.dd-toggle:hover {padding-left: 0;text-align: center;background: transparent;}
    .stellarnav.mobile > ul > li {border-bottom: 1px #f6f5f5 solid;}
    .stellarnav.mobile > ul > li > a {color: var(--main-color);top: 5px;}
    .stellarnav.mobile > ul > li > a.dd-toggle {top: 5px;}
    .stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after{width: 10px;}
    .stellarnav.mobile > ul > li > ul > li > ul ~ a.dd-toggle .icon-plus {margin: 0 auto;display: block;}
    .stellarnav li.has-sub li a:hover {background: #fff;color:var(--main-color);}
.stellarnav li {    line-height: 40px;}
/* 選單項目 */
.stellarnav.mobile > ul > li {
    padding: 15px;
    border-bottom: 1px #f6f5f5 solid;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

/* hover 效果 */
.stellarnav.mobile > ul > li:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    padding-top: 10px;
}

.stellarnav li li {
    border: 1px #e1cea5 solid;
    background: #aba07d;}
  
/*rwd*/

@media screen and (max-width: 768px) {
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
    max-width: 50%;}

.stellarnav.mobile > ul > li > a {
    top: 0;
}    
}

@media screen and (max-width: 500px) {
.stellarnav .menu-toggle span.bars span {
    width: 25px;
    margin-bottom: 5px;
}
.stellarnav.mobile .menu-toggle {
    top: 40px;}
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
    max-width: 100%;}
}

/*footer -------------------- */

/*FOOTER*/

.footer_info li p.fax:before {
    content: '營業時間：';
}


/* 順序調整 */
.footer_info li:nth-child(1) {
    display: flex;
    flex-direction: column;
}
.footer_info li p.tel{
    order: 1;
}
.footer_info li p.add{
    order: 2;  
}
.footer_info li p.fax{
    order: 3;
}



.footer {
    padding: 50px 0 0;
    font-size: 14px;
    background: var(--main-color);

}


.footer .center {
    max-width: 90%;
}

.footer_info {
    display: flex;
    grid-gap: 30px;
    padding-right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 10px;
}

.footer_logo {
    max-width: 250px;
    order: 1;
}
.footer_logo img {display: none;}
.footer_logo {
    width: 250px;
    height: 150px;
  display: block;
  background-image: url('https://pic03.eapple.com.tw/mytaspa/logo-02.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.footer_info ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    order: 2;
    padding-left: 5px;
}

.footer_info li {
    padding: 0;
}

.footer_info li p {
    line-height: 180%;
    letter-spacing: 0.1em;
    color: var(--f1-color);
    font-weight: 500;
}

.footer_info li p a {
    color: var(--f1-color);
    
}

/*選單*/
.footer_menu a {
    padding: 0;
    border: unset;
    margin: 0 15px 5px 0;
    color: var(--f2-color);
    background: unset;
    transition: 0.5s ease;
    font-size: 12px;
}

.footer_menu a:hover {
    background: unset;
    color: var(--bg-color);
}

/* 隱藏-回首頁 */
.footer_menu a:nth-of-type(1) {
    /* display: none; */
}

.double_key {
    text-align: center;
    margin: 0px;
    position: relative;
    order: 4;
}

.box_link {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 60%;
    max-width: 100%;
    order: 3;
    z-index: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    max-height: 100%;
    display: none;
}

.box_link a {
    display: block;
    width: auto;
    border: unset;
    border-radius: 0;
    padding: 0 0 0 20px;
    font-size: 20px;
    margin: 0;
    color: var(--f2-color);
    transition: 0.5s ease;
}

.box_link a:hover {
    color: var(--f1-color);
}

@media screen and (max-width: 768px) {
    .footer_logo {
        max-width: 250px;
    }

    .footer_info {
        padding: 0;
    }

    .footer_info ul {
        padding-bottom: 30px;
    }

    .footer_info li+li {
        margin-top: 0;
    }

}

@media screen and (max-width: 600px) {
    .footer {
        font-size: 14px;
        padding: 60px 0 0;
    }

    .footer_info {
        padding: 0;
        grid-gap: 20px;
    }


    .footer_menu a {
        margin: 0 10px 5px 0;
    }

    .box_link {
        display: none;
    }
    .footer_logo {    
    height: 100px;}

}

@media screen and (max-width: 450px) {
    .footer_info li p {
        letter-spacing: 0.05em;
    }

    .footer_menu a {
        font-size: 12px;
        margin: 0 5px 5px 0;
    }
    .footer_logo img {
    max-width: 60%;
    }
}

/*COPY*/
.copy {
    position: relative;
    width: 90%;
    margin: 0 auto;
    padding: 0 0 100px;
    border-top: unset;
    text-align: left;
    display: flex;
    justify-content: flex-start;
}




/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 768px) {
    .copy {
        padding-bottom: 80px;
    }
}



/*------------------------------------------------*/
/* 文章blog */
/*------------------------------------------------*/
.blog_shareData {display: none;}
/*側邊*/
.blog_page #content .main_part{ max-width: 1500px;}
.blog_le{padding: 0;width: 250px;}
h5.blog_le_t{text-align: center;margin-bottom: 0;}
h5.blog_le_t em,h5.blog_le_t span{display: none;}
.blog_search input[type=search]{border-radius: 0;}
.blog_le .accordion {border-radius: 0;border: 0px;}
.blog_le .accordion li{transition: all .8s;margin-bottom: 8px;}
.accordion li .link a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .2rem;
    text-align: center;
    border-radius: 12px;
    background: transparent;
    color: #855F26;
    transition: 0.5s;
    border: 1px solid #BCBCBC;
}
.accordion li .link a:hover{background:#855F26;border-radius:12px;}
.blog_le .accordion > li:hover,
.blog_le .accordion > li.on_this_category{
    background:#616161!important;
    border-radius:12px;
}
.blog_le .accordion > li:hover .link a,
.blog_le .accordion > li.on_this_category .link a{
    background:#855F26!important;
    border-radius:12px;
}
.blog_le a.news_menu_toggle{top:-10px;}
.accordion li+li .link{border-top:0px;}
.submenu a {padding:12px 12px 12px 30px;background:#fff;font-size:12px;}

/*右側*/
.blog_ri {
    width: calc(100% - 260px);
    padding: 0 0 0 50px;
}

/*分類頁*/
.blog_page h4.blog_category_title{display:none;}
.blog_subbox{
    grid-template-columns:1fr 1fr 1fr;
    grid-gap:50px 30px;
}
.subbox_item a{
    grid-template-columns:1fr;
    grid-gap:10px;
    padding-right:0;
}
.subbox_item a:before,
.subbox_item a:after{display:none;}

.blog_list_le{
    overflow:hidden;
    aspect-ratio:1 / 1;
}
.blog_list_le img{
    transition:all .5s;
    transform:scale(1);
}
.subbox_item a:hover .blog_list_le img{
    opacity:.85;
    transform:scale(1.1);
}
.subbox_item a:hover .blog_list_ri h5{color:#000;}

.blog_list_ri h5{
    color:#855F26;
    font-weight:500;
    font-size:16px;
}
.blog_list_ri em{
    font-size:12px;
    color:#D8D8D8;
}
.blog_list_ri p{
    font-weight:400;
    line-height:160%;
    font-size:14px;
    margin-top:14px;
    color:#838383;
}

/*文章頁*/
h4.blog_category_title{
    padding:0;
    font-size:24px;
    margin-bottom:0;
    font-weight:500;
    color:#35383C;
}
.blog_shareData{
    border-bottom:1px solid #eee;
    padding-bottom:10px;
}
.toShareNews b{
    font-size:12px;
    font-weight:400;
}
.toShareNews a object{max-width:20px;}
.articel_mainPic{display:none;}
.blog_back{grid-gap:0;}
.blog_back a.article_btn_prev,
.blog_back a.article_btn_next{
    background:transparent;
    color:#855F26;
    border:1px solid #BCBCBC;
    font-size:14px;
    padding:12px;
}
.blog_back a.article_btn_back{
    background:#855F26;
    padding:12px;
}
.blog_box_edit *{
    font-weight:400;
    font-family:"Noto Serif TC","Cormorant Garamond",serif;
    color:#855F26;
}

/*相關文章*/
.news_related{
    padding:50px 0 25px;
    border-top:1px solid #333;
    margin-top:100px;
    background:transparent;
}
.news_related h6 span:before{
    font-size:18px;
    letter-spacing:.6rem;
    font-weight:500;
    color:#555;
}
.news_related_list{
    background:transparent;
    max-width:1400px;
    grid-gap:30px;
    grid-template-columns:repeat(4,1fr);
    padding:0 40px;
}
.news_related_list li a{padding:0;transition:0.5s;}
.news_related_list li a img{transition:0.5s;}
.news_related_list li a:hover img{opacity:0.85;}
.news_related_list li a p{
    font-size:16px;
    width:90%;
    line-height:1.4;
    margin:15px auto 20px;
    padding:0;
    font-weight:300;
}

.lastPage{
    background:#855F26;
    font-size:16px;
}

/*------------------------------------------------*/
/* RWD */
/*------------------------------------------------*/

@media screen and (max-width:1024px){
    .blog_subbox{grid-template-columns:1fr 1fr;}
}

@media screen and (max-width:960px){
    .subbox_item{border-bottom:0px;}
}

@media screen and (max-width:768px){

    /*側邊*/
    .blog_le{
        width:100%!important;
        margin-bottom:50px;
    }
    .blog_search{top:20px;}
    .blog_le a.news_menu_toggle{
        top:0;
        color:#855f26;
    }
    .blog_search input[type=search]{
        color:#855f26;
        border:solid 1px #855f26;
    }

    /*右側*/
    .blog_ri{
        width:100%;
        padding:0;
        margin-bottom:50px;
    }

    /*分類*/
    .blog_list_ri{padding:0;}
    .blog_list_ri h5{font-size:16px;}

    /*文章*/
    .blog_back a.article_btn_prev,
    .blog_back a.article_btn_next,
    .blog_back a.article_btn_back{
        font-size:12px;
    }

    .news_related_list{
        grid-gap:18px;
        grid-template-columns:repeat(2,1fr);
    }

    .lastPage{font-size:12px;}
    /*手機選單*/    
    .blog_le .accordion {    
    top: 20px;
    position: relative;}

}


@media screen and (max-width: 450px) {
    .blog_subbox {
        grid-template-columns: 1fr;
    }
}


/*首頁文章*/

.module_i_news {
  padding: 20px 20px 0px;
}

.module_i_news .title_i_box h4 {
    padding: 49px 0 45px;
    position:relative;
    color: #855F26;
    line-height: 120%;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-size: 20px;
    font-family: "Noto Serif CJK TC", serif;
}

.module_i_news .title_i_box h4::before {
    content: 'NEWS';
    position: absolute;
    top: 81%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #e1cea5;
    line-height: 120%;
    letter-spacing: 0.1em;
    font-family: "Cinzel", serif;
    font-size: 40px;    
    font-weight: 400;
}

.module_i_news li a {
  display: flex;
  grid-gap: 17px;
  flex-direction: column;
  flex-wrap: wrap;
}

.module_i_news ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 50px;
}

.i_blog_le {
  padding: 0px 34px;
  aspect-ratio: auto;
}

.i_blog_le img {
  border-radius: 20px;
  z-index: 999;
  transition: .5s;
  aspect-ratio: 1 / 1;
}

.i_blog_ri h5 {
    display: flex;
    font-size: 16px;
    font-weight: 400;
    z-index: 999;
    position: relative;
    color: #636363;
    letter-spacing: 0.8px;
}

.i_blog_ri em {
  margin: 0px;
  position: absolute;
  top: 3px;
  writing-mode: sideways-rl;
  left: 6px;
color: #e1cea5;
}

.i_blog_ri p {
  letter-spacing: 1px;
  font-size: 14px;
  color: #855F26;
  font-weight: 300;
  -webkit-line-clamp: 2;
}


.module_i_news li a:before {
display:none;
}


.module_i_news li a:hover:before {
  height: 108.5%;
  transition: all .6s;
}

.module_i_news li a:hover .i_blog_ri h5 {
  color: #855F26;
}

.module_i_news li a:after {
  left: -6px;
  top: -23px;
  bottom: 0;
  z-index: 8;
}

.module_i_news li a:hover .i_blog_le img {
    border-radius: 150px 150px 0 0;
    transition: 1.0s;
}

.animated-arrow {
    background: #855f26;}


.module_i_news li a:after {
border: 1px #dddddd00 solid;}



@media screen and (max-width:1024px) {
    .module_i_news ul {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media screen and (max-width:768px) {
    .module_i_news ul {
        grid-template-columns: repeat(2, 1fr);
    }
}



@media (max-width: 568px) {
.module_i_news .title_i_box h4 {font-size: 16px;padding: 49px 0 20px;}
.module_i_news .title_i_box h4::before{top: 95%;font-size: 30px;}

}

@media screen and (max-width:480px) {
    .module_i_news ul {
        grid-template-columns: 1fr;
    }
}

/*------------------------------------------------*/
/* 相簿 */
/*------------------------------------------------*/
/* 相簿管理 */

.subalbum-menu h2 {
    display: none;
}
.show-list {
    grid-gap: 2.5VW;
}
.show-list .show_pic {
    border-radius: 30px;
}
.overlay {
    display: none;
}
.show-list .show_pic img {
    clip-path: inset(0 0);
}
.show-list .show_name {
    font-size: 15px;
    font-weight: 500;
    color: var(--sub-color);
}

/*hover */
.show-list .item a:hover img {
    clip-path: inset(1.5vw 1.5vw);
    transform: scale(1.1);
}
.show-list .show_pic img,
.show-list .item a:hover img {
    transition: var(--trans);
}
.show-list .item:hover .show_name {
    color: var(--sub1-color);
}

/* 01---.album_page */

/* 相簿分類 */
.album_fixed_title {
    color:var(--SubColor02);
    background: transparent;
    margin-bottom: 10px;
}
.album_fixed_title i {
    display: none;
}
.album_fixed_title span {
    font-size: 16px;
}
.other_album {
    background: #c9e7ff;
    border-radius: 30px;
    padding: 20px 30px;
}
.other_album_choice li {
    background: transparent;
    border-bottom: solid 1px #a6e3ff;
    border-radius: 0;
    padding: 12px 0;
}
.other_album_choice li a {
    font-size: 14px;
    color: var(--SubColor02);
    padding: 12px 20px;
}
.other_album_choice li a i.fa-solid.fa-right-from-bracket {
    display: none;
}

/* HOVER*/
.other_album_choice li:hover {
    border-bottom: solid 1px var(--SubColor02);
}
.other_album_choice li:hover a {
    color: #44A9D7;
}



/*album_class_page */
.other_subalbum li a p {
    font-size: 15px;
    font-weight: 500;
    color: var(--SubColor02);    
}
.other_subalbum li {
    background: transparent;
}
.other_subalbum li a p {
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.15em;
    margin-top: 5px;
}


/*album_info_page*/
.pic-list .show_pic {
    border-radius: 30px;
}
.pic-list {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: 2.5VW;
}
.pic-list .item a:hover img {
    opacity: .7;
}

/* .album_info_page - hover */
.pic-list .item a * {
    transition: var(--trans);
}

/*RWD*/
@media screen and (max-width: 768px) {
.other_album {display: none;}
}







/*------------------------------------------------*/
/*內頁BANNER 設定*/
/*------------------------------------------------*/


.banB {display: none;}
.banner h5 {  
width: 100%;  
margin: 0 auto;  
font-size: 50px;  
color: #fff;  
text-shadow: 0 0 10px rgba(0, 0, 0, .2); 
position: absolute;  
top: 45%;  
left: 15%;
transform: translate(-50%, -50%); 
letter-spacing: 3px; 
font-weight: 500;
font-family: "Noto Serif CJK TC", serif;}




@media screen and (max-width: 1024px){
	.banner{height: 200px;}
}

.banner {
    background-position: center;
    overflow: hidden;
    background-image: none;
    position: relative;
    z-index: 1;
    padding: 12vw;
}


.banner::before {  content: "";
    background-image: linear-gradient(180deg, #00000000 40%, rgb(0 0 0 / 31%) 65%), url(https://pic03.eapple.com.tw/mytaspa/ban01.png);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation-duration: 5s;
    background-size: cover;
    background-position: center;
    animation: bgScroll 30s linear infinite;
    width: 110%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
}


@keyframes bgScroll {
    0% {        -webkit-transform: translateX(0);        transform: translateX(0);    }
    50% {        -webkit-transform: translateX(-5%);        transform: translateX(-5%);    }
    100% {        -webkit-transform: translateX(0);        transform: translateX(0);    }
}

.banner h5:before {
    content: "MYTA SPA｜沉浸放鬆" !important;
    display: block;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 2px;
    margin-top: 15px;
    margin-bottom: 0px;
    padding-bottom: 5px;
    position: relative;  
    animation: SlideUp 1s 0.1s ease-in-out forwards;
    opacity: 0; 
}
@keyframes SlideUp {
    0% {    opacity: 0;   -webkit-transform: translateY(30px);   transform: translateY(30px);    }
    100% {  opacity: 1;   -webkit-transform: translateY(0);    transform: translateY(0);    }
}


@media screen and (max-width: 1145px) {
.banner h5 {    font-size: 40px;left: 20%;}
}


@media screen and (max-width: 768px) {
.banner h5:before {    font-size: 17px;    padding-bottom: 0;}
}

@media screen and (max-width: 500px) {
.banner h5 {    font-size: 35px;left: 23%;}
.banner h5:before {    font-size: 15px;}
}

@media screen and (max-width: 400px) {
.banner h5 {    font-size: 28px;left: 50%;}
.banner h5:before {    font-size: 15px;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/