@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=Jacques+Francois&display=swap');

body {
    font-family: "Jacques Francois", "Noto Serif TC", sans-serif;
    font-weight: 400;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.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}
*/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*反白顏色*/
::-moz-selection {
    background-color: #444;
    color: #fff;
}

::selection {
    background-color: #444;
    color: #fff;
}


::-moz-selection {
    background-color: #b5a475;
    color: #fff;
}

::selection {
    background-color: #b5a475;
    color: #fff;
}

body {
    overflow: overlay;
}

&::-webkit-scrollbar {
    background: #fff;
    width: 7px;
}

&::-webkit-scrollbar-button {
    display: none;
    background: #fff;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #fff;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #251b1a;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}



/* .swiper-wrapper .swiper-slide::before {
    content: "";
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      background-image: url(https://pic03.eapple.com.tw/puchengdesign/bg-34.png);
      width: 100%;
      max-width: 100%;
      height: 100%;
      background-repeat: no-repeat;
      background-size: cover;
      z-index: 1;
      opacity: 1;
}
.swiper-wrapper .swiper-slide::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/puchengdesign/bg-33.png);
    width: 0%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    opacity: 0;
    animation: banner-left-right cubic-bezier(.165,.84,.44,1) 2.5s forwards;
    animation-delay: 2.8s;
}

.swiper-wrapper::before{
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/puchengdesign/bg-16.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    opacity: 0;
    animation: banner-down-up 2s linear forwards;
    animation-delay: 3.5s;
}

.swiper-wrapper::after{
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/puchengdesign/bg-15.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    opacity: 0;
    animation: banner-show 2s linear forwards;
    animation-delay: 1.5s;
} */

.pageIndex .swiper-banner::before {
    content: "";
    display: block;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    background-repeat: no-repeat;
    background-size: 13%;
    background-position: center;
    z-index: 2;
    opacity: 1;
    animation: banner-show-off 7.5s linear both;
    pointer-events: none;
}

.pageIndex .swiper-banner::after {
    content: "";
    display: block;
    width: 10vw;
    aspect-ratio: 81/175;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    background-image: url(https://pic03.eapple.com.tw/puchengdesign/logo-04.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    animation: logo-show 7.5s linear both;
    pointer-events: none;
    z-index: 99999999;
}



@keyframes logo-show {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}







@keyframes banner-show-off {
    0% {
        opacity: 1;
        background-color: #4f5e57;

    }

    50% {
        opacity: 1;
        background-color: #4f5e57;

    }

    75% {
        opacity: 1;
        background-color: transparent;
    }

    100% {
        opacity: 0;
        background-color: transparent;
    }
}



@media screen and (max-width: 768px) {
    .swiper-slide img {
        width: 200%;
        height: auto;
        position: relative;
        left: -50%;
    }

    .swiper-banner::before {
        background-size: 30%;
    }
}





/* 底下圈圈 */


.swiper-pagination-clickable .swiper-pagination-bullet {
    position: relative;
    height: 5px;
    width: 50px;
    z-index: 0;
    border-radius: 0;
    overflow: hidden;
}

.swiper-pagination-bullet {
    background: #ffffff73;
}

.swiper-pagination-clickable .swiper-pagination-bullet::after {
    content: "";
    display: block;
    width: 0%;
    height: 5px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.3s;
}

.swiper-pagination-clickable .swiper-pagination-bullet:nth-of-type(1) {
    border-radius: 2.5vw 0 0 2.5vw;
}

.swiper-pagination-clickable .swiper-pagination-bullet:nth-last-child(1) {
    border-radius: 0 2.5vw 2.5vw 0;
}


.swiper-pagination-clickable .swiper-pagination-bullet-active.swiper-pagination-bullet::after {
    width: 100%;
    transition: all 0.3s;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0;
}


.swiper-pagination-clickable .swiper-pagination-bullet:nth-child(1):after {
    left: auto;
    right: 0;
}

.swiper-pagination {
    left: 50%;
    position: absolute;
    bottom: 35px;
    margin: 0;
    z-index: 1;
}






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


#page {}




/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}

/*首頁+聯絡按鈕*/
.animated-arrow {
    background: #ADA17E;
}


/*預設解除背景輪播*/
#content_main {
    margin: 0;
    z-index: 0;
    overflow: visible;
    background: #253b2f;
}

.bannerindex {
    position: relative;
}

.swiper-banner {}

.swiper-slide img {
    height: auto;
}

@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }
}

#content {
    background-image: url(https://pic03.eapple.com.tw/puchengdesign/bg-04.jpg);
    background-position: center top;
    background-size: cover;
    background-repeat: repeat-y;
}




