@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


body{ font-family: "Zen Kaku Gothic Antique", sans-serif,"Noto Sans TC", sans-serif,"Jost", sans-serif}
#content {background: #FAF9F5;}

/* 捲軸寬度及高度 */
&::-webkit-scrollbar {
background: #ffffff;
width: 6px;
}
/* 捲軸兩側頂端的按鈕 */
&::-webkit-scrollbar-button {
display: none;
}
/* 滑桿顏色 */
&::-webkit-scrollbar-thumb {
background-color: #f3eade;
border-radius: 0px;
transition: all 0.3s;
}
/* 軌道背景底色 */
&::-webkit-scrollbar-track {  
background-color: #ffffff;
}


/****/

.other_promotion{
    display: none;
}

.promotion_title{
    display: none;
}

.other_select_page ul.page {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*大圖特效*/

.bannerindex {
  position: relative;
}

#content_main {  margin: 0;}
.bannerindex { position: static; height: auto;}
.swiper-banner { position: static; margin: 0; height: auto;}
.swiper-slide { padding: 0px !important;}
.swiper-slide img { height: auto;}
.swiper-pagination { display: none;}
.swiper-slide { position: relative;}
.bannerindex .swiper-slide.swiper-slide-active:before {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
.bannerindex .swiper-slide.swiper-slide-active:after {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
@media screen and (max-width: 768px) {
    .bannerindex { padding:0; margin:0;}
    }

.bannerindex::before {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    pointer-events: none;
    background: linear-gradient(to top, rgba(138, 121, 98, 0.8) 0%, rgba(138, 121, 98, 0.4) 40%, transparent 100%);
    background-size: 100% 300%;
    animation: aurora-wave 2s ease-in-out infinite alternate;
    filter: blur(20px);
    mix-blend-mode: screen;
}

@keyframes aurora-wave {
    0% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/*圖1*/

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after {
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
    background: url(https://pic03.eapple.com.tw//aurora/title1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 34%;
    right: 38%;
    width: 22% !important;
    height: 27% !important;
    background-position: left;
    padding-bottom: calc(100% / 1 * 0.12);
    animation: fade-in-top 3s cubic-bezier(.39, .575, .565, 1.000) both;
    animation-delay: .3s;
}
@keyframes fade-in-top {
    0% {
        transform: translateY(-200px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/*圖2*/

.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
    background: url(https://pic03.eapple.com.tw//aurora/title2.svg);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 34%;
    right: 38%;
    width: 22% !important;
    height: 27% !important;
    background-position: left;
    padding-bottom: calc(100% / 1 * 0.12);
    animation: fade-in-top 3s cubic-bezier(.39, .575, .565, 1.000) both;
    animation-delay: .3s;
}



/*logo*/

.nav-header {
    width: 170px;
    transition: .4s ease-in-out;

}

.header_area.sticky .nav-header {    
    transition: .4s ease-in-out;
}

.pageIndex .header_area.sticky .nav-header {
    width: 170px;
    filter: none;
    margin-top: 20px;
    pointer-events: all;
    transition: all 1s;
}

.pageIndex .nav-header {
    filter: invert(100%) brightness(1000%);
    width: 300px;
    margin-top: 40px;
    animation:flip-out-hor-top 2s cubic-bezier(.55,.085,.68,.53) both;
    animation-delay: .3s;
    pointer-events: none;

}

@keyframes flip-out-hor-top {
    0% {
              transform: rotateX(70deg);
      opacity: 0;
    }
    100% {
              transform: rotateX(0);
      opacity: 1;
    }
  }
  

/*header*/
.me_tp_features {
display: none;
}



.stellarnav ul {
    text-align: center;
    padding: 35px 0px 15px;
    transition: .5s ease-in-out;
}

.pageIndex .stellarnav ul {
    opacity: 0;
    pointer-events: none;
}

.pageIndex .header_area.sticky .stellarnav ul {
    opacity: 1;
    transition: .5s ease-in-out;
    pointer-events: all;
    padding: 30px 0px 5px;

}

.header_area {
    padding: 25px 10px 0px;
    position: sticky;
    background: #fff;
    box-shadow: 0 0 15px #ece9dd99;
}
.pageIndex .header_area {
    padding: 25px 10px 15px;
    position: fixed;
    background: transparent;
    box-shadow: none;
}

.header_area.sticky {
    padding: 25px 10px 0px;
    background: #ffffff;
}

.pageIndex .header_area.sticky {
    padding: 20px 0px;
    background: transparent;
}

.main_header_area {
    position: relative;
    z-index: 10;
}

.pageIndex .main_header_area::after {
    content: "";
    position: absolute;
    top: 0%;
    left: 50%;
    width: 95%;
    height: 100%;
    background: #fff;
    z-index: -1;
    box-shadow: 1px 1px 25px rgb(0 0 0 / 6%);
    transform: translateX(-50%) !important;
}

.pageIndex .main_header_area::after {
    background: transparent;
    opacity: 0;
    animation:.5s ease-in-out
    
}

.pageIndex .header_area.sticky .main_header_area::after {
    opacity: 1;
    background: #fff;
    box-shadow: 1px 1px 25px rgb(0 0 0 / 6%);
    animation: scale-in-ver-top 1.2s cubic-bezier(.25,.46,.45,.94) both;
    border-radius: 100px;
}


@keyframes scale-in-ver-top {
    0% {
        transform: translateY(-30px) scaleY(0); 
        transform-origin: 100% 0%;
        opacity: 0;
    }
    100% {
        transform: translateY(0) scaleY(1); 
        transform-origin: 100% 0%;
        opacity: 1;
    }
}



.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.pageIndex .header_area.sticky .navigation{
    padding-top: 20px; 
    transition: all 1s;
}


/*第一層*/

.stellarnav li.has-sub > a:after{
    display: none;
}

.stellarnav > ul > li.has-sub > a {
padding-right:0px
}

.stellarnav > ul > li > a {
    margin: 0 20px;
    letter-spacing: 2px;
    font-size: 15px;
    color: #6d6d6d;
}

.stellarnav > ul > li > a b:nth-of-type(2) {
    font-size: 12px;
    color:#8a7962;
}

.stellarnav > ul > li:after {
    content: '';
    position: absolute;
    left: 50%;
    top: -66%;
    width: 26px;
    height: 26px;
    background-image: url(https://pic03.eapple.com.tw/aurora/shine.svg);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.4s;
    transform: translate(-50%, -50%);
}


.stellarnav > ul > li:hover:after {
    top: -24%;
    opacity: 1;
    transition: all 1s;
    animation: spin 2.5s linear infinite;

}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}


/*第二層*/

.stellarnav li li {    border: none;}
.pageIndex .header_area.sticky .stellarnav ul ul {padding: 0px;letter-spacing: 1px;}
.stellarnav ul ul {padding: 0px;letter-spacing: 1px;}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 15px 10px;
    transition: all 0.3s;
    color: #444;
    font-size: 15px;
    background: #fff;
}

.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    border: none;
    margin-left: 10px;
    color:#b8a162;
    font-weight: 500;
    }

@media screen and (max-width: 1024px) {
    .pageIndex .header_area.sticky .stellarnav ul {
    padding: 0px 0px 5px;
}
}
@media screen and (max-width: 992px) {
    .pageIndex .header_area.sticky .nav-header {
        width: 120px;
    }
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 600px) {}
@media screen and (max-width: 500px) {}

/*footer*/

.box_link {display: none;}
.footer_menu a:nth-of-type(1){display: none;}
.footer_logo {
    max-width: 200px;
    margin-left: 80px;
}

.footer a {
    color: #ffffff;
}

.footer_logo img {
    max-width: 100%;
    filter: invert(100%) brightness(1000%);
}

.footer_menu {
    width: 100%;
    display: flex;
    gap: 50px 0px;
    padding-left: 36px;
    flex-wrap: wrap;
}
.footer {
    background: #8a7962;
    padding: 45px 0 0;
}

.footer_info li:nth-child(2) {
    display: flex;
    flex-wrap: wrap;
}
.copy {
    margin-top: 45px;
    padding: 30px 0;
    font-size: 8px;
    color: #ffffff;
    border-top: 1px #e2d4bf solid;
}

.copy a {
    font-weight: 300;
}

.copy a:hover {
    color: #f7ecde;
}

.footer_info {
    padding-right: 0px;
    display: flex;
    align-items: center;
    grid-gap: 68px;
    flex-direction: row;
}

.footer_menu a {
    background: transparent;
    margin: 0;
    text-align: center;
    padding: 0px 20px;
    font-size: 13px;
    color: #fff;
    letter-spacing: 1px;
    background-color: transparent;
    position: relative;
    transition: all 0.4s ease;
    border: none;
    text-align: justify;
}

.footer_menu a:hover {
    background: #ece8da;
    color: #626262;
}

.footer_info li p{
    color:#fff;
}

.footer_menu a:after {
    position: absolute;
    font-size: 12px;
    top: 191%;
    left: 50%;
    transform: translate(-50%, -50%);
    color:#f3eade;
}

.footer_menu a:nth-of-type(2):after {
    content: 'AURORA';
}

.footer_menu a:nth-of-type(3):after {
    content: 'SERVICES';
}

.footer_menu a:nth-of-type(4):after {
    content: 'TEAM';
}

.footer_menu a:nth-of-type(5):after {
    content: 'NEWS';
}

.footer_menu a:nth-of-type(6):after {
    content: 'COLUMN';
}

.footer_menu a:nth-of-type(7):after {
    content: 'CONTACT';
}

.footer_menu a:nth-of-type(8):after {
    content: 'BOOKING';
}



.footer_info li:nth-child(1) {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-bottom: 60px;
    padding-left: 65px;
}

@media screen and (max-width: 992px) {
    .footer_info {
    grid-gap: 25px;
    flex-wrap: wrap;
}

.footer_logo {
    max-width: 200px;
    margin-left: 70px;
}
.pageIndex .header_area.sticky .main_header_area::after {
    border-radius: 25px;
}
.stellarnav > ul > li > a {
    margin: 0 13px;
}
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 600px) {
    .footer_info li:nth-child(1) {
        padding: 20px 20px;
    }
    .footer_menu {
        padding: 0 0px;
        gap: 40px;
    }
    .footer_logo {
        max-width: 180px;
        margin-left: 20px;
    }
        .footer_info {
        padding-left: 10px;
        gap: 0;
    }
}
@media screen and (max-width: 500px) {}

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_page .show_content, .product_info_page .show_content {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border:none; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}


/*購物車外層*/

.product_page .product_menu_list {
    display: none;
}
.product_page .products-list, .product-wrapper {
    width: 1000px;
    max-width: 100%;
}
.products-list .more {
    border: none;
    color: #444;
    background: #FFF;
    border-radius: 50px;
    font-weight: 400;
    border: 1pt solid #a2937e;
}

.products-list .pic img {
    border-radius: 10px;
    transition: all 1s;
}

.products-list .item:hover .pic img {
    transform: scale(1.15);
    transition: all 1s;
}

.products-list .item a:hover .more {
    background: #a2937e;
    color: #fff;
}

.products-list .name {
    text-align: center;
    font-size: 17px;
}

.products-list .item {
    position: relative;
    background: #ffffffad;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e1dbca;
}

.products-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 50px 30px;
}



/*購物車內頁*/


#prod_thumbSwiper {
    display: none;
}

.product_pic {
    padding-left: 0px;
    width: fit-content;
}

.proImgSwiper li {
    display: block;
}

.proImgSwiper {
    width: 100%;
    aspect-ratio: auto;
    max-width: 500px;
}

.sidebarBtn{
    display: none;
}

.product_info_page .products-list, .product-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.product_main {
    width: auto;
}

.prod_tabs {
    padding: 40px 80px;
    margin: 0px 40px;
    background: #ffffffbf;
    border-radius: 15px;
}

.product_info_page .edit {
    padding: 0px;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.04em;
    line-height: 200%;
    font-size: 15px;
}

.pd_tabTitle li.activeTab::after {
    height: 1px;
    background: #b19f8b;
}

.pd_tabTitle li, .pd_tabTitle {
    pointer-events: none;
    font-size: 20px;
    border: none;
    padding-bottom: 25px;
}

.proImgSwiper img {
    max-height: 100%;
    border-radius: 20px;
}

/*購物車相關推薦*/

.prod_related h6 span:before {
    content: '其他醫師';
    font-size: 20px;
    color: #505050;
    font-weight: 400;
}

.prod_related h6 {
    margin: 0 auto 50px;
}

.prod_related {
    background: #ffffff94;
    padding: 60px 15px 10px;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
}
.lastPage {
    background: #8a7962;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.lastPage:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.lastPage::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.lastPage:hover::after {
    left: 125%;
}

.related_list li a {
    padding: 11px 0px 0px;
    transition: all.5s;
}

.related_list li a p {
    padding: 8px;
    transition: all.5s;
}

.related_list li:hover a {
    padding: 10px 10px 0px;
    background: #8a7962;
    transition: all.5s;
    color: #FFF;
}

.related_list li:hover a p {
    color: #FFF;
    padding: 22px 0px 22px;
    transition: all .5s;
    font-size: 17px;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*內頁BANNER 設定*/
.banner {
display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*首頁文章*/

.module_i_news .title_i_box h6 {
    font-size: 20px;
    color: #B09D8A;
    font-weight: 400;
}

.module_i_news .title_i_box h4 {
    font-size: 30px;
    color: #333;
}

.i_blog_ri h5 {
    font-weight: 400;
    letter-spacing: 1.3px;
    font-size: 17px;
}

.module_i_news li a {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.module_i_news ul {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.module_i_news {
    background: #faf9f5;
}
.i_blog_ri p {
    font-size: 13px;
    letter-spacing: 1px;
    color: #8b8b8b;}

/*最新消息****************************/

.module_i_news:nth-of-type(2) li {
    position: relative;
    padding: 20px;
    border: 1pt solid #8a79624d;
}
.module_i_news:nth-of-type(2) li a:after{
    display: none;
}
.module_i_news:nth-of-type(2) li a:before{
    display: none;
}
.module_i_news:nth-of-type(2) li:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    background: #fdfdfb;
    top: 0px;
    left: 0px;
    transition: .5s ease-in-out;
}
.module_i_news:nth-of-type(2) li:hover:before {
    width: 100%;
    transition: .5s ease-in-out;
}
.module_i_news:nth-of-type(2) li .i_blog_le img{
        transition: all 0.6s;
}
.module_i_news:nth-of-type(2) li:hover .i_blog_le img {
    transform: translate(0%, 0%) scale(1.1);
    filter: none;
    transition: all 0.6s;
}
/*醫師專欄*******************************/

.module_i_news:nth-of-type(3) {
    background: #fdfdfb;
}

.module_i_news:nth-of-type(3) ul {
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
}

.module_i_news:nth-of-type(3) li a {
    display: grid;
    grid-template-columns: 250px 1fr;
    grid-gap: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e3e2de;
}

.module_i_news:nth-of-type(3) .i_blog_ri h5 {
    font-weight: 400;
    letter-spacing: 1.5px;
    -webkit-line-clamp: 4;
}

.module_i_news:nth-of-type(3) li a:after{
    display: none;
}

.module_i_news:nth-of-type(3) li a:before{
    content: 'READ MORE';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: #8a7962;
    color: #ffffff;
    font-weight: 400;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 1;
    border-radius: 0px;
}

.module_i_news:nth-of-type(3) li a:hover:before{
    transform: translateY(0%);
    opacity: 1;
    border-radius: 0px;
}
@media screen and (max-width:1200px) {
.module_i_news:nth-of-type(3) ul {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
} 
.module_i_news:nth-of-type(3) li a {
    display: flex;
    grid-template-columns: 250px 1fr;
    grid-gap: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e3e2de;
}  
}
/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.submenu{
    background: transparent;
}
.submenu a {
    background: transparent;
}

h5.blog_le_t span {
    display: none;
}

h5.blog_le_t {
    font-size: 20px;
    font-weight: 400;
    font-family: "Kanit", sans-serif, "Noto Sans TC", serif;
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog_le .accordion {
    border: none;
    border-radius: 0px;
}

.blog_list_ri h5 {
    font-weight: 300;
    font-size: 18px;
}

.blog_list_ri p {
    font-size: 13px;
}

.subbox_item a {
    display: flex;
    flex-wrap: wrap;
    background: #FDFDFB;
}

.blog_list_ri {
    padding: 0 15px 15px 15px;
}

.accordion li .link a {
    font-weight: 400;
    letter-spacing: 2px;
}

.blog_subbox {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.subbox_item a:after { background: rgba(0,0,0,0.5);}
.blog_le .accordion > li:hover .link, .blog_le .accordion > li.on_this_category .link {
    background: #B09D8A;
    transition: all .5s;
}
.blog_page .main_part {max-width:1600px;}
.submenu li.on_this_category a, .submenu a:hover {
    background: #fff9ef;
    color: #444;
    transition: all .5s;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: #fff !important;
}
.blog_back a.article_btn_prev,.blog_back a.article_btn_next,.blog_back a.article_btn_back {
    background: transparent;
    color: #333;
    letter-spacing: 1px;}
.blog_back a {
    width: auto;
}

.blog_back {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.blog_back:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #00000017;
    bottom: 56px;
}

.edit {
    padding: 30px 0 90px;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.04em;
}

.subbox_item a:hover:before {
    transform: translate(-50%, -50%) scale(1);
    transition: all 500ms;
}
.path p, .path p a {
display: none;
}



.blog_list_le img {
    z-index: 999;
    padding: 20px;
}

.subbox_item a:hover .blog_list_le img {
    border-radius: 5px;
    padding: 0px;
}

h4.blog_category_title {
    color: #444;
    font-size: 22px;
    font-weight: 400;
}

.subbox_item {
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid #8a796238;
    border-radius: 5px;
}

.subbox_item a:after{display: none;}
.subbox_item a:before{display: none;}

@media screen and (max-width: 640px) {
    .blog_subbox {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/*相關文章*/

.news_related{display: none;}

.news_related h6 span:before {
    color: #505050;
    font-weight: 400;
}


.news_related_list li a:hover {
    padding: 10px 10px 0px;
    transition: .3s;
}

.news_related_list li a {
    transition: .3s;
}

.news_related {
    background: #f3f3f3b5;
}

.news_related_list li a p {
    padding: 10px;
}
/*首頁文章*/

.animated-arrow{
    position: relative;
    background: #8a7962;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
}

.animated-arrow:after{
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.animated-arrow:hover::after {
    left: 125%;
}

.animated-arrow b {
    font-weight: 300;
}


/*文章A*/
.blog_page.article_a .blog_box {
    padding: 10px 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.blog_page.article_a .blog_le {padding: 36px 0 0;}
.blog_page.article_a .blog_le, .blog_ri {margin-bottom: 1vw;}
.blog_page.article_a .blog_subbox {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0px;
}
.blog_page.article_a .blog_box:after, .blog_box:before, .blog_subbox:before {content: none;}
.blog_page.article_a .subbox_item {
    width: 100%;
    margin: 0;
    padding: 0px;
    border: none;
}
.blog_page.article_a .subbox_item a {
    display: flex;
    flex-flow: row wrap;
    flex-wrap: nowrap;
    justify-content: center;
    border-radius: 15px;
}
.blog_page.article_a .blog_list_le {
    width: auto;
    padding: 0;
    height: auto;
    aspect-ratio: 7/5;
    overflow: hidden;
    position: relative;
}
.blog_page.article_a .blog_list_le img {
    min-width: 100%;
    display: block;
    width: 500px;
    margin: 0 auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 1.2s ease;
    max-width: 100%;
    padding: 0px;
    border-radius: 15px;
}
.blog_page.article_a .subbox_item a:hover .blog_list_le img{
    transform: scale(1.1);
    transition: all .6s ease;
}
.blog_page.article_a .blog_list_ri {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    padding: 10px 0px;
    width: calc(100% - 305px);
    position: relative;
}
.blog_page.article_a .blog_list_ri h5 {
    color: #bdad98 ;
    font-weight: 400;
}
.blog_page.article_a .blog_list_ri em {
    order: 1;
    font-weight: 400;
    margin: 0;
    color: #afafaf;
    position: relative;
}
.blog_page.article_a .blog_list_ri p {
    line-height: 175%;
    margin: 16px 0;
    -webkit-line-clamp: 2;
    text-align: justify;
}
.blog_page.article_a .subbox_item a:hover .blog_list_ri em:after {letter-spacing: 1.6px;}
.blog_page.article_a .subbox_item a:before, .subbox_item a:after {content: none;}
.blog_page.article_a .accordion li .link i, .accordion li .link a {
    color: #444 !important;
    font-weight: 400;
}
.blog_page.article_a .submenu {background: #f1e9da;font-size: 14px;}
.blog_page.article_a .submenu a {
    color: #bdad98 ;
    letter-spacing: 0;
    font-weight: 400;
    padding: 14px 14px 12px 40px;
    border-left: #FFF 0 solid;
    transition: all .15s;
    background: #ffffff;
    letter-spacing: 1px;
}
.blog_page.article_a .submenu a:before {
    top: 13.5px;
    left: 16px;
    font-weight:var(--fa-style, 900);
}
.blog_page.article_a .submenu a:hover {
    background: #fff;
    color: #787878;
    border-left: #fff 8px solid;
}

.blog_page.article_a .blog_search input[type=search] {
    font-size: 13px;
    border-radius: 0;
    border: 1px solid #ccc;
}
.blog_page.article_a .blog_search input[type=submit] {
    height: 36px;
    filter: grayscale(20);
}

.blog_page.article_a .blog_in_page .blog_ri {padding-top: 36px;}
.blog_page.article_a .blog_box_edit * {line-height: 175%;}
.blog_page.article_a .blog_box_edit {
    font-size: 16px;
    color: #666;
}
.blog_page.article_a .blog_back {
    width: 100%;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    justify-content: center;
}
.blog_back a {width: 100%;transition: all .3s ease;}
.blog_back a.article_btn_next , .blog_back a.article_btn_prev, .blog_back a.article_btn_back {
    background: transparent;
    color: #4c3e31;
    border: 1px solid #d2d2d2;
    font-size: 14px;
    border-radius: 40px;
}
.blog_back a:hover {background: #bdad98 !important;color: #fff;}
.blog_back {
    grid-gap: 16px;
}

@media screen and (max-width: 1024px) {

.blog_page.article_a .module_i_news ul{grid-template-columns:1fr 1fr;}
.blog_page.article_a .blog_list_ri, .blog_list_le {width: 100%;}
.blog_page.article_a .blog_list_ri {padding: 16px 0;}
.blog_page.article_a .blog_box_edit {font-size: 15px;}
.blog_page.article_a .subbox_item a {
    display: flex;
    flex-wrap: wrap;
    
}

}

@media screen and (max-width: 980px) {
.blog_page.article_a .blog_subbox{grid-template-columns:1fr;}
}

@media screen and (max-width: 768px){
.blog_page.article_a h5.blog_le_t {display: block;}
.blog_page.article_a .blog_le,.blog_page.article_a .blog_ri {margin-bottom: 0;}
.blog_page.article_a .blog_ri {padding: 0;width: 100%;}
.blog_page.article_a .subbox_item {padding: 32px 0 12px;}
.blog_page.article_a .blog_list_ri p {
line-height: 160%;
margin: 12px 0 16px;
-webkit-line-clamp: 3;
font-size: 14px;
}
.blog_page.article_a .subbox_item:first-of-type {padding-top:18px;}
.blog_page.article_a .blog_le {padding: 22px 0 0;}
.blog_page.article_a .blog_in_page .blog_ri {padding: 16px 0 0 0;}
.blog_page.article_a .blog_list_ri h5 {
font-size: 19px;}

}

@media screen and (max-width: 600px){
.blog_page.article_a .module_i_news ul , .blog_subbox{grid-template-columns:1fr;}
.h4.blog_category_title{font-size: 20px;}
.h4.blog_category_title span{font-size: 18px;}
.blog_page.article_a .blog_list_le {
    width: auto;
}


}

    


/*聯絡我們/＝＝＝＝＝*/
.contact_content {display: block !important}
.contact_editbox {    padding: 0;}
.contact_le_map a {    background: #e7e4df;}
.contact_form li.last cite {background: #B09D8A;}
.contact_content {
    padding: 80px 10px 10px;
}


/*表格排列版面*/
.contact_content .information_left{display: none;}
.red {color: #b5a6cf;}
.contact_content .information_right {    width: 90%;    padding: 0;    margin: 0 auto 100px;    max-width: 1400px;    display: block;}
.blank_letter {     padding: 0;    font-size: 20px;    color: #3a3a3a;text-align: center;}
.blank_letter .note{display: block;color: #B09D8A;text-align: center;}
.contact_form {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(min(400px,100%), 1fr));    gap: 30px;}
.contact_form li{padding: 0;align-items: center;}
.contact_form li .form__label {    display: block;    width: 100%;    text-align: end;    margin: 0 0 5px;    padding: 0;}
.contact_form li.last {    text-align: center;    grid-column: 1/-1;}
.contact_form li.last blockquote, .contact_form li.last cite{border: 1px #B09D8A solid;    padding: 0px;}
.noborder {padding: 13px;}

@media screen and (max-width: 600px){
    .contact_form li .form__label {
        text-align: justify;
        background: transparent;
        font-weight: 400;
    }  
}

/*相簿*/
.subalbum-menu h2 {display: none;}
.show-list .show_pic:hover img {transform: translate(0%, 0%) scale(1.1);transition: all 0.6s;}
.show-list .show_pic img{transition: all 0.6s;}
.overlay{display: none;}
.show-list .item {padding: 0px;}
.pic-list {grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));}
.show-list .show_name {
    font-weight: 400;
}
.show-list .item:hover .show_name {
    color: #333;
}
.other_subalbum li a p {
    position: absolute;
    line-height: 2;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    color: #fff;
    background: #0000005c;
    padding: 0px 15px;
    border-radius: 50px;
    border: 1px solid #fff9ef;
    font-weight: 300;
    text-shadow: 0 0 2px #0000004d;
    font-size: 17px;
}


.show-list .show_pic:after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    background: #000;
    opacity: 0.2;
    transition: .5s ease-in-out;
}

.show-list .show_pic:hover:after {
    opacity: 0;
    transition: .5s ease-in-out;
}

.show-list {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

@media screen and (max-width: 768px) {
    .show-list {
        grid-template-columns: repeat(auto-fill, minmax(316px, 1fr));
    }
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


@media screen and (max-width: 1024px) {

    .nav-header {
        width: 130px;
        padding-bottom: 10px;
    }

    .stellarnav ul {
        padding: 5px 0px 5px;
    }
}    


@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 55px; }
#to_top { bottom:60px;}
.stellarnav > ul > li > a:before{display: none;}
.header_area {
    padding: 10px 10px 0px;
}
.header_area.sticky {
    padding: 10px 10px 0px;
}
.stellarnav.mobile li.open li.open {
    padding: 0px;
}
.stellarnav.mobile li.open {
    background: #f3f3f3;
    padding: 0px 10px 10px 10px;
}
.nav-header {
    padding: 10px 0;
}
.nav-brand {
    width: 160px;
}

.main_header_area::after {
    top: -26px;
    height: 161%;
}

.stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile, .stellarnav .close-menu {
    padding: 7px 10px 15px 10px;
}

.pageIndex .stellarnav.mobile .menu-toggle, .stellarnav.mobile .dd-toggle, .stellarnav.mobile .close-menu, .stellarnav.mobile .call-btn-mobile, .stellarnav.mobile .location-btn-mobile {
    display: none
}

.pageIndex .header_area.sticky .stellarnav.mobile .menu-toggle, .stellarnav.mobile .dd-toggle, .stellarnav.mobile .close-menu, .stellarnav.mobile .call-btn-mobile, .stellarnav.mobile .location-btn-mobile {
    display: block;
}
.stellarnav ul {
    padding: 0px;
}

.pageIndex .main_header_area::after {
    height: 150%;
}


.pageIndex .header_area {
    animation: none;
    position: sticky;
    background: #ffffff;
    padding: 0px;
    }
    
    
   .pageIndex .header_area.sticky .navigation {
    background: #fffffff2;
    padding: 0;
} 
    .header_area.sticky .stellarnav .menu-toggle:after {
        color: #444;
    }
    
    
    .header_area.sticky .stellarnav .menu-toggle span.bars span {
        background: #444;
    }
    
    .pageIndex .stellarnav > ul > li > a {
        color: #444;
    }
    
    .pageIndex .header_area.sticky {
        padding: 0;
    }
    
    .stellarnav > ul > li:not(:nth-last-child(2)):after{display: none;}
    .pageIndex .header_area.sticky .stellarnav > ul > li:not(:nth-last-child(2)):after{display: none;}    
    
    .stellarnav.mobile.left > ul{ animation: slideInFromLeft .8s ease-out forwards;max-width: 100%; }
    
    
    .stellarnav.mobile > ul > li > a b {
        display: grid;
        justify-content: start;
    }
    
    .stellarnav > ul > li > a > b:nth-child(2) {
        font-size: 12px;
        letter-spacing: 2px;
        font-weight: 300;
        color: #aba07d;
        opacity: 1;
    }
    
    .stellarnav.mobile > ul > li > a {
        padding: 25px 43px 25px 10px;
    }
    
    .stellarnav.mobile > ul > li > a.dd-toggle {
        padding-top: 30px;
    }
    
    .stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a{
    margin-left: 0px;
    }
    
    .stellarnav.mobile li.open li a:not(.dd-toggle):not(.icon-plus) {
        margin-left: 30px;
        font-size: 15px;
        border-left: 1pt solid #bababa;
        padding: 10px 20px;
        color: #878787;
    }
    
    .stellarnav.mobile li.open {
        background: #fff;
    }
    
    .stellarnav li a {
        color: #444;
        background: transparent;
        border-radius: 0px;
    }
    
    .stellarnav > ul > li ul li a:hover {
        background: transparent;
    }
.pageIndex .main_header_area::after{
    display: none;
}
    .pageIndex .header_area.sticky .main_header_area::after{
        display: none;
    }
    
    .stellarnav.mobile ul ul {
        padding: 2px;
        box-shadow: none;
    }
    
    .stellarnav.mobile li.open li.open {
        background: #ffffff;
        padding: 0px;
    }
    
    .stellarnav.mobile ul ul ul {
        margin-left: 30px;
    }
    .pageIndex .nav-header {
    filter: none;
    width: 300px;
    margin-top: 20px;
}
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
        top: -1px;}
    
    
    .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: #B09D8A;color: #fff;
    }
    .pageIndex .header_area.sticky .nav-header {
    margin-top: 10px;
}
    .pageIndex .stellarnav.mobile {
        top: 15px;
    }
.stellarnav.mobile {
        top: 6px;
    }
    .pageIndex .header_area {
    position: sticky;
}
    .stellarnav .icon-close:before,.stellarnav .icon-close:after{border-color: #fff;}
    .stellarnav > ul > li:before{display: none;}
    
    }
    
    @keyframes slideInFromLeft {
        0% {
          transform: translateX(-100%);
          opacity: 0;      
        }
        100% {
          transform: translateX(0);    
          opacity: 1; 
        }
      }
    






