@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n)

*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');

body {
    font-family: "Tenor Sans","Roboto", "Noto Sans TC", sans-serif;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/
body {
    overflow: overlay;
}

&::-webkit-scrollbar {
    background: #F8F7F5;
    width: 7px;
}

&::-webkit-scrollbar-button {
    display: none;
    background: #F8F7F5;
    border-radius: 10px;
}

&::-webkit-scrollbar-track-piece {
    background: #F8F7F5;
}

&::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #f35827;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}

#content_main {
    background-position: top center;
    width: 100%;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*反白顏色*/
::-moz-selection {
    background-color: #444;
    color: #F8F7F5;
}

::selection {
    background-color: #444;
    color: #F8F7F5;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*電腦LOGO*/
.nav-brand {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.nav-brand img { max-width: 100%;}
.footer_logo { max-width: 280px;padding: 25px 10px 13px 10px;transition: .5s;}


@media screen and (max-width: 1024px) {

.footer_logo {
    width: 200px;
    margin: 0;
}
.footer_logo {
    max-width: 200px;
    padding: 0px 10px 13px 10px;
}

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}

/*首頁+聯絡按鈕*/
.animated-arrow {
    background: #111111;
}

.swiper-pagination {
    display: none;
    left: 50%;
    margin-left: 0;
    transform: translate(-50%, 0);
}


/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

#content {
    background-color: #ffffff;
}

.pageIndex .bannerindex {
    position: sticky;
    background: #ffffff;
}

.pageIndex .swiper-banner {
    position: sticky;
    margin: 0;
    height: auto;

}

.pageIndex .swiper-slide {
    background-color: #ffffff;
}

.pageIndex .swiper-banner .swiper-slide img {
    width: 100%;
    position: relative;
    height: auto;
    bottom: 0px;
    opacity: 1;
    transform: none !important;
}

@keyframes banner-up {
    0% {
        bottom: -1000px;
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        bottom: 0;
        opacity: 1;

    }

}


body.pageIndex:before {
    content: ' ';
    position: fixed;
    z-index: 999999991;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    animation: fadein 3s forwards;
}

@keyframes fadein {
    50% {
        opacity: 1;
    }

    60% {
        pointer-events: auto;
    }

    100% {
        opacity: 0;
        pointer-events: none;
    }
}

body.pageIndex:after {
    content: ' ';
    position: fixed;
    z-index: 999999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(https://pic03.eapple.com.tw/thesundesign/open_logo.svg) center / cover no-repeat;
    animation: fadeease 3s forwards;
}

@keyframes fadeease {
    0% {
        opacity: 0;
    }

    45% {
        opacity: 1;
    }

    60% {
        opacity: 0;
        pointer-events: auto;
    }

    100% {
        opacity: 0;
        pointer-events: none;
    }
}


/* --------------------開場動畫------------------- */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*選單設定*/

/*選單設定*/
.nav-menu {
    margin: 0;
}

.main_header_area .container {
    max-width: 95%;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.sticky .main_header_area .container {
    max-width: 95%;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.nav-menu>li:not(.tp_links) {
    padding-right: 15px;
}

.nav-menu>li:hover>a,
.nav-menu>li.active>a,
.nav-menu>li.focus>a {
    color: #474747;
}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {
    color: #474747;
}

.nav-dropdown>li {
    text-align: center;
}

.header_area {
    position: fixed;
    width: 100%;
    padding: 0;
    background: transparent;
}

.header_area.sticky {
    position: fixed;
    background: rgb(255 255 255 / 50%);
    backdrop-filter: saturate(93%) blur(10px);
    transition: all 1.0s ease-in-out;
}

.stellarnav {
    order: 1;
    width: fit-content;
}

.stellarnav ul {
    display: flex;
    justify-content: flex-end;
}

/* 動畫 */
.stellarnav > ul > li{
    padding: 0;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav > ul > li::after {
    content: "";
    background: #e3612d;
    height: 1px;
    width: 50%;
    position: absolute;
    bottom: 0;
    right: 0px;
    left: 25%;
    transform: scale(0, 1);
    transition: 0.5s ease-in-out;
}

.pageIndex .stellarnav > ul > li{
    padding: 0px 0;
    opacity: 0;
}
.sticky .stellarnav > ul > li{
    padding: 0;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}




.pageIndex .stellarnav > ul > li:nth-of-type(1){
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 1.8s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(2){
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(3){
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.2s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(4){
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.4s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(5){
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.6s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(6){
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.7s;
}



@keyframes nav-down {
    0%{
        opacity: 0;
        transform: translate(0,-20px);
    }
    100%{
        opacity: 1;
        transform: translate(0,0);
    }
}


@media screen and (max-width: 768px) {
.pageIndex .stellarnav > ul > li:nth-of-type(1) {
    animation-delay: 0.2s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(2){
    animation-delay: 0.4s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(3){
    animation-delay: 0.6s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(4){
    animation-delay: 0.8s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(5){
    animation-delay: 1s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(6){
    animation-delay: 1.2s;
}


/* 確保動畫播完仍可見 */
.pageIndex .stellarnav > ul > li {
    animation-fill-mode: forwards;
}

/* 強制手機版展開時保持顯示 */
@media (max-width: 768px) {
    .pageIndex .stellarnav > ul > li {
        opacity: 1 !important;
        transform: translate(0, 0) !important;
    }
}

}


/* 購物籃 */

.me_tp_features {
    width: fit-content;
    display: none;
    align-items: center;
    margin: 0;
    order: 3;
}

.tp_links {
    display: flex;
}

.box_search input[type=text] {
    display: none;
}

.box_search input[type=text]:hover {
    color: #fff;
        transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.box_search input[type=text]:focus {
    color: #fff;
        transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.shop_search_btn {
    display: none;
    background: #fff;
    color: #fff;
    font-size: 13px;
    border: none;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 4px 15px;
    cursor: pointer;
}

.box_search {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 60%;
    margin-bottom: 0;
    margin-right: 30px;
}

.me_tp_features a {
    margin: 0 0;
}

.me_tp_features a.tp_btn_cart {
    margin-right: 20px;
}

.me_tp_features a.tp_btn_cart span {
    display: none;
}

.me_tp_features a.tp_btn_notice span {
    display: none;
}

.me_tp_features a i {
    margin: 0 3px;
    color: #7f7f7f;
}


/*  */
.header_area {
    background-color: #f8f7f500;
    transition: all 0.1s;

    height: fit-content;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.pageIndex .header_area::before {
    content: "";
    display: block;
    width: 0px;
    height: 0.5px;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
    transition: all 0.1s;
    background: hsl(0deg 0% 100% / 30%);
    animation: nav-line 2.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 1.5s;
}

@keyframes nav-line {
    0%{
        width: 0;
    }
    100%{
        width: 100%;
    }
    
}

.header_area::before {
    content: "";
    display: block;
    width: 100%;
    max-width: 100%;
    height: 0.5px;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
    transition: all 0.1s;
    border-bottom: 1px solid rgb(133 127 121 / 10%);
}

.pageIndex .header_area::before {
    opacity: 1;
}


.header_area.sticky::before {
    opacity: 1;
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.pageIndex .swiper-wrapper::after {}


.header_area .main_header_area {
    background: transparent;
    opacity: 1;
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.header_area.sticky .main_header_area {
    opacity: 1;
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.header_area .navigation {
    padding: 20px 0;
    display: flex;
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.header_area.sticky .stellarnav>ul>li>a {
    color: #000;
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}










@media screen and (max-width: 1024px) {
    .header_area .navigation {
        padding: 0;
        transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
        flex-direction: row-reverse;
    }

    .header_area.sticky .navigation {
        padding: 10px 0;
        transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    }

    .header_area .stellarnav ul {
        text-align: center;
        padding: 10px 0;
        transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    }

    .header_area.sticky .stellarnav ul {
        text-align: center;
        padding: 10px 0;
        transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    }
}

@media screen and (max-width: 768px) {
    .main_header_area .container {
        max-width: 95%;
    }

    .header_area.sticky {
        backdrop-filter: none;
    }

    .header_area.sticky .navigation {
        padding: 8px 0;
    }

    .stellarnav.mobile {
        top: 19px;
    }

    .stellarnav .menu-toggle:after {
        content: 'MENU';
        font-size: 12px;
        color: #7f7f7f;
        display: block;
        transform: scale(0.9);
        transition: all 0.3s;
        display: none;
    }

    .sticky .stellarnav .menu-toggle:after {
        color: #7f7f7f;
        transition: all 0.3s;
    }

    .stellarnav>ul {
        text-align: center;
        padding: 0px 0;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: transparent;
        color: #fff;
        padding: 20px 10px;
        text-align: left;
        font-size: 0;
    }

    .stellarnav .icon-close {
        box-sizing: border-box;
        width: 18px;
        height: 18px;
    }

    .stellarnav .icon-close:before {
        width: 100%;
        border-bottom: solid 2px #494949;
    }

    .stellarnav .icon-close:after {
        width: 100%;
        border-bottom: solid 2px #494949;
    }

    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        max-width: 100%;
        border-right: 0px #eee solid;
        background-color: #F8F7F5;
    }

    .stellarnav.mobile>ul>li>a {
        padding: 25px 10px;
        border: 0;
    }

    .stellarnav.mobile>ul>li>a b:nth-child(2) {
        font-size: 12px;
        vertical-align: bottom;
        letter-spacing: 2px;
    }

    .stellarnav.mobile li.open {
        background: transparent;
    }

    .stellarnav.mobile ul ul {
        background-color: transparent;
    }

    .stellarnav.mobile>ul>li {
        width: 100%;
        margin: 0;
        border: 0;
    }

    .stellarnav.mobile li a {
        border-bottom: 0;
        background-color: transparent;
    }

    .stellarnav>ul>li>ul>li>a {
        background-color: #fff;
        border: 0;
        padding: 15px 15px;
        padding-left: 25px;
    }

    .stellarnav>ul>li>ul>li {
        border: 0;
        background-color: #fff;
    }

    .stellarnav.mobile ul ul li {
        background-color: transparent;
    }

    .stellarnav.mobile li.open li.open {
        background: #171717e0;
        padding: 3px;
    }

    .stellarnav.mobile li li.has-sub a {
        padding: 10px 43px 10px 10px;
        border: 0;
    }

    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 3px #474747;
    }

    .stellarnav a.dd-toggle .icon-plus:before {
        border-bottom: solid 3px #474747;
    }

    .header_area .stellarnav>ul>li>a {
        color: #666666;
        transition: all 0.3s;
        margin: 0;
        text-align: center;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        display: none;
    }

    .header_area.sticky .stellarnav ul {
        text-align: center;
        padding: 0;
        transition: all 0.3s;
    }

    .stellarnav.mobile>ul {
        border-top: 0;
    }

    .stellarnav .dd-toggle {
        top: 17px;
    }

    .stellarnav a.dd-toggle .icon-plus:before {
        width: 15px;
    }

    .stellarnav a.dd-toggle .icon-plus::after {
        width: 15px;
    }

    .stellarnav.mobile>ul>li:nth-child(4) ul li:nth-child(1) {
        display: none;
    }

    .header_area .stellarnav ul {
        text-align: center;
        padding: 0;
        transition: all 0.3s;
    }

}

/*  */

.stellarnav>ul>li>a {
    padding: 0;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 40px;
    height: 40px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    color: #000;
    opacity: 1;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.5s;
}

.pageIndex .header_area.sticky .stellarnav>ul>li>a:hover {
    color: #494949;
    transition: all 0.5s;
}

.stellarnav>ul>li>a:hover {
    color: #000;
    transition: all 0.5s;
}

.stellarnav>ul>li>a b {
    font-weight: 400;
}

/*  */



.stellarnav li.has-sub>a:after {
    display: none;
}

/*下拉*/
.nav-dropdown>li>a {
    background: #f7f5f5;
    transition: 0.2s;
    letter-spacing: 1.5px;
    width: 100%;
}

.nav-dropdown>li>a:hover {
    transition: 0.2s;
    background-color: #474747;
    color: #fff
}

.nav-dropdown>li:hover>a .submenu-indicator-chevron,
.nav-dropdown>.focus>a .submenu-indicator-chevron {
    border-color: transparent #fff #fff transparent;
}

.stellarnav li li a {
    padding: 10px 0px;
    border-left: 0;
    color: #000;
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.stellarnav li li a:hover {
    color: #f35827;
        transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.stellarnav ul ul {
    background: transparent;
}

.stellarnav>ul>li.has-sub>a {
    padding-right: 0px;
}

.stellarnav li li {
    border: 0;
    border-bottom-width: 0;
    background: rgb(255 255 255 / 50%);
    backdrop-filter: blur(5px);
    text-align: left;
    opacity: 1;
    pointer-events: all;
    transform: scale(1, 1);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    top: 20px;
    padding: 0rem 1rem;
    border: 1px solid rgb(133 127 121 / 10%);
}



.stellarnav>ul>li {
    width: fit-content;
    text-align: left;
    margin: 0 30px;
}





@media screen and (max-width: 1440px) {
    .header_area .navigation {}

    .nav-brand {
        display: inline-block;
    }

    .main_header_area .container {}

    .stellarnav>ul>li {}

    .stellarnav>ul>li:nth-of-type(3) {}

    .stellarnav>ul>li>a {
        margin: 0 5px;
    }
}


@media screen and (max-width: 1024px) {
    .header_area .navigation {
        padding: 0;
        justify-content: space-between;
    }

    .stellarnav>ul>li {
        margin: 0 10px;
    }
}



@media screen and (max-width: 768px) {

    .stellarnav.mobile {
        position: absolute;
        left: 0;
        top: 10px;
        width: auto;
        display: inline-block;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #fff;
            transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    }

    .stellarnav .menu-toggle:after {
        content: 'MENU';
        font-size: 12px;
        color: #fff;
        display: block;
        transform: scale(0.9);
            transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    }

    .sticky .stellarnav .menu-toggle span.bars span {
        background: #494949;
            transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    }

    .sticky .stellarnav .menu-toggle:after {
        color: #494949;
            transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    }

    .stellarnav>ul {
        text-align: center;
        padding: 0px 0;
    }



    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        border-right: 0px #eee solid;
        background-color: #fff;
    }

    .stellarnav.mobile>ul>li>a {
        padding: 25px 10px;
        border: 0;
    }

    .stellarnav.mobile>ul>li>a b:nth-child(2) {
        font-size: 12px;
        vertical-align: bottom;
        letter-spacing: 2px;
    }

    .stellarnav.mobile li.open {
        background: #fff;
    }

    .stellarnav.mobile ul ul {
        background-color: #fff;
    }

    .stellarnav.mobile li a {
        border-bottom: 0;
        background-color: transparent;
    }

    .stellarnav>ul>li>ul>li>a {
        background-color: #fff;
        border: 0;
        padding: 15px 15px;
        padding-left: 25px;
    }

    .stellarnav>ul>li>ul>li {
        border: 0;
        background-color: #fff;
    }

    .stellarnav.mobile ul ul li {
        background-color: #fff;
    }

    .stellarnav.mobile li.open li.open {
        background: #171717e0;
        padding: 3px;
    }

    .stellarnav.mobile li li.has-sub a {
        padding: 10px 43px 10px 10px;
        border: 0;
    }

    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 3px #474747;
    }

    .stellarnav a.dd-toggle .icon-plus:before {
        border-bottom: solid 3px #474747;
    }

    .header_area .stellarnav>ul>li>a {
        color: #666666;
            transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    }

    .header_area.sticky .stellarnav ul {
        text-align: center;
        padding: 0;
            transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    }

    .stellarnav.mobile>ul {
        border-top: 0;
    }

    .stellarnav .dd-toggle {
        top: 17px;
    }

    .stellarnav a.dd-toggle .icon-plus:before {
        width: 15px;
    }

    .stellarnav a.dd-toggle .icon-plus::after {
        width: 15px;
    }

    .stellarnav.mobile>ul>li:nth-child(4) ul li:nth-child(1) {
        display: none;
    }

    .header_area.sticky .stellarnav>ul>li>a {
        color: #494949;
            transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    }

    .header_area .stellarnav ul {
        text-align: center;
        padding: 0;
            transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO設定*/

.nav-brand img {
    position: relative;
    top: 0px;
    max-width: 100%;
}


.nav-header {
    max-width: 250px;
    position: absolute;
    z-index: 123;
    order: 2;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
}

.nav-header img {
    width: 100%;
    opacity: 1;
    transition: all 0.5s;
}

.sticky .nav-header img {
    opacity: 1;
    transition: all 1s;
    transition-delay: 1.3s;
}


.pageIndex .nav-brand {width: 100%; display: block; transition:all 0.3s; opacity: 0; animation: headerslowly 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards; animation-delay: 2.0s;}


@keyframes headerslowly {
0% {
  opacity: 0;
  left: -100px;
}
100% {
  opacity: 1;
  left: 0;
}
}


.header_area .nav-brand {
    display: block;
    position: relative;
    padding: 0;
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    padding-top: 0px;
}

.header_area.sticky .nav-brand {
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.pageIndex .header_area .nav-brand img {
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}




.header_area.sticky .nav-brand img {
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    filter: none;
}




@media screen and (max-width: 1024px) {
    .nav-brand {
        width: 100px;
    }
    .header_area .nav-header {
        position: relative;
        text-align: center;
        max-width: 200px;
        left: 0%;
        transform: none;
    }

    .header_area .nav-brand {
        padding: 0;
        width: 100%;
    }

    .header_area.sticky .nav-header {}

    .nav-brand img {
        position: relative;
        max-width: 100%;
        z-index: 100000;
            transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    }

    .header_area.sticky a.nav-brand::before {
        width: 20%;
        left: 50%;
        transform: translateX(-50%);
            transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    }

    .stellarnav>ul>li>a {
        margin: 0 15px;
    }

}

@media screen and (max-width: 900px) {
.stellarnav>ul>li>a {
    margin: 0 0px;
}

.stellarnav>ul>li>a {
    margin: 0 0px;
}
}

@media screen and (max-width: 768px) {
    .nav-brand-m {
        display: block;
        text-align: left;
        padding: 15px 10px;
    }

    .nav-brand-m img {
        max-width: 200px;
        width: 100%;
    }

    .header_area .main_header_area {
        backdrop-filter: none;
    }

    .header_area .nav-brand {
        display: inline-block;
        width: 150px;
        transition: all 0.5s;
    }

    .header_area .navigation {
        display: flex;
        justify-content: center;
        padding: 8px 0px;
    }

    .header_area.sticky .nav-brand {
        display: inline-block;
        width: 150px;
        transition: all 0.5s;
    }

    .header_area.sticky a.nav-brand::before {
        width: 160%;
    }

    .header_area a.nav-brand::before {
        display: none;
    }

    .header_area.sticky a.nav-brand::before {
        display: none;
    }

    .header_area .nav-header {
        position: relative;
        text-align: center;
        display: block;
    }

    .nav-header {
        z-index: 0;
        top: -13px;
    }

    .header_area.sticky .nav-header {
        display: block;
        top: 0;
    }

    .header_area .nav-header {
        position: relative;
        text-align: center;
        display: block;
        top: 0;
    }

    .header_area.sticky .main_header_area {
        backdrop-filter: none;
    }

    .me_tp_features {
        display: none;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer資訊欄位*/
.footer { padding-top: 35px;    background: #f1f1f1;}

.footer .center {
    max-width: 90%;
}

.footer_info {
    display: flex;
    padding: 0px;
    align-items: flex-start;
    flex-direction: row-reverse;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer_info ul {
    display: flex;
    letter-spacing: 0;
    padding: 0 0 36px;
    flex-direction: column-reverse;
    width: auto;
}

.footer_info li:nth-child(1) {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.footer_info li:nth-child(2) {
    padding-top: 0;
}

.footer_info li p,
.footer_info li p a {
    color: #666;
    font-size: 13px;
    line-height: 230%;
}

.footer_info li p a:hover, .footer_menu a:hover {
    color: #000;
    background: none;
}

.footer_menu a:first-child {
    display: none;
}

.footer_menu a:nth-child(2) {
    padding: 0 20px;
    padding-left: 0;
}

.footer_menu a {
    margin: 0;
    text-align: left;
    padding: 5px 0;
    transition: all 0.3s;
    color: #000;
    border: none;
    background: transparent;
    font-size: 13px;
    padding-right: 20px;
    text-transform: uppercase;
}

.footer_menu a:hover {
    background: transparent;
    opacity: .5;
    color: #e3612d;
}

/*改名*/
.footer_info li p.tel:before {
    content: 'TEL：';
}
.footer_info li p.mail:before {
    content: 'Mail：';
}
.footer_info li p.add:before {
    content: 'ADD：';
}

/*改順序*/
.footer_info li p.tel {
    order: 1;
}

.footer_info li p.line {
    order: 2;
}

.footer_info li p.mail {
    order: 3;
}

.footer_info li p.add {
    order: 4;
}

/*隱藏*/
.footer_info li p.phone {
    display: none;
}


.copy {
    color: #666;
    border: none;
    text-align: right;
    padding: 0px 0 25px;
    max-width: 90%;
    margin: auto;
    font-size: 12px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.copy a {
    color: #666;
    transition: all 0.3s;
}

.copy a:hover {
    color: #000;
}

.box_link {
    display: flex;
    left: 0%;
    top: 100%;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    display: none;
}

.box_link a {
    transition: all 0.3s;
    border: none;
    color: #666;
    margin: 0 2px;
    width: auto;
    text-align: right;
    font-size: 20px;
    font-size: 16px;
}

.box_link a:hover {
    background: transparent;
    opacity: .8;
}

.box_link a:first-child {
    padding-left: 10px;
}

/*Logo/＝＝＝＝＝*/

.footer_logo {
    width: 280px;
    margin: 0;
}

.footer_logo img {
    max-width: 280px;
    width: 100%;
    display: inline-block;
    background-size: contain;
    background-position: top right;
    margin-top: 10px;
}


/*按鈕/＝＝＝＝＝*/
.animated-arrow {
    background: #ffffff;
}

.contact_form li.last cite,
.contact_form li.last blockquote {
    background: #252727;
    position: relative;
    font-weight: bold;
    text-align: center;
    background: #ffffff;
    /* box-shadow: 3px 3px 5px #dbdbdbb5, -5px -5px 3px #f4f4f44f; */
    border-radius: 30px;
    padding: 9px 32px;
    text-decoration: none;
    transition: .3s;
    width: 180px;
    color: #333;
    border: none;
    margin: 0 5px;
}

.contact_form li:nth-child(n+2){
    padding-top: 20px;
}

/* .contact_form li.last cite:hover {
    background: #252727;
    color: #fff;
} */


@media screen and (max-width: 1024px) {
.footer .center {
    max-width: 85%;
}
}

@media screen and (max-width: 768px) {
.footer_logo {
    padding: 0px 10px 13px 0px;
}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 浮動 */

.info_fix {
    width: auto;
    box-sizing: border-box;
    position: fixed;
    bottom: 70px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: flex-end;
    justify-content: flex-end;
    transition: all 0.7s;
    animation: footer-text forwards 1s;
    opacity: 0;
    z-index: 1;
    animation-delay: 3.3s;
}
.info_fix:hover{
    width: auto;
    right: 10px;
    transition: all 0.7s;
}
.info_fix_links {
    display: flex !important;
    background: hsl(0deg 0% 81.04% / 50%);
     backdrop-filter: saturate(93%) blur(10px);
    width: 50px;
    padding-bottom: 0;
    border: 1px #e3612d solid;
    /* border-radius: 0px 0 0 10px; */
    overflow: hidden;
    justify-content: flex-end;
    flex-direction: column;
}
.info_fix_links a:hover {
    background: #e3612d;
}
.info_fix>span{
    display: none;
}
.info_fix_links a {
    background: transparent;
}
.info_fix_links a {
    display: block;
    width: 100%;
    height: 50px;
    overflow: visible;
    border-radius: 0;
    transition: .3s;
    background: transparent;
    margin-bottom: 0;
}
.info_fix_links a span {
    width: 20px;
    height: 100%;
    display: block;
    margin: 0 auto;
}
.info_fix_links a span::before {
    background-size: contain;
}



.info_fix_links p {
    text-align: center;
    font-weight: 900;
    writing-mode: vertical-rl;
}

.info_fix_links a i{
    color: #fff;
}



#to_top {
    color: #494949;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-top: 0;
    transition: all 0.7s;
}

#to_top:hover i{
    transform: translate(0,-5px);
    transition: all 0.7s;
}

#to_top i:before, #to_top i:after {
    background: #494949;
}


.info_fix_default.info_fix_map span::before {
    background-image: url(https://pic03.eapple.com.tw/thesundesign/footer-text-09.png);
    background-size: cover;
}

.info_fix_links a.info_fix_default.info_fix_phone,.info_fix_links a.info_fix_default.info_fix_mail{
    display: none;
}



@keyframes footer-text {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
    
}


@media screen and (max-width: 1440px) {
    .footer_info ul {
    }
    .footer_info li p {
        width: auto;
        min-width: 50%;
    }
}

@media screen and (max-width: 1024px) {
    .footer_menu {
        flex-wrap: wrap;
    }
}





@media screen and (max-width: 768px) {
    .footer_info {
    display: flex;
    padding: 0px;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-start;
    grid-gap: 0px;
}
    .footer_info ul {
        width: 100%;
        text-align: left;
    }
    
}

@media screen and (max-width: 500px) {
    .footer_info ul {
        flex-direction: column;
    }
    .footer_info li:nth-child(1),.footer_info li:nth-child(2){
        width: 100%;
    }
    .footer_menu {
        justify-content: center;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設解除背景輪播*/
#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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*all*/
.main_part { max-width: 1600px;  margin: auto; padding: 50px 20px 100px;}
.path p, .path p a { margin-bottom: 45px;}
.services_page .path {display: none;} 

/*內頁BANNER 設定*/
.banner { height: 550px;  background-position: center;  background-repeat: no-repeat;
        background-size: cover;  position: relative;  justify-content: flex-start;   padding: 40px 200px;}

.banner h5 {font-size: 40px; color: #ffffff;  position: relative;  letter-spacing: 3px;  font-weight: 500;
        animation: slide-top 1.8s 0.5s both; text-align: left;  width: 100%;  top: 45px;}

.banner h5:before {  display: block;font-size: 20px;  font-weight: 300;   top: -30px;  position: absolute;  left: 0;}
.banner h5:after {
        position: absolute; white-space: pre; font-size: 16px; left: 0;
        bottom: -115px; line-height: 160%; animation: slide-top 2.5s 0.5s both;}

/*相簿*/
.banner.banE { background-image: url(https://pic03.eapple.com.tw/thesundesign/banner_03.jpg);}
.banner.banE h5:before {content: "作品總覽";}

/*文章*/
.banner.banblog { background-image: url(https://pic03.eapple.com.tw/thesundesign/banner_02.jpg);}
.banner.banblog h5:before {content: "最新消息";}

/*聯絡我們*/
.banner.banC { background-image: url(https://pic03.eapple.com.tw/thesundesign/banner_04.jpg);}
.banner.banC h5:before {content: "預約諮詢";}

/*服務項目*/
.banB { background-image: url(https://pic03.eapple.com.tw/thesundesign/banner_01.jpg);}
.banB h5:before {content: "服務內容";}

/*動畫*/
@keyframes slide-top {
    0% { -webkit-transform: translateY(100%);transform: translateY(100%); opacity:0; }
    100% {-webkit-transform: translateY(0); transform: translateY(0); opacity:1;}
}

@keyframes slide-left {
    0% { -webkit-transform: translateX(0%);transform: translateY(0%); opacity:0; }
    100% {-webkit-transform: translateX(100%); transform: translateX(100%); opacity:1;}
}


@media (max-width:1024px) {
.banner {
        padding: 40px 80px;
        height: 300px;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.blog_page .edit, .blog_in_page .show_content {
    max-width: 1440px;
    width: 100%;
    padding: 20px 0 50px;
    margin: auto;
    display: flex;
    flex-direction: column;
}


/*按鈕*/
.blog_back { justify-content: center; justify-items: center; width: 100%; border-top: 1px solid #bebebe; padding-top: 30px;}
.blog_back a.article_btn_prev,.blog_back a.article_btn_back ,.blog_back a.article_btn_next{ background: transparent; width: 120px; border-radius: 99em; display: flex; align-items: center; justify-content: center; }
.blog_back a.article_btn_prev , .blog_back a.article_btn_next { border: unset; color: #2f2f2f;}
.blog_back a.article_btn_back{ color:#2f2f2f;}
.blog_back a.article_btn_back:hover  , .blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {  color: #f35827;}

.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #f35827 !important;}
.share_page .edit {    text-align: justify;    line-height: 180%;}
.subbox_item a:before {color: #f35827;}
.subbox_item a:before , .subbox_item a:after {    transition: 0.3s;}
.blog_le .accordion > li {
    transition: all 0.3s;
}
.blog_box_edit {    line-height: 180%;    text-align: justify;}
h4.blog_category_title {    text-align: justify;}
.link a {    width: 100%;    display: block;    padding: 15px 10px;}
.accordion li .link {    
    padding: 0;
    border: none;
}



/*文章分享變1排3個*/
.blog_page .main_part {
    max-width: 1440px;
}
.blog_subbox {    display: flex;    flex-wrap: wrap;    justify-content: flex-start;}
.subbox_item {    width: 100%;    padding: 5px;}
@media screen and (max-width: 1024px) {.subbox_item {    width: 50%;}}
@media screen and (max-width: 600px) {.subbox_item {    width: 100%;}}
/**/


/* 左邊欄位 */
h5.blog_le_t {
    display: none;
}
.blog_le {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    align-items: center;
}
.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    border-radius: 0;
    border-bottom: 1px #565656 solid;
    padding: 10px 35px 10px 10px;
    background: transparent;
}
.blog_search input[type=submit] {
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
    width: 38px;
    height: 38px;
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    transform: scaleX(-1);
}
.blog_search input[type="submit"]:hover {
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    color: #fff;
    transition: all 0.3s;
}

.blog_le .accordion {
    width: 20%;
    border: none;
    margin: 0;
    border-radius: 0;
}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a {
    background: #f35827;
    color: #fff !important;
    transition: all 0.3s;
}
.submenu {
    display: none;
    background: transparent;
    font-size: 14px;
}
.submenu a {
    display: block;
    position: relative;
    background: transparent;
    color: #565656;
    padding: 12px 12px 12px 25px;
    letter-spacing: 2px;
    transition: all 0.6s ease;
    word-break: break-all;
    line-height: 1.25;
    
}
.submenu a:hover {
    background: #0000000d;
    color: #565656;
}
.submenu a:before{
    display: none;
}
.blog_le .accordion li i {
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 16px;
    color: #444;
    transform: translate(0, -50%);
    transition: all 0.4s ease;
}
.blog_le .accordion li.open i.fa-chevron-down {
    transform: translate(0, -50%) rotate(180deg);
}

.blog_le .accordion li i:hover {
    color: #fff !important;
    transition: all 0.4s ease;
}


.blog_le .accordion > li:hover.open{
    background-color: transparent !important;
}



/* 右邊欄位 */

.subbox_item {
    position: relative;
    border-bottom: 1px #f3582738 solid;
    padding: 80px 0;
}

.subbox_item::before{
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #f35827;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.subbox_item:hover:before{
    width: 100%;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}





.subbox_item a:after {
    display: none;
}

.subbox_item a {
    display: inline-block;
    position: relative;
    display: flex;
    flex-direction: row;
}

.blog_list_le {
    width: 100%;
    height: 0;
    padding-bottom: 27%;
    overflow: hidden;
    position: relative;
}
.blog_list_le::after{
    content: "";
    display: none;
    width: 100%;
    height: 100%;
    background-color: #00000050;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: all 0.5s;
}
.blog_ri {
    width: 100%;
}
.subbox_item a:hover .blog_list_le::after{
    opacity: 1;
    transition: all 0.5s;
}
.blog_list_le img {
    display: block;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.blog_list_ri {
    display: flex;
    vertical-align: top;
    padding: 25px 20px 25px 50px;
    width: 70%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.blog_subbox .subbox_item:nth-of-type(1) .blog_list_ri {
    width: 50%;
}





.blog_list_ri h5 {
    color: #494949;
    font-size: 24px;
    font-weight: 500;
    display: inline-block;
    width: fit-content;
}
.blog_list_ri p {
    width: 100%;
    -webkit-line-clamp: none;
    word-break: break-all;
}
.subbox_item a img {
    filter: grayscale(0.7);
    transition: all 1s cubic-bezier(0.68, 0.55, 0.38, 0.99);
}
.subbox_item a:hover img{
    filter: grayscale(0);
    transition: all 1s cubic-bezier(0.68, 0.55, 0.38, 0.99);
}

h4.blog_category_title {
    text-align: justify;
    display: none;
    color: #494949;
}
.blog_box_edit  {
    line-height: 150%;
    color: #3f3f3f;
}

.blog_in_page .main_part{
    max-width: 100%;
}

.blog_list_ri em {
    position: relative;
    right: 0;
}


/*相關文章*/
.news_related { background: #fff; padding: 80px 15px;}
.news_related_list { max-width: 1550px; grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));}
.news_related h6 span:before { content: '相關文章';  font-size: 24px; color: #000; font-weight: 500; letter-spacing: 2px;}
.news_related h6 { margin: 0 auto 50px;}

.news_related_list li:nth-child(n+4) { display: none;}
.news_related_list li a { padding: 0px; background: transparent;}
.news_related_list li figure {  aspect-ratio: 16 / 9;}
.news_related_list li a p { padding-top: 15px;}

.lastPage { color: #f35827;  border: 1px solid; background: transparent; transition: 0.5s; margin: 100px auto 0;}
.lastPage:hover { background: #f35827; color: #fff;}




@media screen and (max-width: 1024px) {
    .blog_page .main_part {
        max-width: 90%;
    }
    .subbox_item {
        width: 100%;
    }
}


@media screen and (max-width: 768px) {
    .subbox_item a {
        flex-direction: column;
    }
    .blog_page .main_part {
        max-width: 75%;
    }
    .blog_list_ri {
        display: flex;
        vertical-align: top;
        padding: 20px;
        width: 100%;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
    }
    .subbox_item a:before{
        display: none;
    }
    .blog_list_le {
        padding-bottom: 70%;
    }
    .blog_page .show_content {
        max-width: 100%;
    }
    .subbox_item {
        border-bottom: 0;
    }
    .blog_page .main_part {
        max-width: 100%;
    }
    .blog_list_ri{
        width: 100%;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*首頁相簿*/
.module_i_album {
    padding: 100px 20px 30px;
}

.module_i_album section {
    max-width: 1570px;
}

.module_i_album .title_i_box{
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    text-align: left;
}
/* 標題 */
.module_i_album .title_i_box h6 {
    order: 2;
    display: none;
}

.module_i_album .title_i_box h4 {
    color: #000;
    padding-bottom: 25px;
    position: relative;
    order: 1;
}

.module_i_album .title_i_box h4:after {
    content: "";
    width: 27px;
    height: 3px;
    background-color: #f35827;
    position: absolute;
    bottom: 0;
    left: 0;
}


@media screen and (max-width: 1024px) {
.module_i_album .title_i_box h4 {
font-size: 22px;
}
}


@media screen and (max-width: 480px) {
.module_i_album .title_i_box h4 {
font-size: 20px;
}

}


/* 相簿名稱 */

.i_album_list {display: grid;grid-template-columns: repeat(4, 1fr);grid-gap: 15px;}

.i_album_list li a {display: flex;align-items: center;justify-content: center;}

.i_album_list li div {width: 100%;aspect-ratio: 5 / 3;}

.i_album_list li a p{font-size: 17px;color: #f5f5f5;font-weight: normal;margin-top: 0;background: rgb(0 0 0 / 50%);

    -webkit-line-clamp: 1;height: 100%;opacity: 0;transition: all 1s 100ms cubic-bezier(.42,0,.58,1);}

.i_album_list li:hover a p {opacity: 1;color: #f5f5f5;transition: all 1s 100ms cubic-bezier(.42,0,.58,1);}

.i_album_list li a p span{ letter-spacing: 0.4em;}


/* 按鈕 */
.i_album_b{
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
}
.i_album_b .animated-arrow{
    background: transparent;
    color: #000;
    width: fit-content;
    margin-top: 0px;
    text-align: right;
}

.i_album_b .animated-arrow:hover{
    color: #f35827;
}

.i_album_b::before{
    content: "";
    width: calc(100% - 150px);
    height: 1px;
    background: #afafaf;
    position: relative;
}

.animated-arrow b{
    font-weight: 400;
    letter-spacing: 0.4em;
}

.i_album_b a i.fa-solid.fa-arrow-right,
.i_album_b .fa-arrow-right::before{
    display: none;
}


@media screen and (max-width: 1024px) {
    .module_i_album {
    padding: 80px 100px 30px;
    }
    .i_album_list {
    grid-template-columns: repeat(2, 1fr);
    }
    .module_i_album .title_i_box{
    margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .module_i_album {
        padding: 80px 60px 30px;
    }
    .module_i_album .title_i_box h6 {
        font-size: 16px;
        letter-spacing: 0.4rem;
    }
}

@media screen and (max-width: 600px) {
    .module_i_album {
        padding: 80px 30px 30px;
    }
    .i_album_list {
        grid-template-columns: repeat(1, 1fr);
    }

}


/*相簿*/
ul.page { width: 100%;}

/*列表*/
.album_page .show-list { grid-template-columns: 1fr 1fr; grid-gap: 30px;}
.show-list .show_pic { aspect-ratio: 16 / 10;}
.show-list .show_name { margin-top: 0px;}
.show-list .show_name { line-height: 2; font-weight: 400; color: #ffffff; height: 1em; letter-spacing: 2px; font-size: 19px; position: absolute; width: 100%; transition: 0.5s;
 display: flex; align-items: center; justify-content: center; align-content: center; z-index: 2; bottom: 0px; opacity: 0; letter-spacing: 0.4em;}
.show-list .item:hover .show_name { color: #fff; opacity: 1; transition: all 1s; bottom: 55%; transform: translateY(50px);}
ul.i_album_list li:hover { flex: 3 0 25vw; transition: flex .4s, -webkit-box-flex .4s, -ms-flex .4s;}
.pic-list .show_pic {aspect-ratio:auto;}
.pic-list .show_pic:hover img { transform: scale(1.12);}
.pic-list .show_pic img { transition: 0.5s;}
.overlay { /*display: none;*/z-index: 2;}
.show-list .show_pic img, .other_subalbum li a img{ display: block; max-width: 100%; min-width: 100%; height: 100%; object-fit: cover; -moz-object-fit: cover;
-ms-object-fit: cover; -o-object-fit: cover; -webkit-object-fit: cover; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);transition: all 5000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);}
.show-list .show_pic:hover img {transform: translate(-50%, -50%) scale(1.2); filter: brightness(0.8);}

/*次分類*/
.subalbum-menu h2 { display: none;}
.album_class_page .show-list {  grid-template-columns: 1fr 1fr 1fr;  grid-gap: 30px 20px;}
.album_class_page .other_album , .album_info_page .other_album { display: none;}
.other_subalbum li:hover a p { color: #fff; opacity: 1; transition: all 1s; bottom: 60%; transform: translateY(50px);}
.other_subalbum li a p { line-height: 2; font-weight: 400; color: #ffffff; height: 1em; letter-spacing: 2px; font-size: 16px; position: absolute; width: 100%; transition: 0.5s;
 display: flex; align-items: center; justify-content: center; align-content: center; z-index: 2; bottom: 0px; opacity: 0; letter-spacing: 0.4em;}

/*內頁*/
.album_info_page .main_part { max-width: 1700px;}
.album_info_page .show_content { padding: 20px 10px; display: flex;  flex-wrap: wrap; justify-content: space-between;}
.album_info_page .pic-list {  grid-template-columns: 1fr; grid-gap: 10px; width: 60%;}

/*文字*/
.album_info_page .album_descrip {  margin-bottom: 0px;  color: #777;  line-height: 2; width: 36%; font-size: 15px;  position: sticky;  top: 150px; height: 630px;}


@media (max-width:768px) {
.overlay{
        opacity: 1;
        transform: scale(1);
    }

.album_info_page .pic-list{
        width: 100%;
    }

.album_info_page .album_descrip{
        width: 100%;
        position: static;
        height: auto;
    }

.album_page .show-list {
        grid-template-columns: 1fr;
    }

.album_page  .main_part {
        padding: 50px 20px 0px;
    }

.show-list .show_name{
    opacity: 1;
    bottom: 65%;
    transform: translateY(50px);
}

.album_class_page .show-list {
    grid-template-columns: 1fr 1fr;
}

.album_class_page .main_part {
    padding: 50px 20px 0px;
}

.other_subalbum li a p {
    opacity: 1;
    bottom: 65%;
    transform: translateY(50px);
}

}

@media (max-width:600px) {
.album_class_page .show-list {
    grid-template-columns: 1fr;
} 

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*促銷方案*/

.promotions_page .page{
    margin: 0px auto;
}

.promotions_page .main_part{
    display: flex;
    flex-direction: column;
    max-width: 72%;
    padding: 0 0 5% 0;
}

.promotions_page .other_promotion li{
    width: 100%;
    position: relative;
}

.promotions_page .other_promotion li:after {
    content: '';
    width: 0%;
    left: 0px;
    background: #857F79;
    position: absolute;
    height: 1px;
    transition: 0.5s;
}

.promotions_page .other_promotion li:hover:after {
    width: 100%;
}

.other_promotion li a:hover {
    background: transparent;
}


.other_promotion li a {
    border: none;
    width: 100%;
    margin: 0;
    padding: 1%;
    border-bottom: 1px #eee solid;
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}


.other_promotion li{
    width: 100%;
    margin-left: 0;
    
}

.other_promotion li a:before{
    border: none;
}

.other_promotion li a:after{
    border: none;
}

.promotions_page .pmtTitle span{
    display: none;
}

.other_promotion .pmtTime {
    right: unset;
    left: 2%;
}

.other_promotion {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.promotions_page .pmtTitle{
    width: 100%;
}




.promotions_page .other_promotion {
    order: 1;
    width: 100%;
    margin: 0px;
}

.promotions_page .show_content {
    order: 3;
    padding-top: 60px;
    margin: 0px
}

.promotion_title {
    display: flex;
    flex-direction: column;
    margin: 4% 0 0 0;
}

.promotion_title em {
display: none;
}

.promotion_title span {
    border: none;
    padding: 0;
    margin: 0 2px 8px 12px;
    color: #857F79;
    font-size: 20px;
    font-weight: 300;
}

.promotion_title{
    margin: 5% 0 0 0;
}

.promotions_page .edit {
    font-family: 'Noto Sans TC';
    color: #3F3F3F;
    font-weight: 400;
    letter-spacing: 1px;
}

.promotion_title h2 {
    font-size: 24px;
    color: #857F79;
    letter-spacing: 2px;
    background: #aba07d29;
    padding: 10px;
    margin-bottom: 15px;
    font-weight: 400;
}

.other_promotion .pmtTitle h3 {
    color: #3F3F3F;
    letter-spacing: 2px;
    font-size: 16px;
    overflow: unset;
    height: auto;
    margin: 8px 0px;
    transition: 0.3s;
}


.other_promotion .pmtTitle h3:after {
    content: '▶';
    position: absolute;
    left: -30px;
    top: 30px;
    color: #857F79;
    transition: 0.3s;
    opacity: 0;
}


.other_promotion li a:hover .pmtTitle h3:after {
    left: 7px;
    opacity: 1;
    transition: 0.6s;
}

.other_promotion li a:hover .pmtTitle h3 {
padding-left: 30px;
transition: 0.3s;
}

.other_promotion .pmtTime span {
    color: #857F79;
    font-size: 18px;
    position: relative;
    letter-spacing: 1px;
}


@media screen and (max-width: 768px) {
    .other_promotion {
        display: flex;
        flex-wrap: wrap;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*下拉分頁*/
.other_select_page .promotion_title {
    display: none;
}

.other_select_page .other_promotion {
    display: none;
}

.other_select_page .page {
    margin: 0px auto;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */

.product_page .main_part {
    width: 100%;
    max-width: 80%;
    margin: auto;
    padding: 50px 0px;
}

.product_page .show_content {
    margin: auto;
    padding: 10px 0;
}

.product-layer-two li a {
    background: transparent;
}

.products-list {
    padding: 20px 0;
    max-width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 4 - 20px), 1fr));
    grid-gap: 20px;
}

.products-list .pic {
}

.products-list .item a:hover .more {
    background: #857F79;
    color: #f8f7f5;
}

.product-layer-two {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.products-list .item {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 0;
    margin-bottom: 30px;
}

.product-layer-two::after {
    content: "";
    width: 100%;
    height: 2px;
    display: block;
    box-shadow: inset 0px 0.2px 1px hwb(30deg 47% 48% / 10%);
    margin: 0;
    transform: translate(0, -50%);
    z-index: 0;
}






.products-list .more {
    border: 0;
    background: transparent;
    color: #857F79;
    position: relative;
    opacity: 1;
    transition: all 0.3s;
    height: fit-content;
    margin-top: 10px;
    border: 1px #857F79 solid;
    font-weight: bold;
}

.products-list .pic img {
    max-width: 100%;
    transition: all 0.3s;
}

.products-list a:hover .pic img {
    filter: brightness(0.7);
    transform: scale(1.1);
    transition: all 0.5s;
}

.products-list .name {
    font-size: 16px;
    color: #3F3F3F;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
    text-align: center;
    font-weight: bold;
}

.products-list .price b.ori_price {
    color: #ada17ea3;
}

.products-list .price {
    text-align: center;
}


@media screen and (max-width: 1440px) {
    .products-list .price b {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .products-list .price b {
        font-size: 16px;
    }
}

/*外層*/



.product-layer-two li::before{
    content: "";
    display: block;
    width: 150%;
    height: 3px;
    background-color: #857F79;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0) scale(0);
    z-index: 9999999;
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}

.product-layer-two li:hover:before,.product-layer-two li.active::before{
    transform: translate(-50%,0) scale(1);
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
    
}






.product-layer-two li a {
    color: #3F3F3F;
    border: 0;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s;
}
.product-layer-two li.active a{
    border: 0;
}






/*內層*/

.nextaction {
    background-color: #3F3F3F;
}

.lastaction {
    color: #fff;
    background-color: #3F3F3F;
}

.sidebarBtn {
    padding: 15px;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: none;
    background: none;
}



/*內液*/
.product_info_page .main_part {
    width: 100%;
    max-width: 60%;
    margin: auto;
    padding: 50px 0px;
}

.nextaction {
    background-color: #c1b09c;
}

.lastaction {
    color: #fff;
    background-color: #c1b09c;
}

.bx-wrapper .bx-viewport {
    border: none;
    left: 0px;
    background: transparent;
}

.product_pic #bx-pager a {
    border: none;
}

.product_info_page .product-layer-two {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
    position: relative;
}

#number_area {
    display: none;
}

.product-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebarBtn {
    padding: 0;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: 0;
    background: transparent;
    margin: 30px 0;
}

.sidebarBtn h2 {
    color: #3F3F3F;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding: 30px 40px;
    width: fit-content;
    background-color: transparent;
    margin: 0 auto;
    position: relative;
    letter-spacing: 7px;
    line-height: 70px;
}

.sidebarBtn h2::after {
}

.pd_tabTitle li {
    border-bottom: 0;
}
.pd_tabTitle li.activeTab a {
    font-size: 20px;
    font-weight: bold;
    color: #3F3F3F;
}
.pd_tabTitle li.activeTab::after {
    height: 3px;
    background: #857F79;
}








.sidebarBtn {
    color: #bebebe;
}

.sidebarBtn .price {
    color: #3F3F3Fb6;
    font-size: 24px;
    margin-top: 0;
    border-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.sidebarBtn .price::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #3F3F3F;
    margin: 40px 0 20px;
}

.sidebarBtn .sp_price {
    color: #3F3F3F;
}

.product_info {
    display: none;
}

.product_info li span {
    color: #bebebe;
}

#bx-pager h6 {
    display: none;
}

ul.prod li:nth-of-type(2) {
    display: none;
}

ul.prod li h3.prod-thumb {
    color: #d6bfa9;
    font-family: 'Noto Sans TC';
    font-size: 24px;
    text-align: left;
    background: transparent;
    padding: 0;
}

ul.prod li h3.prod-thumb::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #c3b29e;
    margin: 20px 0;
}

ul.prod {
    list-style: none;
    display: block;
    width: 100%;
}

ul.prod li .prod-panel {
    color: #dec7b1a6;
    text-align: left;
}

ul.prod li {
    margin-bottom: 40px;
    color: #bebebe;
}

.toShare {
    display: none;
}



/*  */
.half_box {
    width: 100%;
    float: left;
    padding-right: 0px;
}

ul.prod li span {
    color: #bebebe;
}

.qaform .breakF {
    border: 1px #939393 solid;
    background: #00000061;
    color: #fff;
}

.half_box li.btn_blankTop {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
}

.productBtn {
    text-align: center;
    width: 40%;
    background-color: transparent;
    background-image: none;
    margin-top: 10px;
    padding-left: 0;
    border: 1px #939393 solid !important;
    color: #bebebe;
    transition: all 0.5s;
}

.productBtn:hover {
    background-color: #f8f7f5;
    transition: all 0.5s;
}

/*  */

.prod_related {
    background: #f8f7f5;
    padding: 25px 15px;
}

.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 36px;
    color: #857F79;
    font-family: "Noto Sans TC";
    font-weight: 500;
}

.related_list li a {
    display: block;
    padding: 5%;
    background: #f8f7f5;
    transition: all 0.3s;
}

.related_list li a:hover{
    background: #F2F2F2
}

.related_list li a p {
    font-size: 16px;
    color: #3F3F3F;
    margin: 10px 0;
    font-weight: bold;
}

.related_list li {
    transition: all 0.5s;
}

.related_list li:hover {
    transform: scale(1.05);
    transition: all 0.5s;
}

.mobile_product_name {
    display: none;
}

.sidebarBtn .price span {
    display: block;
    font-size: 24px;
    margin: 0 10px;
}


/* 結帳 */

.separate_title {
    font-size: 30px;
    color: #3F3F3F;
    padding: 10px 0 10px 40px;
    background: transparent;
}

.formbox_form li .form__label {
    color: #3F3F3F;
}

/*  */
.shopping-cart .cart_head {
    background: #42512a;
    color: #fff;
}

.shopping-cart .row {
    position: relative;
    height: auto;
    margin: 25px 0;
    clear: both;
    background-color: transparent;
    color: #3F3F3F;
}

.shopping-cart .cell {
    background: transparent;
    color: #3F3F3F;
}

.shopping-cart .cell a {
    background: transparent;
    color: #3F3F3F;
}

.total_amount li {
    margin: 10px 0;
    color: #3F3F3F;
}

.form label.Bigcheck {
    color: #3F3F3F;
}

.form label {
    color: #3F3F3F;
}

.declaration {
    background: transparent;
}



@media screen and (max-width: 1440px) {}

@media screen and (max-width: 1024px) {
    .products-list .item {
        width: calc(100% / 3 - 3%);
    }

}



@media screen and (max-width: 768px) {
    .car_page .information_left {
        display: none;
    }

    .product-layer-two {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        width: 100%;
        margin-right: 0;
        justify-content: flex-start;
        align-items: flex-end;
    }

    .product-layer-two li {
        width: calc(100% / 3 - 2%);
        text-align: center;
        margin: 10px 1%;
    }

    .product-layer-two li a {
        text-wrap: pretty;
        word-break: keep-all;
    }

    .product-layer-two li:hover>a {
        padding-left: 20px;
    }

    .products-list {
        width: 100%;
        padding: 20px 0;
        margin-top: 30px;
        max-width: 100%;
    }

    .products-list .item {
        width: 49%;
    }

    .product_info_page .product-layer-two {
        display: none;
    }

    .product-wrapper {
        left: 0px;
    }

    .products-list .item {
        width: calc(100% / 2 - 2.5%);
    }

    .sidebarBtn h2 {
        font-size: 40px;
        padding: 20px 40px;
    }
}

@media screen and (max-width: 500px) {
    .product_page .main_part {
        max-width: 85%;
    }

    .product-layer-two li {
        width: calc(100% / 2 - 2%);
    }

    .products-list .more {
        font-size: 14px;
    }

    .products-list .item {
        width: 100%;
    }

    .product_info_page .main_part {
        width: 100%;
        max-width: 85%;
        margin: auto;
        padding: 50px 0px;
    }

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*聯絡我們*/
.contact_page .main_part {  max-width: max-content; padding: 0px 0px 100px;}
.contact_editbox {padding: 0;}
h4.blank_letter.f {  text-align: left;   padding-bottom: 25px; position: relative;  top: 50px; font-size: 24px; color: #000;}
/*h4.blank_letter.f:before { content: "FORM";font-size: 50px; font-family: "Tenor Sans"; font-weight: 500;
        letter-spacing: 6%;  position: absolute; left: 50%;  transform: translateX(-50%);  top: -50px;}*/
h4.blank_letter.f:after { content: ""; width: 27px; height: 3px; background-color: #f35827; position: absolute;bottom: 0; left: 0;}
.blank_letter {font-size: 23px; color: #2F2F2F; font-weight: 800; letter-spacing: 2px; text-indent: 2px; background-repeat: no-repeat;}
.note {  text-align: left;  padding-top: 10px;}

/*表格*/
.contact_content { padding: 20px 10px 20px;}
.contact_content .information_right {  width: 100%;  padding: 60px 160px 80px;}
.contact_form li { grid-template-columns: 1fr; grid-gap: 10px;}
.contact_form li .form__label {  display: block; max-width: 100%;  text-align: left;  width: 100%;  font-weight: 800;}
.contact_form  { grid-template-columns: repeat(12, 1fr); grid-gap: 35px 80px; align-items: start; margin: 0; padding-top: 80px;width: 100%;}
.contact_form li { grid-template-columns: 1fr;  grid-column: auto / span 6;  grid-gap: 5px;}
.contact_form li:nth-child(n+5) { grid-column: auto / span 12;}
.form select {width: 100%;}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert { display: flex;grid-gap: 0px;}
input[type="checkbox"], input[type="radio"] { margin-left: 25px; margin-right: 5px;}

.contact_content .information_left {  display: none;}

.star { padding: 0px;}
.contact_form li input.noborder { border: unset;  border-bottom: 1px solid #b0b0b0; background: transparent;}
.contact_form li textarea.noborder { border: 1px #b0b0b0 solid;  background: transparent;}

/*按鈕*/
.contact_form li.last cite, .contact_form li.last blockquote{ font-weight: 400; }
.contact_form li.last cite {  background: transparent;  color: #f35827; }
.contact_form li.last blockquote { color: #f35827;}
.contact_form li.last blockquote, .contact_form li.last cite { border: 1px #f35827 solid;padding: 4px; border-radius: 0px;}


@media screen and (max-width: 1200px) {
.contact_content .information_right {
        padding: 60px 100px 80px;
    }
}

@media screen and (max-width: 1024px) {
.contact_content .information_right {
        padding: 60px 30px 80px;
    }
}

@media screen and (max-width: 980px) {
.contact_content .information_right { padding: 60px 50px 80px;}
.contact_form {    grid-gap: 10px;}
.contact_form li { grid-column: auto / span 12;}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {  display: grid;  grid-gap: 5px;}
input[type="checkbox"], input[type="radio"] { margin-left: 0px; margin-right: 0px;}
}

@media screen and (max-width: 600px) {

.contact_form li .form__label {background: transparent;}
.contact_content .information_right {   padding: 60px 20px;  }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: none;}
.footer.with_shopping_mode { padding:30px 0 0px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




