@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n)

*/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.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}.contact_page .main_part
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');

body {
    font-family: "Noto Serif TC", sans-serif;
}

#content {
    background-position: center;
    background-image: url(https://pic03.eapple.com.tw/fatherpapa/bg-22.jpg);
    background-size: cover;

}



.contact_page #content {
    background-image: url(https://pic03.eapple.com.tw/fatherpapa/bg-24.jpg);
}


body {
    --f16: 16px;
    --f18: 18px;
    --f24: 24px;
    --f40: 40px;
    --f50: 50px;
    --f60: 60px;
    --pd40: 40px;
    --pd60: 60px;
    --pd80: 80px;
    --pd100: 100px;
    --pd150: 150px;
    font-size: var(--f16);
}

@media (max-width: 1024px) {
    body {
        --f16: 16px;
        --f18: 17px;
        --f24: 20px;
        --f40: 30px;
        --f50: 35px;
        --f60: 45px;
        --pd40: 40px;
        --pd60: 60px;
        --pd80: 70px;
        --pd100: 80px;
        --pd150: 120px;
    }
}

@media (max-width: 768px) {
    body {
        --f16: 15px;
        --f18: 16px;
        --f24: 19px;
        --f40: 25px;
        --f50: 30px;
        --f60: 35px;
        --pd40: 30px;
        --pd60: 50px;
        --pd80: 60px;
        --pd100: 60px;
        --pd150: 100px;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*反白顏色*/
::-moz-selection {
    background-color: #444;
    color: #fff;
}

::selection {
    background-color: #444;
    color: #fff;
}



.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(1):before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/fatherpapa/bg-03.png);
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
    transform-origin: 50% 60%;
    opacity: 1;
}

.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(2):before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/fatherpapa/bg-04.png);
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
    transform-origin: 50% 60%;
    opacity: 1;
}


.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(1)::after {
    content: "";
    display: block;
    width: 850px;
    height: 1px;
    position: absolute;
    top: 63%;
    left: 0;
    background-color: #fff;
    transition: all 0.85s cubic-bezier(0.68, 0.1, 0.265, 1);
    transform: scale(0, 1);
    opacity: 0;
    transform-origin: 0 50%;

}

.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(2)::after {
    content: "";
    display: block;
    width: 1px;
    height: 467px;
    position: absolute;
    bottom: 0;
    left: 8%;
    background-color: #fff;
    transition: all 0.85s cubic-bezier(0.68, 0.1, 0.265, 1);
    transform: scale(1, 0);
    opacity: 0;
    transform-origin: 0 100%;


}


.pageIndex .swiper-wrapper .swiper-slide.swiper-slide-active:nth-of-type(1)::after {
    animation: left-right 3s cubic-bezier(0.68, 0.1, 0.265, 1) forwards;

}

.pageIndex .swiper-wrapper .swiper-slide.swiper-slide-active:nth-of-type(2)::after {
    background-color: #fff;
    animation: down-up 3s cubic-bezier(0.68, 0.1, 0.265, 1) forwards;
}