/* 首頁相簿 */



.module_i_album {
    padding: 150px 20px;
}



.i_album_list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}


.i_album_list li a p {
    width: 100%;
    height: 2em;
    position: absolute;
    background: transparent;
    top: 50%;
    transform: translate(0%, -50%);
    color: #fff;
    z-index: 2;
    transition: all 0.5s;
    font-weight: bold;
    font-size: 17px;
    letter-spacing: 0.15em;
}

.i_album_list li:hover p {
    height: 2em;
    opacity: 0;
    transition: all 0.5s;

}

.module_i_album .title_i_box {
    display: flex;
    margin-bottom: 30px;
    text-align: center;
    flex-direction: column;
    align-items: flex-start;
}

.module_i_album .title_i_box h4 {
    font-size: 40px;
    color: #ced3bd;
    font-weight: bold;
    text-transform: uppercase;
}

.module_i_album .title_i_box h6 {
    font-size: 130px;
    color: #b5a475;
    letter-spacing: 15px;
    font-weight: 500;
}

.module_i_album section {
    width: 100%;
    max-width: calc(100% / 12  *10);
}
.i_album_list li div{
    aspect-ratio: 16/9;
}

.i_album_list li div::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #253b2f70;
    z-index: 1;
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s;
}



.i_album_list li:hover div::before {
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s;

}


