@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=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

body {
    font-family: "Arial", "Noto Sans TC", sans-serif;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*反白顏色*/
::-moz-selection {
    background-color: #ebe5d5;
    color: #fff;
}

::selection {
    background-color: #B9846C;
    color: #fff;
}

body {
    overflow: overlay;
    overflow-x: hidden;
    background: #F8F1E7;
}

.main_part {
    padding: 100px 0 80px;
    max-width: 1500px;
    width: 100%;
}


/* ★★★滾動條 ↓↓↓↓↓↓↓↓↓↓↓↓ */
/* 捲軸寬度及高度 */
::-webkit-scrollbar { width: 3px; height: 0px;}
/* 滑桿顏色 */
::-webkit-scrollbar-thumb { background: #B9846C;}
/* 軌道背景底色 */
::-webkit-scrollbar-track { background: #ebe5d5;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}

#page {
    position: relative;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.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}
*/

/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*大圖*/
.pageIndex .bannerindex {    position: relative; }
.pageIndex .bannerindex::before {
    left: 0;
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
    height: 100%;
    bottom: 0;
    width: 100%;
    inset: 0;
    background: radial-gradient(hsla(54deg, 100%, 87%, 0) 0%, hsla(54deg, 70%, 90%, 0.35) 55%, hsla(8deg, 79%, 90%, 0.35) 70%, hsla(8deg, 79%, 90%, 0) 80%, hsla(8deg, 79%, 90%, 0) 100%);
    transition: 200ms;
    transform: translate3d(0%, 0%, 0) scale(5);
    animation: 
        move-light 8000ms ease-in-out infinite, 
        move-light-opacity 8000ms ease-in-out infinite;
}

@keyframes move-light {
    0% { transform: translate3d(-100%, -100%, 0) scale(4); }
    100% { transform: translate3d(50%, 50%, 0) scale(6); }
}

@keyframes move-light-opacity {
    0% { opacity: 0; }
    20% { opacity: 1; } 
    80% { opacity: 1; } 
    100% { opacity: 0; } 
}

.pageIndex .bannerindex::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 20; 
    background: rgba(229, 178, 164, 0.3); 
    backdrop-filter: blur(25px) brightness(105%);
    -webkit-backdrop-filter: blur(25px) brightness(105%);
    -webkit-mask-image: linear-gradient(135deg, transparent 40%, black 60%);
    mask-image: linear-gradient(135deg, transparent 40%, black 60%);
        -webkit-mask-size: 300% 300%;
    mask-size: 300% 300%;
        -webkit-mask-position: 100% 0%;
    mask-position: 100% 0%;

    pointer-events: none; 
    animation: slide-reveal 6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slide-reveal {
    0% {
        -webkit-mask-position: 100% 0%;
        mask-position: 100% 0%;
        opacity: 1;
    }
    70% {        opacity: 1;    }
    100% {
        -webkit-mask-position: 0% 100%;
        mask-position: 0% 100%;
        opacity: 0;
    }
}

/*第一張大圖的偽元素*/
.pageIndex .bannerindex .swiper-slide.swiper-slide:before, 
.pageIndex .bannerindex .swiper-slide.swiper-slide:after {
    content: ""; 
    position: absolute; 
    z-index: 999; 
    pointer-events: none;
}

.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide:before {
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url(https://pic03.eapple.com.tw/ehmoment/01cover-1text.png);
    background-position: center center;
    background-size: contain; 
    background-repeat: no-repeat;
    z-index: 2;
}
.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide:after {
    display: block;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image:  url(https://pic03.eapple.com.tw/ehmoment/b-pic01.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1; 
}

/*第二張大圖的偽元素*/
.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide:before {
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url(https://pic03.eapple.com.tw/ehmoment/01cover-2text.png);
    background-position: center center;
    background-size: contain; 
    background-repeat: no-repeat;
    z-index: 2;
}

.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide::after {
    display: block;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image:  url(https://pic03.eapple.com.tw/ehmoment/b-pic02.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1; 
}

.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide-active:before {animation: textFadeIn 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }    
.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide-active:after {animation: random-flicker 4s cubic-bezier(.45,0,.55,1) infinite;}
.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide-active:before {animation: textFadeIn 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }    
.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide-active:after {animation: random-flicker 4s cubic-bezier(.45,0,.55,1) infinite;}


@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); filter: blur(5px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes ballBreathe {
    0%, 100% { 
        transform: scale(1) translate(0, 0); 
        opacity: 0.6; 
        filter: blur(0px); 
    }
    50% { 
        transform: scale(1.1) translate(-2%, 1%); 
        opacity: 1; 
        filter: blur(4px); 
    }
}

@keyframes butterflyFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate3d(0, -12px, 0) rotate(2deg) scale(1.02);
    }
    66% {
        transform: translate3d(0, 5px, 0) rotate(-1deg) scale(0.98);
    }
}

/*閃爍*/
@keyframes random-flicker {
  0% { 
    opacity: 0.4;
    filter: blur(8px);
  }
  25% { 
    opacity: 0.8;
    filter: blur(3px);
  }
  50% { 
    opacity: 0.9;
    filter: blur(0);
  }
  75% { 
    opacity: 0.8;
    filter: blur(3px);
  }
  100% { 
    opacity: 0.4;
    filter: blur(8px);
  }
}


/*下方點點樣式*/
.swiper-pagination-bullet {width: 20px; height: 2px; border-radius: 0px; background: #ebe5d58f;}
.swiper-pagination-bullet-active {background: #B9846C;}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {margin:0;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* Header區塊 */
/* 首頁 */

.pageIndex .header_area {
    position: fixed;
    z-index: 9999;
    padding: 20px 10px 20px;
    background: #DEB49F;
    box-shadow: 0px 1px 20px 2px #00000029;
    width: 100%;
    transition: all .8s;
    border-radius: 0 0 80px 80px;
    animation: slide-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: 2s;
}
@keyframes slide-bottom {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0px);
  }
}

.pageIndex .header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: #FCF9F0;
    box-shadow: unset;
}

/*======================*/

/*header*/
header.header_area { position: fixed; background: linear-gradient(to bottom, rgb(0 0 0) -3%, 10%, rgb(0 0 0 / 0%) 100%);padding: 20px 10px 10px;}
.main_header_area .container { transition: 1s;}
.navigation { grid-template-columns: 1fr; justify-items: center;  justify-content: center;}
.nav-header { z-index: 9999; max-width: 200px;}
.stellarnav ul { text-align: center;}
.stellarnav > ul > li.has-sub > a {  padding-right: 0px;}
.header_area .stellarnav > ul > li > a { padding: 0 1.5vw; color: #ffffff;  letter-spacing: 4px;  font-size: 16px;}
.header_area.sticky .stellarnav > ul > li > a { padding: 0 1.5vw; color: #B9846C;  letter-spacing: 4px;  font-size: 16px;}
.stellarnav > ul > li > a b { filter: drop-shadow(0px 0px 6px #888);}
.stellarnav {  position: absolute;  top: 22px;  transition: 1s;}
.stellarnav > ul > li:nth-of-type(3) {  margin-right: 20%;}

/*下拉*/
.stellarnav li.has-sub > a:after{display: none;}
.stellarnav.desktop li.has-sub a { font-size: 15px;}
.stellarnav.desktop li.has-sub li:hover > a {background: #84976f;color: #fff;}

/*hover*/
.stellarnav ul:hover li a { opacity: 0.7; transition: all 0.3s ease-in-out;}
.stellarnav ul li:hover a {opacity: 1;transition: all 0.3s ease-in-out;}
.header_area .stellarnav > ul > li:hover > a { letter-spacing: 4px; filter: drop-shadow(0px 0px 6px #dcdcdc); color: #FEF5EC;}
.header_area.sticky .stellarnav > ul > li:hover > a { letter-spacing: 4px; filter: drop-shadow(0px 0px 6px #dcdcdc); color: #DEB49F;}

/*下滑*/

/*購物車按鈕*/
.tp_links {display: none;}
.box_search { width: 125px; margin-bottom: 5px;}
.box_search input[type=text] { background: url(../images/search-icon.png) no-repeat 5px center #fff;  padding: 5px 55px 5px 27px; max-width: 125px;}
.shop_search_txt { padding: 6px 60px 6px 10px; font-size: 10px;}
.shop_search_btn { background: #495658; font-size: 11px;border-radius: 5px;padding: 4px 10px;}
.header_area.sticky  .me_tp_features { margin: -75px 0 0 auto; }

.me_tp_features { position: fixed; /*top: 28px;*/ right: 4vw; /* z-index: 99999;*/ display: flex; flex-direction: column; align-items: flex-end; gap: 8px; color: #fff;}
.me_tp_features a.tp_btn_cart {color: #fff;}
.navigation * { color: #fff;}
.header_area.sticky .me_tp_features{margin: 0 0 0 auto;}
.header_area.sticky .me_tp_features a.tp_btn_cart {color: #B9846C;}
.header_area.sticky .navigation * { color: #B9846C;}

/*電腦LOGO*/
.nav-brand { display: flex; align-items: center; max-width: 200px; filter: contrast(0) brightness(100); }
.header_area.sticky .nav-brand{ filter: contrast(1) brightness(1);}
header.header_area.sticky .nav-header {top: 5px;}
.header_area.sticky .nav-brand>img { filter: unset;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/
.footer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: #2C2520; 
    padding-top: clamp(40px, 5vw + 1rem, 80px);
    background: url(https://pic03.eapple.com.tw/ehmoment/footer_bg.jpg) no-repeat;
    background-position: center center; 
    background-size: cover;
}

.footer .center {    max-width: 90%;}
.footer_info {
    grid-template-columns: 1fr 150px;
    gap: 35px;
}
.footer_logo {    order: 2;}
.footer_logo > a {
    background: url(https://pic03.eapple.com.tw/ehmoment/fblogo.png) no-repeat;
    display: inline-block;
    width: 100%;
    height: 170px;
    background-size: contain;
    background-position: top right;
}
.footer_logo img{display: none;}
.footer_info ul {
    order: 1;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
}
.footer_info li:nth-child(1) {
    padding-top: 20px;
}
.footer_info li p, .footer_info li p a {
    color: #8f6b5b;
    font-size: 14px;
    line-height: 2.2;
    transition: all .3s;
}
.footer_info li p:hover a {    color: #B9846C;}

.footer_info li:nth-child(2) {
    border-bottom: 1px solid #deb49f;
    padding: 0;
}
.footer_menu a {
    background: transparent;
    border: none;
    margin: 0;
    padding: 25px 10px;
    position: relative;
    color: #8f6b5b;
    font-size: 14px;
}
.footer_menu:hover > a {    opacity: 0.4; transition: all 0.3s;}
.footer_menu a:hover {
    opacity: 1;
    color: #B9846C;
    background: transparent;
}

.footer_menu a:after {
    content: " ";
    position: absolute;
    left: 0;
    width: 0;
    height: 100%;
    height: 1px;
    top: auto;
    bottom: -1px;
    background-color: #D4B296;
    transition-duration: 1.5s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transition-duration: 1.5s;
    -ms-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-duration: 1.5s;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition-duration: 1.5s;
    -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.footer_menu a:hover:after {
    width: 100%;
    right: auto;
    left: 0;
}

.footer_info li p.add2:before {
    content: '營業時間：';
}

.box_link {
    max-width: max-content;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    left: 10px;
    top: 100%;
    gap: 5px;
}
.box_link a {
    font-size: 14px;
    color: #B9846C;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #b9846c4d;
    transition: all .3s;
}
.box_link a:hover {
    background: #B9846C;
    border-color: #B9846C;
    color: #ffffff;
}
.copy {
    border: none;
    font-size: 10px;
    color: #8f6b5b;
    padding: 30px 10px 50px;
    justify-content: flex-start;
    width: 90%;
    margin: auto;
    margin-top: 85px;
    opacity: .5;
}
.copy a {    color: #8f6b5b;}
.copy a:hover {    color: #B9846C;}

@keyframes noise {
0%, 100% {    background-position: 0 0;}
10% {    background-position: -5% -10%;}
20% {    background-position: -15% 5%;}
30% {    background-position: 7% -25%;}
40% {    background-position: 20% 25%;}
50% {    background-position: -25% 10%;}
60% {    background-position: 15% 5%;}
70% {    background-position: 0 15%;}
80% {    background-position: 25% 35%;}
90% {    background-position: -10% 10%;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* TOP按鈕 */
#to_top {
    bottom: 30px;
    left: unset;
    right: 14px;
    height: 80px;
    font-family: "EB Garamond", serif, "Noto Sans TC", sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: transparent;
    letter-spacing: 1px;
    background: transparent;
    border-radius: 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
    margin-bottom: 25px;
}
#to_top::after {
    content: 'TOP';
    position: absolute;
    bottom: -8px;
    right: 11px;
    color: #B9846C;
    letter-spacing: 2px;
    font-weight: 500;
    writing-mode: vertical-rl;
}
#to_top i.top {
    position: relative;
    width: 15px;
    height: 40px;
    margin-bottom: 5px;
    overflow: hidden;
}
#to_top i.top:before {
    width: 1px;
    height: 100%;
    background: #B9846C;
    position: absolute;
    left: 12px;
    top: 100%;
    transform: rotate(0deg);
    -webkit-animation: pagetop-line__anim 3.5s linear 0s infinite;
    animation: pagetop-line__anim 3.5s linear 0s infinite;
}
#to_top i:after {
    display: none;
}

@keyframes pagetop-line__anim {
    0% {
        opacity: 0;
        top: 100%;
    }
    5% {
        opacity: 1;
        top: 100%;
    }
    95% {
        opacity: 1;
        top: -100%;
    }
    100% {
        opacity: 0;
        top: -100%;
    }
}
#to_top:hover {
    opacity: .7;
    transition: all .3s;
}


@media screen and (max-width: 768px) {

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*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-bottom:1px dotted #ccc; 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;}
}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {}
.banner h5 {}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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: block; }
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