@keyframes left-right {
    0% {
        opacity: 0;
        transform: scale(0, 1);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}



@keyframes down-up {
    0% {
        opacity: 0;
        transform: scale(1, 0);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}







/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}

/*首頁+聯絡按鈕*/
.animated-arrow {
    background: transparent;
    color: #2B3047;
    border-bottom: 1px #2B3047 solid;
}

.swiper-pagination {
    display: none;
    left: 50%;
    margin-left: 0;
    transform: translate(-50%, 0);
}


/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.pageIndex .bannerindex {
    position: relative;
    height: auto;
}

.pageIndex .swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

.pageIndex .swiper-slide img {
    height: auto;
    animation: none !important;
    transform: scale(1.011);
}

@media screen and (max-width: 768px) {
    .pageIndex .bannerindex {
        position: relative;
        height: 0;
    }

    .pageIndex .swiper-banner {
        position: relative;
        margin: 0;
        height: auto;
    }

    .pageIndex .bannerindex {
        padding-bottom: 71vw;
        background-size: cover;
    }

    .pageIndex .swiper-banner .swiper-slide img {
        max-width: 150%;
        height: auto;
        width: 150%;
    }

    .pageIndex .swiper-wrapper .swiper-slide {
        display: flex;
        justify-content: center;
    }

    .pageIndex .swiper-wrapper .swiper-slide::after,
    .pageIndex .swiper-wrapper .swiper-slide::before {
        top: 10%;
    }

    .pageIndex .swiper-wrapper .swiper-slide:nth-of-type(1):before {
        padding-bottom: 74%;
        background-position: -20px;
    }

    .pageIndex .swiper-wrapper .swiper-slide:nth-of-type(2):before {
        padding-bottom: 74%;
        background-position: -20px;
    }
}




@media screen and (max-width: 500px) {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/* 首頁文章 */

.module_i_news .title_i_box h4 {
    font-size: 36px;
    color: #494949;
    line-height: 120%;
    font-family: 'Noto Serif TC';
    display: block;
    margin: 0 0;
    margin-bottom: 20px;
    font-weight: bold;
}

.module_i_news .title_i_box h4::before {
    content: "NEWS";
    display: block;
    font-size: 12px;
    color: #494949;
    font-family: 'Noto Sans TC';
    line-height: 1;
}





/*選單設定*/
.nav-menu {
    margin: 0;
}

.header_area .main_header_area .container {
    max-width: 90%;
    transition: all 0.3s;
}

.header_area.sticky .main_header_area .container {
    max-width: 80%;
    transition: all 0.3s;
}

.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: #2B3047;
}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {
    color: #2B3047;
}

.nav-dropdown>li {
    text-align: center;
}

.me_tp_features {
    display: none;
}

.nav-header {
    position: absolute;
    top: 50%;
    z-index: 98999999;
    transform: translate(0, -50%);
    transition: all 0.5s;
}

.sticky .nav-header {
    top: 70px;
    transition: all 0.5s;
}

.nav-header::before {
    content: "";
    display: block;
    width: 100%;
    height: 150px;
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #9A9591;
    z-index: -1;
    border-radius: 0;
    opacity: 1;
    border-radius: 0 0 20px 20px;
    transition: all 0.3s;
}

.pageIndex .nav-header::before {
    top: -100px;
    opacity: 0;
    transition: all 0.3s;
    transition-delay: 0.5s;
}


.sticky .nav-header::before {
    top: 50%;
    opacity: 1;
    transition: all 0.3s;
    transition-delay: 0.5s;
}

.nav-header::after {}

.nav-header:hover:after {
    animation-play-state: paused;
    transition: all 0.3s;
}

.nav-header:hover:before {
    background-color: #9A9591;
    transition: all 0.3s;
}





@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}












.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    padding: 0;
    top: 0;
    background: transparent;
    transition: all 0.7s;
}

.header_area.sticky {
    top: 0px;
    background: transparent;
    transition: all 0.7s;
}

.main_header_area {
    position: relative;
    background: transparent;
}

.header_area .main_header_area::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #303030ea, #00000000);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.85s cubic-bezier(0.68, 0, 0.265, 1.55);
}

.header_area.sticky .main_header_area::before {
    height: 100%;
    top: 0;
    background: #F3F2ED;
    transition: all 0.85s cubic-bezier(0.68, 0.1, 0.265, 1);
}

.stellarnav li.has-sub>a:after {
    display: none;
}








.stellarnav>ul>li>a {
    padding: 0px 15px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    margin: 0 15px;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
}


.pageIndex .stellarnav>ul>li>a {
    color: #fff;
}


.sticky .stellarnav>ul>li>a {
    color: #464646;
    transition: all 0.5s;
}

.stellarnav>ul>li>a b {
    font-weight: 500;
    transition: all 0.5s;
}

.stellarnav>ul>li>a b:nth-of-type(2) {
    color: #fff;
    transition: all 0.5s;
}

.stellarnav>ul>li>a:hover {
    color: #fff;
    transition: all 0.5s;
}


.header_area .navigation {
    display: flex;
    width: 100%;
    position: relative;
    padding: 50px 0;
    opacity: 1;
    transition: all 0.3s;
    justify-content: flex-end;
}

.header_area.sticky .navigation {
    padding: 15px 0;
    opacity: 1;
    transition: all 0.5s;
    transition-delay: 0.5s;
}


@media screen and (max-width: 1024px) {
    .header_area .navigation {
        padding: 30px 0;
    }

    .header_area.sticky .navigation {
        padding: 20px 0;
    }

    .pageIndex .header_area .main_header_area::before {}

    .pageIndex .header_area.sticky .main_header_area::before {
        top: 0;
    }
}

@media screen and (max-width: 768px) {
    .header_area .main_header_area .container {
        max-width: 90%;
    }

    .header_area.sticky .main_header_area .container {
        max-width: 90%;
    }

}









/*下拉*/
.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: #2B3047;
    ;
    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 15px;
    display: block;
    color: #000;
    background-color: transparent;
    transition: all 0.3s;
}

.stellarnav li li a:hover {
    color: #fff;
    background-color: #494949;
    transition: all 0.3s;
}

