@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');

body{
	overflow-x:hidden;
	font-family:"Archivo Black","Noto Sans TC";
	font-weight: 400;
  letter-spacing: 1px;
}




/*滾動條全域設定---------- */

/*寬度*/
::-webkit-scrollbar {
    width: 6px;
}

/*軌道顏色*/
::-webkit-scrollbar-track{
    background-color: #ffffff;
    border-radius: 3px;
}

/*滑塊*/
::-webkit-scrollbar-thumb {
    background-color: #FF9999;
    border-radius: 3px;
}


/* ▼ HEADER---START ▼ ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */



/* 購物車隱藏 */
.me_tp_features a i {display: none;}
.me_tp_features {display: none;}

/*Logo ----------*/

/*logo定位 */
.nav-header {
    top: 16px;
    left: 2vw;
    max-width: 340px;
}

/*logo大小*/
.header_area .nav-brand {
    max-width: 300px;
    width: 100%;
}

/*header樣式*/

.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    background: #f0f0f000;
}

.main_header_area {
    background: #dfd9c500;
    box-shadow: 1px 1px 10px rgb(105 83 83 / 0%);
    transition: .5s ease-out;
    margin: 0;
    border-radius: 0;
}

/*header下拉後底色磨砂感*/
.sticky .main_header_area.animated {
    background: #ffffff;
    backdrop-filter: saturate(93%) blur(10px);
    border-radius: 10vw;
    margin: 1vw 5vw;
}