@media screen and (max-width: 768px) {
    .i_album_list {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media screen and (max-width: 500px) {
    .i_album_list {
        grid-template-columns: repeat(1, 1fr);
    }
}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*選單設定*/


.header_area {
    padding: 0px;
}

.header_area .main_header_area {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: all 0.5s;
}

.header_area.sticky .main_header_area {
    height: 0px;
    transition: all 0.5s;
}




.header_area .me_tp_features {
    display: block;
    position: fixed;
    top: 40px;
    right: 210px;
    margin-bottom: 0;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);

}

.header_area.sticky .me_tp_features {
    top: 20px;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


.header_area .stellarnav .menu-toggle,
.stellarnav .call-btn-mobile,
.stellarnav .location-btn-mobile {
    display: block;
    position: fixed;
    top: 83px;
    right: 3%;
    transition: all 0.5s;
    pointer-events: all;
}

.header_area.sticky .stellarnav .menu-toggle,
.stellarnav .call-btn-mobile,
.stellarnav .location-btn-mobile {
    top: 57px;
    transition: all 0.5s;
}







/* 漢堡 */

.stellarnav .menu-toggle {
    text-align: center;

}

.stellarnav .menu-toggle:after {
    display: none;
}

.stellarnav .menu-toggle span.bars {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stellarnav.desktop .menu-toggle span.bars span {
    display: block;
    position: relative;
    width: 40px;
    height: 2px;
    border-radius: 6px;
    background: #fff;
    margin: 0 auto 6px;
    left: 0;
    transition: 0.5s;
}



.header_area.sticky .stellarnav.desktop .menu-toggle span.bars span {
    transition: 0.5s;
}

.stellarnav.desktop.active .menu-toggle span.bars span {}


.stellarnav.desktop .menu-toggle span.bars span:nth-child(3) {
    width: 20px;
    margin: 0;
}

.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(1) {
    left: 0;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stellarnav.desktop .menu-toggle span.bars span:nth-child(2) {
    display: none;
    opacity: 1;
    transition: all 1s;
}

.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(3) {
    left: 0;
    width: 40px;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}




/* 漢堡關 */


.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(1) {
    left: 0;
    transition: all 1s;
}

.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(2) {
    opacity: 0;
    transition: all 1s;
}

.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(3) {
    left: 0;
    transition: all 1s;
}


.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(3) {
    width: 20px;
    margin: 0;
}

.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(1) {
    transition: all 1s;
}

.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(3) {
    width: 40px;
    transition: all 0.3s;
}










/* 未開啟 */

.stellarnav.desktop>ul {
    display: none !important;
    margin: 0;
    padding: 0;
    text-align: center;
    background: transparent;
    position: relative;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: -5;
    transition: all 0.3s;
}

.stellarnav.desktop {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    pointer-events: none;
    transition: 1s;
}

.stellarnav.desktop::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 1s;
}


/* 開啟 */
.stellarnav.desktop.active>ul {
    display: flex !important;
    transition: all 0.3s;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-end;
    pointer-events: all;
    width: 30%;
    height: 100%;
    background: transparent;
    padding: 5% 5%;
    padding-top: 130px;
    border-radius: 0 0 0 30px;
}

.stellarnav.desktop.active>ul::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 590px;
    background-color: #000000bf;
    animation: nav-left 0.5s forwards;
}

.stellarnav.desktop.active {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-content: flex-end;
}

.stellarnav.desktop.active::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #0000001a;
    border-radius: 0;
    /* backdrop-filter: blur(5px); */
    opacity: 1;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}


@keyframes nav-left {
    0% {
        left: 590px;
    }

    100% {
        left: 0;
    }

}






@keyframes line-up {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}




/* BAR */


/* 購物籃 */
.tp_links {
    display: none;
}

.box_search input[type=text] {
    display: none;
    background: url(../images/search-icon.png) no-repeat 9px center #fff;
    border: 0;
    padding: 2px 0px 4px 42px;
    width: calc(20% - 42px);
    border-radius: 10em;
    transition: all .5s;
    outline: none;
    background-color: transparent;
    border-bottom: 1px #3F3F3F solid;
    border-radius: 0;
    transition: all 0.3s;
}

.box_search input[type=text]:hover {
    color: #3F3F3F;
    transition: all 0.3s;
}

.box_search input[type=text]:focus {
    color: #3F3F3F;
    transition: all 0.3s;
}

.shop_search_btn {
    display: none;
    background: #3F3F3F;
    color: #fff;
    font-size: 13px;
    border: none;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 4px 15px;
    cursor: pointer;
}

.box_search {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 60%;
    margin-bottom: 0;
    margin-right: 30px;
}

.me_tp_features a {
    margin: 0 0;
}

.me_tp_features a.tp_btn_cart {
    margin-right: 20px;
}

.me_tp_features a.tp_btn_cart span {
    display: none;
}

.me_tp_features a.tp_btn_notice span {
    display: none;
}










/* 選項 */
.stellarnav>ul>li>a {
    margin: 0 20px;
    padding-left: 20px;
    color: #e0dfda;
    display: flex;
    text-transform: uppercase;
    position: relative;
    font-size: 16px;
    line-height: 20px;
    height: auto;
    margin: 15px 5px;
    overflow: visible;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    opacity: 1;
    flex-direction: row;
    flex-wrap: nowrap;
}

.stellarnav>ul>li>a:hover {
    padding-left: 25px;
    transition: all 0.3s;
}

.stellarnav li.has-sub>a:after {
    display: none;
}

.stellarnav>ul>li>a b {
    display: inline;
    line-height: 15px;
    height: 20px;
}

.stellarnav>ul>li>a b:nth-child(1) {
    margin-right: 20px;
    font-weight: bold;
}

.stellarnav>ul>li>a b:nth-child(2) {
    font-size: 12px;
    color: #e0dfdab5;
    word-break: keep-all;
}

.stellarnav li {
    opacity: 1;
    width: 100%;
}

.stellarnav li::before {
    /* content: ""; */
    display: block;
    width: 0%;
    height: 1px;
    margin: 25px 0;
    background-color: #43453D;
    animation: line-left-right 1s forwards linear;
}

.navigation {
    width: 100%;
    position: relative;
    padding: 0;
}

.stellarnav>ul>li>a:hover b {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
}











/* 選單線 延遲 */


.stellarnav li:nth-child(3) {
    animation-delay: 0.3s;
}

.stellarnav li:nth-child(4) {
    animation-delay: 0.4s;
}

.stellarnav li:nth-child(5) {
    animation-delay: 0.5s;
}

.stellarnav li:nth-child(6) {
    animation-delay: 0.6s;
}

.stellarnav li:nth-child(7) {
    animation-delay: 0.7s;
}

.stellarnav li:nth-child(8) {
    animation-delay: 0.8s;
}




@keyframes line-left-right {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}




/* 字 動畫 */



.stellarnav>ul>li {
    opacity: 0;
    animation: up 1.5s forwards;
    animation-delay: 0.2s;
}


/* .stellarnav > ul > li:nth-child(2) {
    animation: up 1s forwards;
    animation-delay: 0.5s;
}
.stellarnav > ul > li:nth-child(3) {
    animation: up 1s forwards;
    animation-delay: 1s;
}
.stellarnav > ul > li:nth-child(4) {
    animation: up 1s forwards;
    animation-delay: 1.5s;
}
.stellarnav > ul > li:nth-child(5) {
    animation: up 1s forwards;
    animation-delay: 2s;
}
.stellarnav > ul > li:nth-child(6) {
    animation: up 1s forwards;
    animation-delay: 2.5s;
}
.stellarnav > ul > li:nth-child(7) {
    animation: up 1s forwards;
    animation-delay: 3s;
}
.stellarnav > ul > li:nth-child(8) {
    animation: up 1s forwards;
    animation-delay: 3.5s;
} */

/* 下拉 */


@media screen and (min-width: 768px) {
    .stellarnav ul ul {
        display: none !important;
    }
}







/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO設定*/





@keyframes show-logo {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes show-line {
    0% {
        right: 100%;
        opacity: 0;
    }

    100% {
        right: 0;
        opacity: 1;
    }
}






.nav-header {
    position: fixed;
    z-index: 123;
    top: 57px;
    left: 5%;
    opacity: 0;
}



.footer_logo img {
    width: 100%;
}

.footer_logo {
    vertical-align: top;
    width: 270px;
    margin: 0;
    display: none;
}

.nav-brand {
    display: inline-block;
    width: 160px;
}

.footer_info ul {
    display: flex;
    vertical-align: top;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    flex-direction: column;
    align-items: center;
}

.nav-brand img {
    position: relative;
    top: 0;
    max-width: 100%;
    opacity: 1;
    transition: all 0.5s;
}

.pageIndex .nav-brand img {}


@media screen and (max-width: 1024px) {
    .nav-brand {
        display: block;
        width: 100px;
        margin: 0 auto;
    }

    .nav-header {
        position: relative;
        text-align: center;
    }

    .nav-brand img {
        position: relative;
        max-width: 100%;
        z-index: 100000;
        transition: all 0.3s;
    }

    .header_area.sticky a.nav-brand::before {
        width: 100%;
        transition: all 0.3s;
    }

    .stellarnav>ul>li>a {}

    .nav-header {
        opacity: 1;
        top: 37px;
        left: 0;
        z-index: -5;
    }

    .stellarnav.desktop.active>ul {
        padding: 5% 1%;
    }

}











@media screen and (max-width: 768px) {
    .nav-brand-m {
        display: block;
        text-align: left;
        padding: 15px 10px;
    }

    .nav-brand-m img {
        max-width: 200px;
        width: 100%;
    }

    .nav-brand {
        display: inline-block;
        width: 130px;
    }

    .header_area.sticky a.nav-brand::before {
        width: 160%;
    }

    .header_area a.nav-brand::before {
        display: none;
    }

    .header_area.sticky a.nav-brand::before {
        display: none;
    }

    .nav-header {
        z-index: 0;
        top: -13px;
    }

    .header_area .stellarnav .menu-toggle,
    .stellarnav .call-btn-mobile,
    .stellarnav .location-btn-mobile {
        top: 20px;
    }

    .header_area.sticky .stellarnav .menu-toggle,
    .stellarnav .call-btn-mobile,
    .stellarnav .location-btn-mobile {
        top: 17px;
        transition: all 0.5s;
    }

    .pageIndex .stellarnav .menu-toggle span.bars span {
        background: #fff;
        transition: all 0.5s;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #43453D;
    }

    .sticky .stellarnav .menu-toggle span.bars span {
        background: #43453D;
        transition: all 0.5s;
    }

    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        border: none;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #43453D;
        color: #fff;
    }

    .stellarnav .icon-close:after,
    .stellarnav .icon-close::before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        top: -2px;
        margin: 0;
    }

    .stellarnav.mobile ul {
        background: #fff;
    }

    .stellarnav.mobile li.open {
        background: #fff;
        padding: 3px;
    }

    .stellarnav li a {
        padding: 15px 10px;
        color: #43453D;
    }

    .stellarnav li li {
        display: block;
        margin-bottom: 0;
        border: 0;
    }

    .pageIndex .nav-brand img {
        filter: contrast(0) brightness(0);
    }

    .nav-brand img {
        filter: contrast(0) brightness(0);
    }

    .header_area.sticky .nav-brand img {
        top: 0;
        opacity: 1;
    }

    .stellarnav.mobile>ul>li>a {
        display: flex;
        align-items: center;
    }
}