.stellarnav>ul>li>a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    transform: scale(0, 1);
    background-color: #9A9591;
    opacity: 0;
    z-index: -1;
    transform-origin: 50% 0;
    transition: all 0.3s;
}

.stellarnav>ul>li>a:hover::before {
    transform: scale(1, 1);
    opacity: 1;
    transition: all 0.5s;
}






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO設定*/
.header_area .nav-brand {
    display: inline-block;
    width: 100px;
    transition: all 0.5s;
}

.header_area.sticky .nav-brand {
    width: 110px;
    transition: all 0.5s;
}

.header_area .nav-brand img {
    width: 100%;
    max-width: 100%;
    transition: all 0.3s;
}

.header_area.sticky .nav-brand img {
    transition: all 0.3s;
}

.footer_logo img {
    width: 100%;
    filter: brightness(0.1);
}

.footer_logo {
    width: 200px;
}



@media screen and (max-width: 1440px) {
    .main_header_area .container {
        max-width: 90%;
    }

    .header_area.sticky .main_header_area .container {
        max-width: 90%;
    }

    .stellarnav>ul>li>a {
        padding: 0px 5px;
        margin: 0 5px;
    }
}

@media screen and (max-width: 1024px) {

    .header_area .main_header_area::before {
        content: "";
    }

    .stellarnav ul {
        text-align: right;
    }

    .stellarnav>ul>li.has-sub>a {
        padding-right: 0;
    }

    .stellarnav>ul>li>a {
        padding: 0;
    }
}

@media screen and (max-width: 768px) {
    .nav-header {
        position: absolute;
        top: 10px;
        left: 50%;
        z-index: 0;
        transform: translate(-50%, 0%);
        transition: all 0.5s;
    }

    .header_area .main_header_area::before {
        display: none;
    }

    .nav-brand-m {
        display: block;
        text-align: left;
        padding: 15px 10px;
    }

    .nav-brand-m img {
        max-width: 200px;
        width: 100%;
    }

    .stellarnav.mobile {
        top: 9px;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #fff;
        transition: all 0.3s;
    }

    .stellarnav .menu-toggle:after {
        color: #fff;
        transition: all 0.3s;
    }

    .sticky .stellarnav .menu-toggle span.bars span {
        background: #9A9591;
        transition: all 0.3s;
    }

    .sticky .stellarnav .menu-toggle:after {
        color: #9A9591;
        transition: all 0.3s;
    }

    .stellarnav.mobile>ul {
        border-top: 0;
    }

    .stellarnav>ul>li>a::before {
        display: none;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #494949;
        color: #fff;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav .icon-close::before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile>ul>li>a {
        color: #666;
        text-shadow: none;
        padding: 15px 10px;
    }

    .nav-brand {
        display: inline-block;
        width: 220px;
    }

    .header_area .nav-brand {
        width: 60px;
    }

    .header_area.sticky .nav-brand {
        width: 80px;
        transition: all 0.5s;
    }

    .nav-header::before {
        width: 70%;
        height: 100px;
    }

    .sticky .nav-header {
        top: 10px;
        opacity: 1;
        transition: all 0.5s;
    }

    .header_area .navigation {
        padding: 10px 0;
    }

    .pageIndex .header_area.sticky .main_header_area::before {
        display: none;
    }

    .header_area.sticky .navigation {
        padding: 0 0;
    }

    .header_area.sticky .stellarnav>ul {
        margin: 0;
        padding: 0;
        border: 0;
        text-align: right;
        transition: all 0.3s;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        display: inline-block;
        text-align: right;
        font-size: 12px;
        background: #494949;
        color: #fff;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav .icon-close:before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile>ul>li>a {
        padding: 25px 43px 25px 10px;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 0;
        position: absolute;
        top: 20px;
    }

    .stellarnav.mobile.left>ul {
        left: 0;
        padding: 0;
        border: 0;
        max-width: 320px;
    }

    .stellarnav.mobile li.open {
        background: transparent;
        padding: 0px;
    }

    .stellarnav li li:hover {
        background: inherit;
        border-radius: 0;
        color: inherit;
        transform: none;
        box-shadow: none;
        z-index: 100000;
        transition: all 0.3s;
    }

    .stellarnav li li:hover>a {
        color: inherit;
        transition: all 0.3s;
    }

    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0px;
    }

    .stellarnav.mobile li li.has-sub a {
        padding: 15px 43px 15px 10px;
    }

    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0;
    }

    .stellarnav.mobile li a {
        border-bottom: 0;
    }

    .stellarnav li li a {
        padding: 15px 15px;
        color: #666;
    }
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Footer*/