.header_area.sticky{    background: #ffffff00;}



/*選單文字*/
.stellarnav > ul > li > a {
    color: #8e8e8e;
    font-family:"Sorts Mill Goudy","Noto Sans TC";
    font-size: 15px;
    letter-spacing: 0.15rem;
    text-align: center;
    transition: .5s ease-out;
    height: 50px;
    margin: 0px 0px 1px 0px; /*選單高度*/
    padding: 20px 10px 0 10px; /*選單間距*/
    font-weight: 600
}

.stellarnav > ul > li > a :hover {
    color: #FF9999;
}

.navigation { padding: 30px 0 10px 0px; grid-template-columns: 340px 1fr;}
.stellarnav a.dd-toggle .icon-plus:before{    border-bottom: solid 2px #A68A60;}
.stellarnav a.dd-toggle .icon-plus:after {    border-bottom: solid 2px #A68A60;}
.stellarnav .icon-close:before{border-bottom: solid 2px #ffffff;}
.stellarnav .icon-close:after {border-bottom: solid 2px #ffffff;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {    background: #e1bfb4;}
.stellarnav a {color: #ffffff;}
.stellarnav.mobile ul {    background: #f7f7f7;}

/*選單圖示 ---------- */

/*通用設定*/
.stellarnav > ul > li > a:before {
    content: "";
    background: url(https://pic03.eapple.com.tw/fongencare/header.png) no-repeat;
    width: 30px;
    height: 28px;
    background-size: contain;
    position: absolute;
    left: 50%;
    transition: .5s ease-out;
    transform: translate(-50%);
    bottom: 10px;
    opacity: 0;
}

.stellarnav > ul > li > a:hover::before {
    transform: translate(-50%);
    bottom: 23px;
    transition: .5s ease-out;
    opacity: 1;
    width: 78%;
}

/*圖示替換*/

.stellarnav > ul > li:nth-child( 2n ) > a:before {
    background: url(https://pic03.eapple.com.tw/fongencare/header1.png) no-repeat;
    background-size: contain;
}


/*文字底線-中間往左右*//*
.stellarnav > ul > li:after {
    content: "";
    width: 0;
    height: 1px ;
    position: absolute;
    bottom: 15px; /*底線垂直位置
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    transition: all .3s;
}

.stellarnav > ul > li:hover::after {
    width: 80%;
}

/*文字底線-左到右*/
.stellarnav > ul > li:after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0px;
    width: calc(100% - 2 * 2px);
    height: 2px;
    background: var(--accent-color);
    overflow: hidden;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform .3s cubic-bezier(.76,0,.24,1);
}

.stellarnav > ul > li:hover::after {
    transform-origin: 0 50%;
    transform: scaleX(1);
}

/*下拉的欄位 ---------- */

.stellarnav li a {
    padding: 7px 10px;
    display: block;
    color: #8e8e8e;
}

/*下拉符號-隱藏*/
.stellarnav li.has-sub > a:after {
    display: none;
}



/*次選單 ---------- */

/*次選單樣式-半透明底色*/
.stellarnav ul ul ,
.stellarnav ul ul ul {
    overflow: auto;
    border: solid 1px rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 7px;
    box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 12%);
    backdrop-filter: saturate(180%) blur(5px);
    width: 215px;/*加寬*/
    max-height: 400px;
}

/*第三層滾動條設定*/
.stellarnav ul ul ul {
    overflow-x: hidden;
    /*overflow-y: scroll;*/
    scrollbar-gutter: stable;
}

/*次選單欄位邊框*/
.stellarnav li li {
    border: 0px var(--light-gray) solid;
}

/*次選單文字樣式*/
.stellarnav li a {
    padding: 7px 10px;
    display: block;
    color: #8e8e8e;
    font-size: var(--f15);
}

/*欄位尺寸*/
.stellarnav li li > a ,
.stellarnav li li.has-sub > a {
    padding: 7px 5px;
    transition: .5s ease-out;
    border-left: 2px solid transparent ;
}

/*欄位hover樣式*//*
.stellarnav li li:hover > a ,
.stellarnav li li.has-sub:hover > a {
    color: #bea15c;
    border-color:#bea15c ;
}
*/

/*hover欄位樣式-向右滑動*/
.stellarnav li.has-sub ul li a:hover{
    color: #FF7272;
}

/*文字底色透明*/
.stellarnav.desktop li.has-sub ul a {
    background: transparent;
    transition: .5s ease-out;
    letter-spacing: .1rem;
    position: relative;
}

@media screen and (max-width: 1440px) {.navigation {
    padding: 20px 16px 10px 20px;}}


@media screen and (max-width: 1024px) {
    .main_part {
        padding: 40px 20px;
    }


/*關掉-header下拉效果*/
.sticky .main_header_area.animated {
    border-radius: 0vw;
    margin: 0px;
}

.navigation {
    padding: 20px 0 0 0;
}

.stellarnav > ul > li > a {
    margin: 0px;
    padding: 0px 10px 0 10px;
    height: 35px;
}

/*隱藏-風扇插圖*/
.stellarnav > ul > li > a:before{
    display: none;
}

}


/*●●●●●●●●●●●●●●●●●●●●●●●●   BANNER區塊   ●●●●●●●●●●●●●●●●●●●●●●●●*/
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/

/*banner01*//*第一張大圖的偽元素*//*依樣可以放before+after 兩個*/
#content_main { margin:0;   background-color: #F2F2F2;}/*custom原本有寫*/
.bannerindex { position:sticky; height:auto;}/*custom原本有寫*/
.bannerindex .swiper-banner { position:static; margin:0; height:auto;}/*custom原本有寫*/
.bannerindex .swiper-slide img { height:auto;    animation: none;}/*custom原本有寫*/
.bannerindex .swiper-slide {position: relative;}/*因為偽元素，所以要加的*/
.bannerindex .swiper-slide:before ,.bannerindex .swiper-slide:after { content: ""; position: absolute;  z-index: 999; pointer-events:none;}/*before+after依樣要寫的內容拆出來寫一起，要寫在個別下方也可以*/



@keyframes swiff {
    0%,100%{
        transform: scale(1.2) rotateZ(0deg) translate(0px,0);
    }
    50%{
        transform: scale(1.3) rotateZ(2deg) translate(-100px,0);
    }

}
/* 文字 */
.bannerindex .swiper-slide:nth-child(1):after {
    background: url(https://pic03.eapple.com.tw/fongencare/banner-02.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.43);
}

.bannerindex .swiper-slide:nth-child(2):before {
    background: url(https://pic03.eapple.com.tw/fongencare/banner-04.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.43);
}



.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before {animation: slide-fade-in 3s 0.3s  both;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after { animation: slide-top  2s 0.2s both;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before {animation: slide-top 2s 0.2s ease both;}

@keyframes slide-in-left {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


/*上升特效*/
  @keyframes slide-top {
  0% {-webkit-transform: translateY(100%);  /* 一開始的位置 在Y-100(最下方)*/
            transform: translateY(100%);
            opacity:0;/*透明度0*/}
  100% {-webkit-transform: translateY(0);/* 跑到最後終止的位置 在Y-0(最上方)*/
            transform: translateY(0);
            opacity:1;/*透明度顯示*/}
  }

  @keyframes fade-in-elegant {
    0% {
        opacity: 0;
        transform: translateY(20px); /* 從下方滑入 */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* 最終位置 */
    }
}

@keyframes slide-fade-in {
    0% {
        opacity: 0;
        transform: translateX(-20px); /* 從左側滑入 */
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@-webkit-keyframes fade-in-bck {
    0% {
      -webkit-transform: translateZ(150px);
              transform: translateZ(150px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      opacity: 1;
    }
  }
  @keyframes fade-in-bck {
    0% {
      -webkit-transform: translateZ(150px);
              transform: translateZ(150px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      opacity: 1;
    }
  }
  
  @media screen and (max-width: 768px) {
    .bannerindex {
        padding-bottom: 0%;
    }}

    @media screen and (max-width: 500px) {
        .swiper-slide img {
            width: 200%;
        }
        .swiper-slide:nth-child(1) img {
            position: relative;
            height: auto;
        }
        .swiper-slide:nth-child(2) img {
            position: relative;
            height: auto;
            left: 0%;
        }
        
    }



/* ▲ HEADER---END ▲ ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/*--RWD---------------------------------------*/

@media screen and (max-width: 1440px) { 
    .swiper-pagination { display: none;}
}

@media screen and (max-width: 1024px) { 
    /*header*/
    .pageIndex .header_area {    position: relative;}
    .main_header_area .container { max-width: 100%;}
    .header_area {position: relative;}

    /*logo*/
    .header_area .nav-brand { max-width: 300px; margin: 15px 0 10px 0; transition: .3s ease-in-out;}

    /*menu*/
    .header_area .navigation, .header_area.sticky .navigation, .navigation { padding: 0; background:rgb(255 255 255 / 0%);}
    .stellarnav { padding: 0 0 10px;}
    .stellarnav.mobile > ul > li > a.dd-toggle, .stellarnav > ul > li.has-sub > a, .stellarnav.mobile > ul > li.has-sub a.dd-toggle, .stellarnav.mobile > ul > li.has-sub > a { padding: 0 30px;}
    .stellarnav li.has-sub > a::after { top: 49%;}/*下拉箭頭*/
}

@media screen and (max-width: 768px) {
    /*logo*/
    .nav-header { position: static;}
    .header_area.sticky .nav-brand { max-width: 150px; margin-top: 10px; transition: .3s ease-in-out;}    

    /*menu*/
    .stellarnav ul ul, .stellarnav > ul > li:hover > ul > li:hover > ul { box-shadow: none;}
    .stellarnav li li { border: none;}
    .stellarnav > ul > li > a b:last-child { display: none;}
    .stellarnav.mobile > ul > li > a.dd-toggle, .stellarnav > ul > li.has-sub > a, .stellarnav.mobile > ul > li.has-sub a.dd-toggle, .stellarnav.mobile > ul > li.has-sub > a { padding: 10px 10px;}
    .stellarnav.mobile > ul > li > a.dd-toggle { top: 3px;}
    .stellarnav li.has-sub > a::after { top: 53%;}/*下拉箭頭*/
    .stellarnav li li > a, .stellarnav li li.has-sub > a, .stellarnav li li.has-sub.drop-left a { padding: 10px 30px; border-left: none;}
    .stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a { border-color: transparent;}
    .sticky .main_header_area.animated {backdrop-filter: none;}
}



/*===========內頁BANNER 設定========================================================================================================*/
#content {background: #ececec;}
.other_page .path {display: none;} 
.path p, .path p a { text-align: right;}

/*內頁BANNER 設定*/
.banner {background: #444; height: 780px; border-radius: 0 0 80px 80px; background-position: center!important; background-repeat: no-repeat !important; background-size: cover !important; background-attachment: fixed !important;}
.banner:before { position: relative;
    z-index: 1;
    background-color: #fff;}

.banner.banC { border-radius: 0px; background: url(https://pic03.eapple.com.tw/fongencare/banner01.jpg);}
.banner.banblog {background: url(https://pic03.eapple.com.tw/fongencare/banner02.jpg);}
.banner.banE {background: url(https://pic03.eapple.com.tw/fongencare/banner03.jpg);}

.banner h5 { font-size: 30px; color: #fff; position: relative; letter-spacing: 5px; animation: slide-top 1.5s 0.5s both; font-family: "Noto Sans TC";font-weight: 500; width: 100%; }
.banner h5:after { content: ""; display: block; font-size: 19px;  padding-top: 10px;font-family: "微軟正黑體";}
.banner h5:before { display: block; opacity: 0.4; top: -10%; position: absolute;font-weight: 800;color: #fff; z-index: -1;
    left: 50%; transform: translate(-50%, -50%); width: 100%; font-size: 75px; white-space: nowrap;}
.banner.banblog h5 { filter: drop-shadow(2px 4px 6px black);}

.banner.banC h5:before { content: "Contact";}
.banner.banblog h5:before { content: "News";}
.banner.banE h5:before { content: "Memory Gallery";}
.banner.banB h5:before { content: "Join Us";}

.banner.banA {display: none;}
.banner.banB {  border-radius: 0px; background: url(https://pic03.eapple.com.tw/fongencare/banner04.jpg);}
.services_page .banner {}
.banner.banC {}
.banner.banD {}
.banner.banF {}
body.other_page.bodyDesktop{    background-color: #ffffff;}

/*
.banner h5:after { content: ""; position: absolute;}
.banner h5:before { content: ""; position: absolute;}
*/
/*動畫*/
/*@keyframes slide-top {
    0% { -webkit-transform: translateY(100%);transform: translateY(100%); opacity:0; }
    100% {-webkit-transform: translateY(0); transform: translateY(0); opacity:1;}
}
*/
@media screen and (max-width: 1024px) {
       .banner {height: 500px;}}


@media screen and (max-width: 425px) {
       .banner {  border-radius: 0 0 0px 0px;}
       .banner.banB { background: #e1bfb4;}
       .banner.banblog  { background: #e1bfb4;}
       .banner.banC{ background: #e1bfb4;}
       .banner {    height: 200px;}
       .banner.banblog h5{filter:none;}

    }





/*======footer=======================================================================*/
.box_link {
    position: absolute;
    top: 0;
    right: 10px;
    width: auto;
    max-width: 110px;
    display: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    max-height: 100%;
}
.footer {
    padding: 30px 0 0;
    font-size: 14px;
    background: #ffffff;
    position: relative;
    z-index: 99;
    overflow: hidden;
}



.footer::after {
    content: "";
    position: absolute;
    background: url(https://pic03.eapple.com.tw/fongencare/heart2_footer.png);
    background-size: contain;
    background-repeat: no-repeat;
    right: 0;
    top: 0%;
    width: 18%;
    height: auto;
    aspect-ratio: 44 / 25; 
    animation: floatPath2 12s ease-in-out infinite;
    animation-delay: 3s;
    z-index: -1;
}


.footer::before {
    content: '';
    position: absolute;
    background: url(https://pic03.eapple.com.tw/fongencare/heart1_footer.png);
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    top: 0%;
    width: 26%;
    aspect-ratio: 44 / 25;
    animation: floatPath1 15s ease-in-out infinite;
}

/* 動畫：緩慢飄移 */
@keyframes floatPath1 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(30px, -20px) scale(1.05); }
  50%  { transform: translate(-20px, 10px) scale(1); }
  75%  { transform: translate(15px, 15px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatPath2 {
  0%   { transform: translate(0, 0) scale(1); }
  20%  { transform: translate(-25px, 25px) scale(1.1); }
  40%  { transform: translate(30px, 10px) scale(1); }
  60%  { transform: translate(-15px, -20px) scale(1.05); }
  80%  { transform: translate(20px, -15px) scale(1); }
  100% { transform: translate(0, 0) scale(1); }
}

/*==========================*/

.footer_logo { max-width: 340px;}

.footer_logo img {
    max-width: 90%;
}
.footer_info {
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    align-content: space-between;
    gap: 25px 30px;
    justify-content: center;
}
.footer_info ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 0;
    letter-spacing: 0.15em;
}
.footer_info li {
    display: block;
    padding: 10px;
    z-index: 0;
}
.footer_info li p {
    line-height: 170%;
    letter-spacing: 1px;
    color: #8E8E8E;
    font-size: 13px;
}
a {
    color: #8E8E8E;
    letter-spacing: 3px;
}
.footer_menu {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 5px;
    z-index: 99;
}
.footer_menu a {
    display: inline-block;
    padding: 5px 4px;
    border: 0;
    margin: 0 0px 4px 0;
    font-size: 13px;
    line-height: 0;
    color: #8E8E8E;
    background: 0;
}
.footer_menu a:hover {
    background: #66666600;
    color: #FF9999;
}
.footer_info ul>li:nth-child(1):before {
    content: "聯絡資訊";
    font-family: 'Noto sans TC', sans-serif;
    font-weight: 500;
}
.footer_info ul>li:nth-child(2):before {
    content: "網站地圖";
    font-family: 'Noto sans TC', sans-serif;
    font-weight: 500;
    padding-left: 4px;
}
.footer_info ul>li:before {
    font-size: 115%;
    color: #FF9999;
    display: block;
    margin: 0 0 20px;
    border-bottom: 1px solid #FF9999;
    padding-bottom: 10px;
    letter-spacing: 0.2em;
}
.copy {
    text-align: center;
    padding: 3px 0;
    font-size: 10px;
    color: #ffffff;
    border-top: 0;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    background: #FF9999;
}
.copy a {
    color: #fff;
    letter-spacing: 1px;
}
.copy a:hover {
    color: #e89215;
}


.linksBtn {    display: none;}
#to_top {background: #FF9999;    box-shadow: 0px 0px 10px rgb(183 183 183 / 30%); color: #fff;}
#to_top i:before, #to_top i:after{    background: #ffffff;}
#to_top i.top:before, #to_top i.top:after{width: 3px;}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
#content  {background: url(https://pic03.eapple.com.tw/fongencare/bg.jpg) repeat center center; background-attachment: fixed;}

.blog_box {display: flex;flex-direction: column;}
.blog_le, .blog_ri {width: 100%;padding: 0;margin-bottom: 0;}
h5.blog_le_t, .blog_search {display: none;}
.blog_le .accordion {display: flex;border-radius: 0;border: 0;align-items: center;justify-content: center;padding-bottom: 100px;gap: 10px;}
.accordion li .link {padding: 2px 25px;font-size: 16px;font-weight: 400;letter-spacing: 0.15em;border-bottom: 0;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {background: #66666600 !important; border-bottom: 2px solid #FF7272!important; }
.blog_le ul li:not(:last-child) {border-right: 1px solid #ccc;}
.accordion li .link a {color: #8e8e8e;}

h4.blog_category_title {display: none;}
.blog_subbox {display: flex;flex-wrap: wrap;}
.subbox_item {width: 100%;margin-bottom: 30px;padding-bottom: 30px;border-bottom: 1px solid #FF7272;}
.subbox_item a {display: grid;grid-template-columns: 1fr 4fr;column-gap: 50px;align-items: center;background-color: #fff;padding: 20px; border-radius: 50px;}
.subbox_item a:before {letter-spacing: 0.08em;color: #FF7272;font-size: 16px; right: 60px;}
.subbox_item a:after {background: #ffffff80;border: 0;border-radius: 50px;}
.blog_list_le {width: 100%;padding: 0;}
.blog_list_ri {grid-template-rows: 1fr 1fr 1fr;padding: 0;width: 100%;}
.blog_list_ri h5 {font-weight: 400;font-size: 22px;letter-spacing: 0.08em;-webkit-box-orient: inherit;}
.blog_list_ri em {font-size: 15px;letter-spacing: 0.15em;margin: 0;line-height: 2;}
.blog_list_ri p {font-size: 16px;color: #999;letter-spacing: 0.05em;line-height: 1.5;}


.blog_list_le img {    border-radius: 20%;}
.blog_list_ri h5 {color: #8e8e8e}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a{color: #797979  !important;}
.accordion li .link a {font-size: 24px;}

/*文章內頁*/
.blog_in_page h4.blog_category_title {display: block;
    color: #000000;font-size: 25px;letter-spacing: 0.05em;font-weight: 500;
    border-bottom: 1px #ccc solid;padding: 0 0 15px 0;margin-bottom: 30px;}
.blog_box_edit * {line-height: 180%;letter-spacing: 0.05em;}

.blog_back {display: flex;text-align: center;justify-content: space-between;}
.blog_back a {
    position: relative;font-size: 16px;letter-spacing: 0.15em;color: #6C4C33;
    border: 1px solid #ccc;display: inline-block;padding: 15px;width: 30%;}
.blog_back a.article_btn_prev, .blog_back a.article_btn_back, .blog_back a.article_btn_next {background: unset;}
.blog_back a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    background-color: #000000;
    z-index: -1;
}
.blog_back a:hover {color: #FFF;}
.blog_back a:hover::before {
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.accordion li+li .link{border-top:unset;}
.blog_le ul li:not(:last-child){border-right:unset;}

.news_related h6 span:before {    color: #fc989b;}
.lastPage {    background: #fc989b;}

@media screen and (max-width: 1024px) {
/*文章*/

/*文章內頁*/
.blog_le .accordion {padding-bottom: 80px;}
.blog_in_page h4.blog_category_title {font-size: 22px;margin-bottom: 20px;}
.blog_back a {padding: 10px 15px;font-size: 15px;}
}
@media screen and (max-width: 768px) {
.blog_le .accordion {padding-bottom: 50px;}
.accordion li .link {padding: 5px 20px;font-size: 15px;}
.blog_in_page h4.blog_category_title {font-size: 20px;}
.blog_box_edit * span {font-size: 15px !important;}
.subbox_item a {grid-template-columns: 1fr 2fr;}
.blog_list_ri {    grid-template-rows: 1fr 0fr 1fr;}
}
@media screen and (max-width: 600px) {
.subbox_item {margin-bottom: 15px;padding-bottom: 15px;}
.subbox_item a {grid-template-columns: unset;grid-template-rows: 2fr 1fr;column-gap: 0;row-gap: 30px;}
.blog_list_ri {padding: 0 5%;}
.blog_list_ri h5 {font-size: 20px;}
.blog_list_ri em {font-size: 14px;}
.blog_list_ri p {font-size: 14px;}
}
@media screen and (max-width: 450px) {
.subbox_item a:before {bottom: 0px;}
.blog_box_edit * span {font-size: 14px !important;}
.blog_back a {padding: 8px 10px;font-size: 14px;}
.subbox_item a {        grid-template-rows: 1fr 0fr;}
.accordion li .link a {font-size: 20px;}
}

.other_promotion{display: none;}


/*相簿*/

.other_album {
    display: none;
}

.show-list .item
{background-color: #ff727200;}

.show-list .item a {
    text-align: center;
}

.other_subalbum li a p {
    letter-spacing: 1px;
    padding-top: 21px;
    padding-bottom: 13px;
    border-bottom: 1pt solid #FF7272;
}


.show-list .item a {

    padding-top: 43px;
}


.subalbum-menu h2 {
    font-size: 20px;
    color: #575757;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 2px;
    font-weight: 400;
    background: #f0f0f094;
    padding: 10px 0px;
}

.show-list .show_name {
    font-weight: 400;
    color: #525252;
    font-family: 'Noto Serif TC';
}

.show-list .item:hover .show_name {
    color: #444;
}

.other_album_choice li {
    background: #8aa2b5;
}

.other_album_choice li:hover {
    background: #FF7272;
}


.other_album_choice li a {
    color: #fff;
    letter-spacing: 1px;
}


.pic-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}


.pic-list .show_pic {
    border-radius: 10px;
}





/*相簿外層特效*/


.overlay {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: transparent;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    z-index: 1;
    transition: opacity 0.1s, transform 0.1s;
  }




  .overlay:hover:before {
    opacity: 1;
    transform: scale(1);
    

}

.show-list .item a:hover .show_pic img {
    transform: translate(0%, 0%) scale(1.15);
    filter: none;
    transition: all .6s;
}
    
.show_pic img {
    transition: all .6s;
}




/* ====聯絡表單======================================== */



.contact_le_map a {
    display: block;
    background: #FF7272;
    text-align: center;
    padding: 10px;
    color: #fff;
}


.contact_form li.last cite {
    background: #FF7272;
    color: #fff;
}


.red {
    color: #FF7272;
}


.contact_editbox {
    margin: auto;
    padding: 0 0 ;
}

.contact_content {
    margin: auto;
    padding: 20px 280px;
}

.list_before {  font-weight: 600;}
.contact_form li .form__label { font-weight: 600;}

.contact_content .information_right {
    width: calc(118% - 380px);
    padding-left: 200px;
}

.contact_form li input.noborder {
    border: 0px;
    background-color: #f9f9f7;
    border-bottom: 1px #FF7272 solid;
}

.contact_form li textarea.noborder {
    background-color: #f9f9f7;
    border: 1px #FF7272 solid;
}

.contact_form li.last blockquote, .contact_form li.last cite{    border: 1px #FF7272 solid;}

.blank_letter{   color: #8e8e8e;}
.contact_form{   color: #8e8e8e;}
.contact_form li input.noborder{    background-color: #f9f9f700;}
.contact_form li textarea.noborder{background-color: #f9f9f700;}
.contact_editbox .contact_content{    background-color: #fff;}

@media screen and (max-width: 425px){
    /*聯絡表單*/
    .contact_form li { padding-left: 0;}
    .contact_form li .form__label { margin: 0 0 10px; width: 100%; text-align: left;}
    .contact_form li .form__insert { width: 100%;}
}

/* = = = RWD = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
@media screen and (max-width: 1440px) {    
    .contact_content {padding: 20px 0px;} 
    .contact_content .information_right {
        width: calc(110% - 395px);
        padding-left: 245px;
    }
}

@media screen and (max-width: 1024px) { 

    .contact_content {padding: 20px 0px;}
    .contact_content .information_right {
        width: calc(120% - 395px);
        padding-left: 180px;
    }
}

@media screen and (max-width: 768px) { 
    .contact_content {
        margin: auto;
        padding: 20px 0px;
    }
    .contact_content .information_right {
        width: calc(129% - 355px);
        padding-left: 120px;
    }
}
@media screen and (max-width: 600px) { }

@media screen and (max-width: 425px) { 
    .contact_content .information_right {
        width: calc(172% - 360px);
        padding-left: 65px;}


}

@media screen and (max-width: 375px) {
.contact_content .information_right {
    width: calc(172% - 332px);
    padding-left: 60px;}
}

@media screen and (max-width: 320px) {
    .main_part {
        padding: 45px 10px 0 10px;
    }
    .contact_content .information_right {
        width: calc(172% - 300px);
        padding-left: 60px;
    }
    
 }


.contact_content .information_left{display: none;}


.page{    margin: 0px auto;}


@media screen and (max-width: 1200px) {
    @media screen and (max-width: 980px) {
        @media screen and (max-width: 768px) {
            .promotion_title h2 {
                display: none;
            }
        }
    }
}

.path p, .path p a {
    text-align: right;
    display: none;
}


.promotion_title {    display: none;}