@keyframes up {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}




/*開場NAV */
.nav-header {
    opacity: 1;
    top: 37px;
}

.pageIndex .nav-header {
    opacity: 0;
    animation: banner-nav-logo 1s forwards;
    animation-delay: 7s;
}

@keyframes banner-nav-logo {
    0% {
        top: 87px;
        opacity: 0;
    }

    100% {
        top: 20px;
        opacity: 1;
    }
}


.pageIndex .stellarnav.desktop .menu-toggle {
    opacity: 0;
    animation: banner-navbar 1s forwards;
    animation-delay: 7s;
}

.stellarnav.desktop .menu-toggle {
    opacity: 1;
    top: 57px;
}



@keyframes banner-navbar {
    0% {
        top: 97px;
        opacity: 0;
    }

    100% {
        top: 27px;
        opacity: 1;
    }
}
















/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Footer*/
.footer {
    border-top: none !important;
    padding: 0;
    height: auto;
    opacity: 1;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background: #0f1713;
    z-index: 1;
}

.pageIndex .footer {
    opacity: 0;
    animation: footer-text forwards 1s;
    animation-delay: 2.6s;
}

.footer_menu {
    border-bottom: none !important;
    display: flex;
    justify-content: center;
}

.copy {
    background: transparent;
    color: #fff;
    border: none;
    margin-top: 0;
    border-top: 1px #ffffff54 solid;
    padding: 10px 0;
}