.pageIndex .footer_info {}

.pageIndex .copy {}







.footer {
    border-top: none !important;
    padding: 40px 0 0;
    background: #F3F2ED;
}

.footer .center {
    position: relative;
    max-width: 80%;
}

.copy {
    background: transparent;
    color: #494949;
    border: 0;
}

.center {
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
}

.copy a {
    color: #494949;
}

.footer_menu a {
    transition: all 0.3s;
}

.box_link {
    display: none;
}

.footer_info li p {
    width: calc(100% / 2 - 40px);
    color: #494949;
    margin: 10px 0;
    margin-right: 40px;
}

.footer_info li p.add {
    width: 100%;
}

.footer_info li p.mail {
    display: none;
}

.footer_info li p a {
    color: #494949;
}


.footer_info li p.tel:before {
    content: '手機(張瀚云)：';
}

.footer_info li p.tel2:before {
    content: '手機(張三丰)：';
}



.footer_info {
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.footer_info ul {
    display: flex;
    vertical-align: top;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    width: fit-content;
}

.footer_menu {
    border-bottom: none !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    display: none;
}

.footer_menu a {
    transition: all 0.3s;
    width: calc(100% / 3 - 20px);
    margin: 0 10px 10px 0;
    background: transparent;
    color: #fff;
    padding: 10px 20px;
    overflow: hidden;
    position: relative;
}

.footer_menu a:hover {
    background: transparent;
    color: #fff;
    transition: 0.3s all;
}

.footer_menu a::before {}

.footer_menu a:hover:before {
    transform: translateX(0%);
    transition: all .3s;
}

.footer_menu a:nth-child(1) {
    display: none;
}

.footer_info li:nth-child(2) {
    display: none;
    width: 60%;
}

.info_fix {}

.footer_info li:nth-child(1) {
    display: flex;
    flex-wrap: wrap;
}

.footer_info li:nth-child(1)::before {
    content: "CONTACT";
    display: block;
    width: 100%;
    color: #494949;
    border-bottom: 1px #494949 solid;
    padding-bottom: 20px;
    font-size: 20px;
    letter-spacing: 3px;
}


/* 浮動 */

.info_fix {
    width: auto;
    box-sizing: border-box;
    position: fixed;
    bottom: 70px;
    right: 0;
    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: 1;
    z-index: 1;
    animation-delay: 3.3s;
}

.info_fix:hover {
    width: auto;
    right: 0;
    transition: all 0.7s;
}

.info_fix_links {
    display: flex !important;
    background: #565656bf;
    width: 50px;
    padding-bottom: 0;
    border: 1px #A29080 solid;
    /* border-radius: 0px 0 0 10px; */
    overflow: hidden;
    justify-content: flex-end;
    flex-direction: column;
}

.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 {
    display: flex !important;
    background: #565656a1;
    width: 50px;
    padding-bottom: 0;
    border: 1px #fff solid;
    border-radius: 15px 0 0 15px;
    overflow: hidden;
}

.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_default.info_fix_phone,
.info_fix_default.info_fix_tel,
.info_fix_default.info_fix_mail {
    display: none;
}

.info_fix_default.info_fix_google {
    color: #fff;
    background-color: #eeb540;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 120px;
    align-items: center;
    align-content: center;
}

.info_fix_default.info_fix_google:hover {
    background-color: #ab822d;
}

.info_fix_links p {
    text-align: center;
    font-weight: 500;
    writing-mode: vertical-rl;
    font-size: 16px;
}


.info_fix_google img {
    width: 25px;
    margin-bottom: 5px;
}







#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_yt span::before {
    background-image: url(https://pic03.eapple.com.tw/mudao/footer-text-09.png);
    background-size: cover;
}

.info_fix_links a.info_fix_default.info_fix_tel,
.info_fix_links a.info_fix_default.info_fix_mail {
    display: none;
}














@media screen and (max-width: 1024px) {
    .footer_info ul {
        display: flex;
        vertical-align: top;
        justify-content: space-between;
        flex-direction: column;
    }

    .footer_info li:nth-child(2) {
        width: 100%;
    }

}

@media screen and (max-width: 768px) {
    .footer_info {
        padding: 0;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }

    .footer_info ul {
        display: flex;
        vertical-align: top;
        width: 100%;
        justify-content: space-between;
        flex-direction: column;
    }

}


@media screen and (max-width: 500px) {

    .footer_info li p {
        width: 100%;
    }

}






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    display: flex;
    width: 100%;
    background-repeat: no-repeat;
    padding: 0;
    height: 38.4vw;
    min-height: 300px;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    background-position: bottom;
    background-color: transparent;
    align-items: flex-start;
    align-content: flex-start;
    padding-left: 10%;
}

.banner h5 {
    font-family: 'Noto Serif TC', serif;
    font-size: var(--f50);
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 19px;
    text-wrap: nowrap;
}

.banner::after {
    content: "";
    display: block;
    font-size: var(--f16);
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
}

.banner.banA {
    display: none;
}

.banner.banB {
    display: none;
}



.banner.banC {
    background-image: url(https://pic03.eapple.com.tw/fatherpapa/banner-23.png);
}

.banner.banC::after {
    content: "CONTACT";
}





.banner.banD {}

.banner.banE {}



.banner.banF {
    background-image: url(https://pic03.eapple.com.tw/fatherpapa/banner-05.jpg);

}

.banner.banF::after {
    content: "Featured properties";
}


.banner.banblog {
    background-image: url(https://pic03.eapple.com.tw/fatherpapa/banner-06.jpg);

}

.banner.banblog::after {
    content: "Commercial district projects";
}

.article_b .banner.banblog {
    background-image: url(https://pic03.eapple.com.tw/fatherpapa/banner-07.jpg);

}

.article_b .banner.banblog::after {
    content: "Happily settling down";
}





.main_part {}

@media screen and (max-width: 768px) {
    .main_part {
        padding-top: 40px;
    }

    .banner::after {}
}

@media screen and (max-width: 500px) {

    .banner::after {}
}







/* 分業 */
.other_promotion {
    display: none;
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */


.product_page .main_part {
    width: 100%;
    max-width: 80%;
    margin: auto;
    padding: 60px 0;
}





/* 選單 */
.product-layer-two {
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-end;
    width: fit-content;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    top: 0px;
    box-shadow: 1px 1px 5px #00000040;
    justify-content: center;
}

.sidebarBtn .price {
    border-bottom: 5px solid #447884;
    letter-spacing: 1px;
}

.prod_tabs {
    width: 100%;
}

.product_main {}

.product_menu_list {
    width: 100%;
    margin-bottom: 30px;
}

.product-layer-two li {
    display: inline-block;
    padding: 0;
    position: relative;
    width: auto;
    height: fit-content;
    text-align: center;
    transition: all 0.5s;
    margin: 0 20px;
}

.product-layer-two li::before {}

.product-layer-two li:hover:before {
    bottom: inherit;
    top: 0;
    height: 100%;
    transition: all 0.5s;
}

.product-layer-two li a {
    color: #43453d;
    border: 0;
    padding: 15px 20px;
    background: transparent;
    text-wrap: nowrap;
    transition: all 0.3s;
}

.sidebarBtn .price span {
    color: #494949;
}

.sidebarBtn .price span.ori_price {
    color: #0067839f;
}

.product-layer-two li:hover>a {
    background: transparent;
    color: #494949;
}

.product_page .show_content,
.product_info_page .show_content {
    margin: auto;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.product-layer-two li li {
    width: 100%;
}

.page {
    color: #43453d;
    margin: 0;
}

.other_select_page .page {
    display: none;
}




.product-layer-two li.active>a {
    background: transparent;
    color: #9A9591;
    border: 0;
    border-bottom: 2px #9A9591 solid;
    font-weight: normal;
}

.products-list .price {
    padding: 0 5%;
}


/* 內容 */
.products-list .more {
    border: 1px solid #999 !important;
    color: #999;
    max-width: 100%;
    position: relative;
    margin: 20px auto 20px;
    transform: none;
    left: auto;
}

.products-list .item a:hover .more {
    background: #9A9591;
    border-color: transparent;
    color: #ffffff;
}

.products-list {
    width: 100%;
    max-width: 100%;
    padding: 0;
    grid-template-columns: repeat(4, 1fr);
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: none;
}

.products-list .item {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 0;
    margin: 0;
    transition: all 0.5s;
}

.products-list .item:hover {
    background: transparent;
    transition: all 0.5s;
}

.products-list .item a img {
    width: 100%;
    height: auto;
    max-width: 100%;
    transition: all 0.5s;
}

.products-list .item a:hover img {
    transform: scale(1.05);
    transition: all 0.5s;
}

.products-list .name {
    font-size: 16px;
    color: #43453d;
    height: fit-content;
    padding: 0;
    margin-top: 10px;
}

.products-list .pic {
    display: block;
    position: relative;
    text-align: center;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.5s;
}

.products-list .item a:hover .pic {
    transition: all 0.5s;
}

.products-list .price b {
    color: #0067839f;
}

.inquiry_a3 {
    background: #494949;
}

.products-list .price b.sp_price {
    color: #494949;
}

.product_info li .txt_box {
    color: #999;
}

/*內液*/
.product_info_page .main_part {
    width: 100%;
    max-width: 80%;
    margin: auto;
    padding: 50px 0px;
}

.lastPage {
    background: #494949;
}

.nextaction {
    background-color: #494949;
}

.lastaction {
    color: #fff;
    background-color: #494949;
}

.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 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-end;
    width: fit-content;
    position: relative;
    margin-bottom: 100px;
}

.product-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sidebarBtn {
    padding: 0%;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: 0;
    background: transparent;
}

.sidebarBtn h2 {
    color: #494949;
    font-size: 24px;
}

.product_info li {
    display: none;
}

.product_info li span {
    color: #43453d;
}

#bx-pager h6 {
    display: none;
}

ul.prod li h3.prod-thumb {
    background: transparent;
    color: #494949;
    padding: 0;
    text-align: left;
}

ul.prod li h3.prod-thumb::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #494949;
    margin: 10px 0;
}

ul.prod {
    list-style: none;
    display: block;
    width: 60%;
    margin: 0 auto;
}

ul.prod li .prod-panel {
    color: #43453d;
    text-align: left;
}

ul.prod li {
    margin-bottom: 40px;
    color: #43453d;
}

.toShare {
    border-top: 0;
}

.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover {
    background: #3d663d;
}

.products-list .item a {
    padding-bottom: 0;
}

/*  */
.half_box {
    width: 100%;
    float: left;
    padding-right: 0px;
}

ul.prod li span {
    color: #43453d;
}

.qaform .breakF {
    border: 1px #43453d solid;
    background: transparent;
    color: #43453d;
}

.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 #43453d solid !important;
    color: #43453d;
    transition: all 0.5s;
}

.productBtn:hover {
    background-color: #00000071;
    transition: all 0.5s;
}

.qaform {
    margin-top: 30px;
}


/*  */
.related_list {
    display: flex;
    justify-content: flex-start;
    margin-top: 60px;
}

.prod_related {
    background: #9A9591;
    padding: 25px 15px;
}

.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    color: #fff;
}

.related_list li a {
    display: block;
    padding: 0;
    background: transparent;
}

.related_list li a p {
    font-size: 15px;
    color: #fff;
    margin: 10px 0;
}

.related_list li {
    background: transparent;
    padding: 0;
    width: 20%;
    transition: all 0.5s;
}

.related_list li:hover {
    transform: scale(1.05);
    transition: all 0.5s;
}


@media screen and (max-width: 1024px) {
    .products-list {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media screen and (max-width: 768px) {

    .products-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .related_list li {
        width: 30%;
    }

    .product_info_page .product-layer-two {
        display: none;
    }
}



@media screen and (max-width: 500px) {
    .products-list {
        grid-template-columns: repeat(1, 1fr);
    }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.blog_back a.article_btn_back {
    background: #494949;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: #494949 !important;
}

.share_page .edit {
    text-align: justify;
    line-height: 180%;
}

.subbox_item a:before,
.subbox_item a:after {
    transition: 0.3s;
}

.blog_le .accordion>li {
    border-bottom: 1px #3f3f3f33 solid;
    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;
}

.subbox_item a:before {
    display: none;
}

/*文章分享變1排3個*/
.blog_page .main_part {
    max-width: 1200px;
}

.blog_subbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    grid-gap: 0;
}

.subbox_item {
    width: 100%;
    padding: 20px 0;
    margin: 0 10px;
}

@media screen and (max-width: 1440px) {
    .subbox_item {}

}

@media screen and (max-width: 1024px) {
    .subbox_item {}

}

@media screen and (max-width: 600px) {
    .subbox_item {
        width: 100%;
    }
}

/**/


/* 左邊欄位 */



.blog_box {
    min-height: 20vw;
    padding: 7px;
    display: flex;
    flex-wrap: wrap;
}

.blog_le {
    margin-right: 3%;
    width: 20%;
}

.blog_ri {
    width: calc(100% - 23%);
    padding: 0;
}

.blog_back {
    width: 100%;
}



h5.blog_le_t {
    display: none;
}

.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 {
    border: none;
    border-radius: 0;
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #fff !important;
    transition: all 0.3s;
}

.blog_le .accordion>li:hover .link i,
.blog_le .accordion>li.on_this_category .link i {
    color: #565656 !important;
}

.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;
    font-family: 'Klee One';
}

.submenu a:hover {
    background: #0000000d;
    color: #565656;
}

.submenu a:before {
    display: none;
}

.blog_le .accordion li i {
    position: absolute;
    top: 27px;
    right: 20px;
    font-size: 16px;
    color: #444;
    transition: all 0.4s ease;
}

.blog_le .accordion>li:hover.open {
    background-color: transparent !important;
}



/* 右邊欄位 */

.subbox_item a:after {
    display: none;
}

.subbox_item a {
    display: inline-block;
    position: relative;
    display: flex;
    flex-direction: row;
}

.blog_list_le {
    width: 30%;
    height: 0;
    padding-bottom: 20%;
    overflow: hidden;
    position: relative;
}

.blog_list_le::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #00000050;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s;
}

.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: 0;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.blog_list_ri p {
    margin-top: 30px;
}

.subbox_item::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #49494940;
    margin: 0;
}