.copy a {
    color: #fff;
}

.footer_menu a:nth-child(1) {
    display: none;
}

.footer_menu a:hover {
    background: #02642F;
}

.footer_menu a {
    transition: all 0.3s;
}

.box_link {
    display: none;
}

.footer_info li p {
    width: auto;
    color: #fff;
}

.footer_info li p a {
    color: #fff;
}

.footer_menu a {
    display: inline-block;
    padding: 5px 11px;
    border: 0;
    margin: 0 5px;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
    background: transparent;
}

.footer_menu a:hover {
    background: #fff;
    color: #000;
}

.footer_info {
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 0;
    justify-content: center;
}


.center {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
}

.footer_info li:nth-child(1) {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    text-align: left;
    width: 100%;
    gap: 3%;
}

.footer_info li:nth-child(2) {
    width: 100%;
}

.footer_info li:nth-child(2)::before {
    /* content: ""; */
    display: block;
    width: 100%;
    height: 1px;
    background-color: #494949;
}



.footer_info li p.add {}

.footer_info li p.add2 {}


/* 浮動 */

.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 both 1s;
    opacity: 1;
    z-index: 1;
    animation-delay: 7s;
}

.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.info_fix_mail,
.info_fix_links a.info_fix_phone {
    display: none;
}








.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: visible;
}

.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_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: initial;
    font-size: 16px;
}


.info_fix_google img {
    width: 25px;
    margin-bottom: 5px;
}






@keyframes footer-text {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}