.subbox_item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 0;
    height: 2px;
    background-color: #494949;
    transition: all 0.5s;
}

.subbox_item:hover:before {
    width: 100%;
    transition: all 0.5s;
}

.blog_list_ri h5 {
    color: #494949;
    font-size: 24px;
    font-weight: 500;
}

.subbox_item a img {
    transition: all 1s cubic-bezier(0.68, 0.55, 0.38, 0.99);
}

.subbox_item a:hover img {
    transform: translate(-50%, -50%) scale(1.1);
    transition: all 1s cubic-bezier(0.68, 0.55, 0.38, 0.99);
}

h4.blog_category_title {
    text-align: justify;
    color: #494949;
}

.blog_box_edit {
    line-height: 150%;
    color: #3f3f3f;
}

.blog_in_page .main_part {
    max-width: 80%;
}

.blog_list_ri em {
    position: absolute;
    right: 0;
    bottom: 0;
}








@media screen and (max-width: 768px) {
    .subbox_item a {}

    .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 {
        width: 50%;
        padding-bottom: 30%;
    }

    .blog_in_page .main_part {
        max-width: 75%;
    }

    .blog_ri {
        width: 100%;
    }

    .blog_page .show_content {
        max-width: 100%;
        flex-direction: column;
    }

    .blog_le {
        margin-right: 0%;
        width: 100%;
    }

    h4.blog_category_title {
        display: none;
    }

    .subbox_item {
        border-bottom: 0;
    }

    .blog_page .main_part {
        max-width: 100%;
    }
}


@media screen and (max-width: 500px) {
    .subbox_item a {
        flex-direction: column;
        align-items: center;
    }

    .blog_list_le {
        width: 90%;
        padding-bottom: 90%;
    }

    .blog_list_ri {
        padding-bottom: 60px;
    }
}






/* 第二文章管理 */




.article_a .subbox_item {
    width: calc(100% / 2 - 20px);
    padding: 20px 0;
    margin: 0 10px;
}

.article_a .subbox_item a {
    flex-direction: column;
}


.article_a .blog_list_le {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 0;
}


.article_a .blog_list_ri {
    padding-bottom: 40px;
}


@media screen and (max-width: 500px) {
    .article_a .subbox_item {
        width: 100%;
    }
}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part,
.album_class_page .main_part,
.album_info_page .main_part {
    max-width: 90%;
}

.show-list .item:hover .show_name {
    color: #75bf5b;
}

.show-list .show_pic {
    height: 30vh;
    max-height: 290px;
    padding-bottom: 0;
}

.show-list .show_pic img {
    display: inline-block;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 30vh;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}

/*次分類頁面*/
.other_album_choice li {
    background: #315468;
}

.other_subalbum li p {
    line-height: 220%;
}

.other_subalbum li a div {
    height: 30vh;
    max-height: 250px;
    overflow: hidden;
    position: relative;
}

.other_subalbum li a img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}

.other_subalbum li a div:after {
    content: "";
    position: absolute;
    background: rgb(0 0 0 / 30%);
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
    top: 50%;
    left: 50%;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.other_subalbum li a:hover div:after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}


/*照片頁*/
.pic-list .show_pic img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}

.other_album {
    display: none;
}



.pic-list {
    -moz-column-count: 3;
    -moz-column-gap: 10px;
    -webkit-column-count: 3;
    -webkit-column-gap: 10px;
    column-count: 3;
    column-gap: 10px;
    width: 100%;
    margin: 0 auto;
}

.pic-list .item {
    width: 100%;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 0;
    margin: 0;
}

.pic-list .show_pic {
    height: auto;
    padding: 0;
}

.pic-list .item img {
    max-width: 100%;
}


@media screen and (max-width: 600px) {

    /*照片頁*/
    .pic-list .item {
        width: 96%;
        margin: 10px 2%;
    }
}