@media screen and (max-width: 1440px) {
    .footer_info ul {
        flex-direction: column-reverse;
    }

    .footer_info li:nth-child(2) {
        margin-right: 0%;
        margin-bottom: 20px;
    }

    .footer_info li p {
        width: auto;
        min-width: 100%;
    }

    .footer_info li:nth-child(1) {
        justify-content: center;
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .footer_info ul {
        width: 100%;
        text-align: center;
    }

    .footer_info li:nth-child(1) {
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .footer_menu {
        border-bottom: none !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

}



@media screen and (max-width: 768px) {
    .footer_menu a {
        display: inline-block;
        padding: 5px 11px;
        border: 0;
        margin: 10px 5px;
        font-size: 14px;
        line-height: 100%;
        color: #fff;
        background: transparent;
        border-bottom: 1px #fff solid;
        width: 43%;
    }

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/

.banner {
    background: transparent;
    display: flex;
    height: 100vh;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 10vh calc(100% / 12 * 1);
    position: relative;
}

.banner::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.banner h5 {
    display: flex;
    font-size: 55px;
    color: #fff;
    font-weight: bold;
    z-index: 2;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 60%;
    left: 12%;
    letter-spacing: 10px;
}


.banner h5::after {
    content: "Interior Design｜Interior Renovation｜Commercial Space Design\A System Cabinet Design｜Old House Renovation｜Presale Unit Alteration\A\AModern Style｜Wabi-Sabi Style｜Luxury Lite Style｜Minimalist Style\A Changhua｜Taichung｜Nantou｜Miaoli｜Yunlin｜Chiayi\A";
    display: block;
    font-size: 12px;
    color: #ced3bd;
    white-space: break-spaces;
    text-align: left;
    font-weight: normal;
    margin-top: 10px;
    letter-spacing: 0;
}




.banner.banA {}

.banner.banB {
    display: none;
}


.banner.banE::after{
    background-image: url(https://pic03.eapple.com.tw/puchengdesign/banner-05.jpg);
}
.banner.banblog::after{
    background-image: url(https://pic03.eapple.com.tw/puchengdesign/banner-06.jpg);
}
.banner.banC::after{
    background-image: url(https://pic03.eapple.com.tw/puchengdesign/banner-07.jpg);
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */
.products-list .more {
    border: 1px solid #ADA17E !important;
    color: #ADA17E;
}

.products-list a:hover .more {
    background: #ADA17E;
    border-color: #ADA17E;
    color: #ffffff;
}


/*外層*/
.product-layer-two li a {
    color: #ADA17E;
    border: 1px solid #ADA17E;
    transition: all 0.3s;
}

.product-layer-two li:hover>a {
    background: #ADA17E;
    color: #fff;
}

.product-layer-two li.active>a {
    background: #ADA17E;
    color: #fff;
    font-weight: normal;
}

/*內層*/
.lastPage {
    background: #ADA17E;
}

.nextaction {
    background-color: #ADA17E;
}

.lastaction {
    color: #fff;
    background-color: #ADA17E;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.blog_back a.article_main_header_area_back {
    background: #02642F;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: transparent !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 {
    width: 100%;
    position: relative;
    text-align: center;
    transition: all 0.3s;
}

.blog_box_edit {
    line-height: 180%;
    text-align: justify;
}

h4.blog_category_title {
    text-align: justify;
    color: #fff;
    display: none;
}

.link a {
    width: 100%;
    display: block;
    padding: 15px 10px;
}

.accordion li .link {
    padding: 0;
}

.blog_page .main_part {
    width: 100%;
    max-width: 60%;
    margin: auto;
    padding: 0px;
}

.clearfix:before,
.clearfix:after {
    display: none;
}




/* 選單 */
.blog_box {
    min-height: 20vw;
    padding: 0px;
    display: flex;
    flex-direction: column;
}

.blog_le {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    /* padding: 0; */
}

h5.blog_le_t {
    display: none;
    font-size: 24px;
    font-weight: 500;
    color: #b5a475;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 80px;
    width: auto;
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
}

.blog_search {
    width: 90%;
    position: relative;
    margin-bottom: 60px;
    display: flex;
    justify-content: flex-end;
}

.blog_search form {
    width: 20%;
    position: relative;
}

.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border-radius: 0;
    border: none;
    overflow: visible;
    width: 80%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    border-top: 1px #ced3bd solid;
}

.accordion li .link a {
    font-size: 20px;
    color: #ced3bd;
    font-weight: bold;
    padding: 5px 10px;
    transition: all 0.3s;
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #b5a475 !important;
    transition: all 0.3s;
}

.accordion li::before {
    content: "";
    display: block;
    background-color: #b5a475;
    height: 2px;
    width: 0%;
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
}

.accordion li:hover:before,
.blog_le .accordion>li.on_this_category::before {
    width: 95%;
    transition: all 0.5s;
}

.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #ced3bd;
    border: 0;
    border-radius: 0;
    border-bottom: 1px #ced3bd 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_search input[type=search]:focus {
    color: #ccc;
}


/*文章分享變1排3個*/
.blog_page .main_part {
    max-width: calc(100% / 12 * 10);
}

.blog_list_le,
.blog_list_ri {
    width: 100%;
}

.blog_list_ri {
    min-height: 140px;
}

.blog_subbox {
    grid-template-columns: repeat(3, 1fr);
}

.subbox_item {}

@media screen and (max-width: 1024px) {
    .subbox_item {
        width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .subbox_item {
        width: 100%;
    }
}


/* 內容 */
.blog_ri {
    width: 100%;
    padding: 0;
}

.subbox_item {
    position: relative;
    border-bottom: 0.3px #ced3bd31 solid;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.subbox_item::before,
.subbox_item::after {
    content: "";
    display: inline-block;
    width: 0.5px;
    background-color: #ced3bd31;
    height: 85%;
    vertical-align: middle;
    opacity: 1;
    transition: all 0.3s;
}

.subbox_item:hover:before,
.subbox_item:hover:after {
    opacity: 0;
    transition: all 0.3s;
}

.subbox_item a:before {
    right: 30px;
    opacity: 1;
    font-size: 152x;
}

.subbox_item a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: #b5a47561;
    opacity: 0;
    border: 1px #ddd solid;
    transition: all .5s;
}

.subbox_item a {
    display: flex;
    padding: 6%;
    flex-direction: column;
}

.blog_list_ri h5 {
    font-weight: bold;
    font-size: 20px;
    color: #b5a475;
    font-family: 'Noto Serif SC', 'Noto Serif TC';
}

.blog_list_ri p {
    color: #ced3bd;
    -webkit-line-clamp: 2;
}


.blog_box_edit .edit{
    color: #ced3bd;
    
}

.articel_mainPic {
    display: flex;
    justify-content: center;
}

.news_related {
    background: #18261e;
}
.blog_back a.article_btn_back {
    background: #b5a475;
}

.accordion li+li .link {
    border-top: 0;
}
.blog_back a.article_btn_next,.blog_back a.article_btn_prev {
    background: #aba187;
}
.news_related h6 span:before {
    color: #b5a475;
}
.news_related_list li a {
    background: transparent;
}
.news_related_list li a p {
    color: #ced3bd;
}

@media screen and (max-width: 1440px) {
    .articel_mainPic {
        display: flex;
        justify-content: center;
    }

}





@media screen and (max-width: 768px) {
    .blog_search form {
        width: 20%;
        position: relative;
    }

}



@media screen and (max-width: 500px) {
    .products-list .item {}

    .main_part {
        max-width: 90%;
    }

    .products-list .item a {
        padding: 10%;
    }
}


/* 相簿 */





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part,
.album_class_page .main_part,
.album_info_page .main_part {
    max-width: 1400px;
    padding: 0px 0;
}






.show-list .item:hover .show_name {
    color: #fff;
    opacity: 0;
    transition: 0.3s;
}

.show-list .show_pic {
    aspect-ratio: 16/9;
}

.show-list .show_pic img {
    display: inline-block;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: auto;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    filter: grayscale(0.5) brightness(0.5);
    transition: all 0.3s;
}

.show-list a:hover .show_pic img {
    filter: grayscale(0) brightness(1);
    transition: all 0.3s;
}

.show-list .item:hover .show_pic img {
    transform: scale(1.05);
    transition: all 1s;
}

.show-list {
    display: flex;
}

.clearfix:before,
.clearfix:after {
    display: none;
}

.show-list .show_name {
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.15em;
    margin-top: 0;
    overflow: hidden;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 1;
    font-weight: 500;
    z-index: 3;
    transform: translate(-50%, 0);
    text-align: center;
    margin-top: 10px;
    transition: all 0.3s;
}


.overlay {
    background: rgba(0, 0, 0, 0.37);
    opacity: 0.3;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 2;
    transition: all .4s 100ms cubic-bezier(.42, 0, .58, 1);
}

.show-list .item:hover .overlay {
    opacity: 0;
    transform: scale(1);
    transition: all .4s 100ms cubic-bezier(.42, 0, .58, 1);
}








/*次分類頁面*/
.other_album_choice li {
    background: transparent;
    border-radius: 0;
}

.other_album_choice li a {
    color: #ced3bd;
}

.other_subalbum li p {
    line-height: 220%;
    text-align: center;
}

.other_subalbum li a div {
    height: 0;
    max-height: 100%;
    overflow: hidden;
    position: relative;
    display: none;
}

.other_subalbum li a img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: auto;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    filter: grayscale(0);
    -webkit-object-fit: cover;
    transition: all .4s;
}

.other_subalbum li a:hover img {
    transform: scale(1.02);
    transition: all 0.5s;
}

.other_subalbum li a:hover div:after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: all .4s;
}

.album_fixed_title {
    display: none;
}


.album_info_page .show_content {
    padding: 110px 20px 50px;
}







/*照片頁*/


.pic-list .show_pic img {}

.show-list .item {}

.album_page .show_content {
    margin: auto;
    padding: 0;
    max-width: 100%;
}

.subalbum-menu {
    margin: 30px 0;
    padding: 0;
}

.subalbum-menu h2 {
    display: none;
}

.block {
    background: #494949;
}

.other_subalbum {
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.other_subalbum li {
    display: inline-block;
    background: #fff;
    width: calc(100% / 4 - 20px);
    margin: 10px;
    border: none !important;
    position: relative;
}

.page strong,
.page a {
    display: inline-block;
    min-width: 29px;
    height: 29px;
    text-align: center;
    line-height: 29px;
    border: 0;
    border-radius: 0;
    padding: 0 10px;
    margin: 0 10px;
}

.album_fixed_title {
    display: none;
}

.other_subalbum li a {
    position: relative;
}

.album_descrip {
    color: #b5a475;
    font-size: 20px;
    line-height: 1.4;
    font-weight: bold;
}

.pic-list .item h6 {
    line-height: 220%;
    text-align: left;
    color: #D1D1D1;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 1;
    transition: all 0.3s;
}

.pic-list {
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
}


.other_subalbum li p {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #b5a475;
    position: relative;
    letter-spacing: 4px;
    margin-top: 10px;
}

.other_subalbum li:hover p {
    transition: all 0.3s;
}

.pic-list .item:hover h6 {
    opacity: 1;
    transition: all 0.3s;
}

.pic-list .item {
    position: relative;
}

.album_info_page .pic-list .show_pic {
    padding-bottom: 0;
}



.show-list.other_subalbum .item {
    width: 100%;
    background: transparent;
}




.page {
    margin: 0;
    padding: 10px 0;
}



.pic-list {
    display: block;
    grid-template-columns: unset;
    grid-gap: unset;
}

ul.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 .show_pic {
    aspect-ratio: auto;
}


.pic-list .item a {}

.pic-list .item h6 {
    padding: 0;
    display: none;
}

.pic-list .show_pic {
    aspect-ratio: auto;
}

.pic-list .item a {
    margin: 0 auto 10px;
}

@media screen and (max-width: 600px) {
    .show-list {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
}




@media screen and (max-width: 1024px) {
    .other_subalbum {
        grid-template-columns: repeat(2, 1fr);
    }
}






@media screen and (max-width: 768px) {

    /*照片頁*/
    .pic-list .item {
        width: 96%;
        margin: 10px 2%;
    }

    .album_page .show_content,
    .album_class_page .show_content {
        margin: auto;
        padding: 0;
        max-width: 100%;
    }

    .show-list {
        flex-wrap: wrap;
    }


    .show-list .item:hover .show_name {
        opacity: 1;
    }

    .show-list.other_subalbum .item {
        width: 100%;
    }

    .pic-list {
        grid-template-columns: unset;
    }

    .other_subalbum {
        grid-template-columns: repeat(1, 1fr);
    }
}


@media screen and (max-width: 500px) {
    .other_subalbum li {
        width: 100%;
    }

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他分頁*/
.promotion_title h2 {
    border-bottom: 2px solid #ADA17E;
}

.promotion_title {
    border-bottom: 1px solid #ADA17E;
}



@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        display: block;
    }

    .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;
    }

}

@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 {
    width: 100%;
    max-width: 80%;
    margin: auto;
    padding: 100px 20px;
}

.blank_letter {
    padding-top: 0;
    font-size: 24px;
    padding: 10px 0;
    color: #b5a475;
    letter-spacing: 10px;
    background-position: left bottom;
    background-repeat: no-repeat;
    font-family: "Jacques Francois", "Noto Serif TC", sans-serif;
    border-bottom: 1px #54524D solid;
}






.list_before.info li {
    padding-left: 40px;
    color: #ced3bd;
}

.contact_form li .form__label {
    color: #ced3bd;
    width: 130px;
}

.contact_le_map a {
    background: #cc3e3e;
    color: #fff;
}

.contact_form li.last cite {
    background: #b5a475;
    color: #fff;
    width: 220px;
}

.contact_form li.last input[type="submit"] {
    color: #fff;
}

.contact_content .information_left {
    width: 40%;
    margin-bottom: 0;
    margin-right: 10%;
}

.contact_content .information_right {
    width: 50%;
    padding-left: 0px;
}

.contact_le_nomap {
    height: 310px;
    transition: all .5s;
}

.contact_le_nomap:hover {
    filter: grayscale(0);
    transition: all .5s;
}


.contact_form li input.noborder {
    border: none;
    background: #00000024;
    color: #fff;
    transition: all 0.3s;
}

.contact_form li {
    margin-bottom: 0px;
    border-bottom: 1px solid #54524D3d;
    padding: 10px 0;
    grid-template-columns: 130px 1fr;
}

/* .contact_form li:nth-child(9) .form__label{
    width: 130px;
    margin-left: -100px;
}
.contact_form li:nth-child(9){
} */
.contact_form li textarea.noborder {
    background: #00000024;
    border: 1px #54524D solid;
    color: #fff;
    transition: all 0.3s;
}

.contact_content form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.form__insert input {
    margin: 0 10px;
    color: #54524D;
}

.contact_form li.last blockquote {
    display: inline-block;
    vertical-align: top;
    font-style: normal;
    padding: 7px;
    text-align: center;
    border: 1px #54524D solid;
    width: 150px;
}

.contact_content {
    margin: auto;
    padding: 0px 10px;
}


.list_before {
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.blank_letter.f .note {
    letter-spacing: 0;
}




@media screen and (max-width: 1024px) {
    .contact_content form {
        flex-direction: column;
    }

}

@media screen and (max-width: 768px) {
    .contact_form li.last cite {
        width: 160px;
    }

    .contact_content .information_left {
        width: 100%;
        margin-bottom: 0;
        margin-right: 0;
    }

    .contact_content .information_right {
        width: 100%;
        padding-left: 0px;
    }
}


@media screen and (max-width: 600px) {
    .contact_form li {
        grid-template-columns: 130px 1fr;
        padding-left: 0;
    }

    .contact_form li .form__label {
        background: transparent;
    }

    .contact_form li .form__label {
        color: #54524D;
        width: 130px;
        margin-left: 0px;
    }

    .contact_page .main_part {
        max-width: 80%;
        padding: 100px 0;
    }
}