/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他分頁*/
.promotion_title h2 {
    border-bottom: 2px solid #315468;
}

.promotion_title {
    display: none;
}



@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        display: none;
    }

    .footer.with_shopping_mode {
        padding: 30px 0 70px;
    }

    #to_top {
        bottom: 60px;
    }

    .nav-menu {
        margin: 0;
    }

    .nav-menu>li:not(.tp_links) {
        padding-right: 0;
    }

    .nav-dropdown>li {
        text-align: left;
    }

    .nav-dropdown>li>a {
        width: calc(100% - 45px);
    }

    /*手機版LOGO設定*/
    .footer_logo {
        margin-left: unset;
        margin: auto;
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    .footer_info li p {}

    .footer_info li:nth-child(1)::after {
        text-align: center;
    }
}

@media screen and (max-width: 600px) {

    /*手機板大圖*/
    /*
.swiper-slide img { display:none; }
.swiper-slide {    width: 100%;    height: 0;    padding-bottom: calc(100% / 3 * 4);}
.swiper-slide:nth-child(1) { background-image:url(https://pic03.eapple.com.tw/.../Banner-03.png) ; background-size:cover;   background-position: center;}
.swiper-slide:nth-child(2) { background-image:url(https://pic03.eapple.com.tw/.../Banner-04.png) ; background-size:cover;   background-position: center;}
*/

}



.contact_page .main_part {
    max-width: 100%;
    padding: 0px 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact_content {
    width: 80%;
    max-width: 80%;
    margin: auto;
    padding: 70px 90px;
    background-color: #fff;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-shadow: 1px 1px 5px #00000057;
    border: 2px solid #DEAC6A;
}

.contact_content>form {
    width: 90%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.blank_letter {
    font-family: 'Josefin Sans', 'sans-serif', '微軟正黑體';
    padding-top: 0;
    font-size: 26px;
    color: #2B3047;
    background-position: left bottom;
    background-repeat: no-repeat;
}



.contact_content .information_left {
    display: none;
}

.contact_content .information_right {
    width: auto;
    flex: 7;
    padding: 0;
}

.contact_le_map {
    display: none;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: none;
}

.contact_form li {
    display: flex;
    padding: 0;
    padding-left: 0;
    border-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0px;
    grid-gap: 0px;
}

.contact_form li .form__label {
    display: inline-block;
    width: auto;
    text-align: left;
    margin-left: 0;
    padding-right: 0;
    vertical-align: top;
    margin-bottom: 5px;
    background: transparent;
    font-weight: normal;
}

.contact_form li.last {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 0;
    margin-bottom: 0;
}

.TEL:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/fatherpapa/icon-03.png);
    width: 30px;
    height: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.MAIL:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/fatherpapa/icon-04.png);
    width: 30px;
    height: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ADD:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/fatherpapa/icon-05.png);
    width: 30px;
    height: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.list_before.info li {
    padding-left: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.list_before.info li:nth-last-child(1) {
    margin-bottom: 0px;
}

.TEL:before,
.TEL2:before,
.PHONE:before,
.FAX:before,
.TAXID:before,
.MAIL:before,
.ADD:before,
.ADD2:before {
    position: relative;
    display: block;
    width: 35px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: -1px;
    margin-right: 20px;
}

.contact_form li input.noborder {
    border: 0;
    background: #F4F4F4;
    height: 38px;
}

.contact_form li textarea.noborder {
    border: 0;
    background: #F4F4F4;
}

.contact_form {
    margin-top: 30px;
    margin-bottom: 0;
    font-size: 15px;
    color: #444;
}

.contact_form li.last cite {
    background: #2B3047;
    color: #fff;
}

.contact_form li:nth-last-child(2) {
    margin-bottom: 0;
}

.list_before li::before {
    position: relative;
}


@media screen and (max-width: 1440px) {
    .contact_content .information_left {
        margin-right: 13%;
    }
}

@media screen and (max-width: 1024px) {
    .contact_content>form {
        width: 90%;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .contact_content {
        padding: 30px;
    }
}

@media screen and (max-width: 768px) {
    .contact_content .information_left {
        margin-right: 0;
    }
}

@media screen and (max-width: 500px) {
    .blank_letter.i::after {
        word-break: break-word;
    }

    .contact_content {
        padding: 30px 10px;
    }


    .TEL:before,
    .TEL2:before,
    .PHONE:before,
    .FAX:before,
    .TAXID:before,
    .MAIL:before,
    .ADD:before,
    .ADD2:before {
        margin-right: 0;
    }

}