@charset "utf-8";


@import url('https://fonts.googleapis.com/css2?family=Chiron+GoRound+TC:wght@200..900&display=swap');


*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
    font-family: "Chiron GoRound TC", sans-serif;
}

img {
    max-width: 100%;
}

/*卷軸設定↓*/
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    width: 7px;
    /*右側捲軸寬度*/
    height: 0px;
    /*下方捲軸高度*/
}

/* 軌道背景底色 */
::-webkit-scrollbar-track {
    background: #EBEDE8;
}

/* 滑桿顏色 */
::-webkit-scrollbar-thumb {
    background: #ab9d8e;
}

/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {
    background: #333;
}


/*new----------------------------------*/
.sb_marquee {
    display: none;
}

/*header*/
.nav-menu {
    margin: 0 0 0 0;
}

.nav-header {
    max-width: none;
    width: 30%;
    margin: 0 auto;
}

li.tp_links {
    display: none;
}

.header_area {
    padding: 0px 0;
    background: #ffffff00;
    position: fixed;
    animation: fade-in 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.me_tp_features {
    display: none;
}

.navigation {
    display: block;
    padding: 50px;
}

.nav-header {
    transition: 0.3s ease-in;
}

.header_area.sticky .nav-header {
    width: 25%;
}

@media screen and (max-width: 1440px) {
    .stellarnav>ul>li>a {
        padding: 0px 10px;
    }
}


/* = = = 大圖-分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = *
/*預設解除背景輪播*/
#content_main,
#content {
    margin: 0;
    background: #FFF;
    padding: 80px 0;
    background-repeat: repeat;
    padding: 0;
    min-height: 1000px;
}

.bannerindex {
    position: relative;
    /* height: 100%; */
    padding: 0;
}

.bannerindex .swiper-banner {
    position: static;
    margin: 0;
    height: 100%;
}

.bannerindex .swiper-banner .swiper-slide {
    height: 100%;
}

.bannerindex .swiper-banner .swiper-slide img,
.bannerindex .swiper-banner .swiper-slide-active img {
    opacity: unset !important;
    /* width: auto; */
    object-fit: contain;
    /* height: 100%; */
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.bannerindex .swiper-banner .swiper-slide img {
    height: 100%;
}


/* 首頁大圖結構統一，避免高度互相覆蓋 */
.bannerindex .swiper-banner,
.bannerindex .swiper-wrapper,
.bannerindex .swiper-slide {
    width: 100%;
    height: 100%;
}

.bannerindex .swiper-slide img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 大圖點點按鈕切換鈕 */
.bannerindex {
    --swiper-pagination-color: #fff;
}

.bannerindex .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.bannerindex .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 8px 4px;
    width: 15px;
    height: 5px;
    border-radius: 2px;
}

/* 大圖點點按鈕END */


/*====================================================
  Banner 陽光散景特效 (純CSS)
====================================================*/

.bannerindex{
    position:relative;
    overflow:hidden;
}

/* 大圖慢慢放大 */
.bannerindex .swiper-slide img{
    animation:bannerZoom 14s ease-in-out infinite alternate;
}

@keyframes bannerZoom{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.04);
    }
}

/* 右上角陽光 */
.bannerindex::before{
    content:"";
    position:absolute;
    top:-28%;
    right:-18%;
    width:72%;
    height:72%;
    z-index:3;
    pointer-events:none;

    background:radial-gradient(
        circle,
        rgba(255,250,220,.40) 0%,
        rgba(255,235,180,.18) 38%,
        rgba(255,235,180,0) 72%
    );

    animation:sunGlow 7s ease-in-out infinite alternate;
}

@keyframes sunGlow{

    from{
        opacity:.45;
        transform:scale(1);
    }

    to{
        opacity:.8;
        transform:scale(1.12);
    }

}

/* 漂浮光點 */
.bannerindex::after{

    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    z-index:4;
    opacity:.55;

    background:

    radial-gradient(circle,rgba(255,255,255,.42) 0 18px,transparent 22px)
    10% 80% / 520px 520px,

    radial-gradient(circle,rgba(255,245,210,.35) 0 12px,transparent 15px)
    28% 55% / 420px 420px,

    radial-gradient(circle,rgba(255,255,255,.26) 0 7px,transparent 10px)
    48% 72% / 300px 300px,

    radial-gradient(circle,rgba(255,240,180,.32) 0 14px,transparent 18px)
    70% 34% / 620px 620px,

    radial-gradient(circle,rgba(255,255,255,.18) 0 22px,transparent 28px)
    84% 82% / 760px 760px,

    radial-gradient(circle,rgba(255,245,210,.28) 0 9px,transparent 12px)
    94% 20% / 360px 360px;

    animation:
    floatDots 24s ease-in-out infinite alternate,
    dotsBreath 6s ease-in-out infinite alternate;

}

@keyframes floatDots{

0%{

background-position:

10% 80%,
28% 55%,
48% 72%,
70% 34%,
84% 82%,
94% 20%;

}

50%{

background-position:

30% 55%,
12% 35%,
62% 45%,
84% 18%,
60% 60%,
76% 10%;

}

100%{

background-position:

18% 70%,
40% 24%,
30% 48%,
92% 28%,
72% 68%,
86% 18%;

}

}

@keyframes dotsBreath{

from{
opacity:.35;
}

to{
opacity:.65;
}

}



/*大圖特效*/



.bannerindex {
    position: relative;
    z-index: 1;
    top: auto;
    left: auto;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    isolation: isolate;
}








/* 圖內層 */
.bannerindex .swiper-banner .swiper-slide:before,
.bannerindex .swiper-banner .swiper-slide:after {
    content: '';
    position: absolute;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    /* box-shadow: 0 0 25px rgb(0 0 0 / 40%); */
}

/*.bannerindex .swiper-banner .swiper-slide:before {
    top: 80%;
    left: 23%;
    width: 472px;
    height: 251px;
    background-position: left;
    padding-bottom: calc(100% / 2 * 0.18);
    background: url(https://pic03.eapple.com.tw/sheorderliness/bnA_txt01.png) no-repeat;
    background-size: contain;
}

.bannerindex .swiper-banner .swiper-slide:after {
    background: url(https://pic03.eapple.com.tw/sheorderliness/bnA_txt02.png) no-repeat;
    background-size: contain;
    background-repeat: no-repeat;
    top: 5%;
    left: 70%;
    width: 55%;
    height: 100% !important;
    background-position: left;
    padding-bottom: calc(100% / 2 * 0.18);
}*/


/* animation動畫 */
.bannerindex .swiper-banner .swiper-wrapper:before {}

.bannerindex .swiper-slide.swiper-slide-active::before {
    animation: Ntxtmove 1.5s cubic-bezier(1, 0.05, 0.7, 0.98) both;
}

.bannerindex .swiper-slide.swiper-slide-active::after {
    animation: Ntxtmove2 1.5s cubic-bezier(1, 0.05, 0.7, 0.98) both;
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before {
    animation: NtxtmoveB 1.5s cubic-bezier(1, 0.05, 0.7, 0.98) both;
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
    animation: NtxtmoveB2 1.5s cubic-bezier(1, 0.05, 0.7, 0.98) both;
}

@keyframes Ntxtmove {
    0% {
        opacity: 0;
        transform: translate(calc(-50% - 20px), -100%);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -100%);
    }
}

@keyframes Ntxtmove2 {
    0% {
        opacity: 0;
        transform: translate(calc(-50% + 20px), 0);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes NtxtmoveB {
    0% {
        opacity: 0;
        transform: translate(-20px, -100%);
    }

    100% {
        opacity: 1;
        transform: translate(0, -100%);
    }
}

@keyframes NtxtmoveB2 {
    0% {
        opacity: 0;
        transform: translate(20px, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}



@media screen and (min-width: 1400px) {}

@media screen and (max-width: 1200px) {}


@media screen and (max-width: 1024px) {
    .header_area.sticky .nav-header {
        width: 40%;
    }
}

@media screen and (max-width: 768px) {
    .bannerindex {
        position: relative;
        width: 100%;
        height: auto;
        padding: 0;
    }

    .bannerindex .swiper-banner {
        width: 100%;
        height: auto;
        aspect-ratio: 5 / 4;
        max-height: none;
    }

    .bannerindex .swiper-wrapper,
    .bannerindex .swiper-slide {
        height: 100%;
    }

    .bannerindex .swiper-slide img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .bannerindex .swiper-banner .swiper-slide:after {
        top: 27%;
    }

    .header_area.sticky .nav-header {
        width: 30%;
    }
}

@media screen and (max-width: 600px) {
    .header_area.sticky .nav-header {
        width: 55%;
    }
}



.bannerindex .swiper-banner .swiper-slide:nth-child(2):before {
    left: 90%;
    top: 95%;
    transform: translate(-50%, -100%);
}

.bannerindex .swiper-banner .swiper-slide:nth-child(2):after {
    display: none;
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before {
    animation: Ntxtmove 1.5s cubic-bezier(1, 0.05, 0.7, 0.98) both;
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
    animation: Ntxtmove2 1.5s cubic-bezier(1, 0.05, 0.7, 0.98) both;
}


@media screen and (max-width: 600px) {}



/*下拉選單*/
.stellarnav>ul>li>li>a {
    display: block;
    color: #343a40 !important;
}

.nav-dropdown>li>a:hover,
.nav-dropdown>li>a:focus,
.nav-dropdown>li>a:active {
    color: #343a40 !important;
}

.nav-dropdown>li>a:before,
.nav-dropdown>li>a:after {
    color: #343a40 !important;
}

.stellarnav li a {
    color: #ffffff;
}

.nav-dropdown {
    background: #ffffff;
}

.nav-dropdown>li {
    padding: 3px 0;
    border-bottom: 1px solid #c3c3c3;
}

.nav-dropdown>li>a {
    padding: 6px 20px;
    color: #343a40 !important;
}

.stellarnav li.has-sub>a:after {
    display: none;
}

.main_header_area .container {
    max-width: 90%;
}

.stellarnav ul ul {
    width: 200px;
    background: #ada17ea3;
}

.stellarnav li li {
    border: none;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: #c5a782 !important
}


/*特效*/



/*==================================
    主選單 Hover 腳印效果
==================================*/

.stellarnav>ul>li.has-sub>a{
    padding-right:30px;
}

.stellarnav>ul>li>a{
    position:relative;
    overflow:visible;
}

/* 腳印 */
.stellarnav>ul>li>a:before{
    content:"";
    position:absolute;

    width:24px;
    height:24px;

    background:url("https://pic03.eapple.com.tw/dog520520/top_icon.png") no-repeat center center;
    background-size:contain;

    left:50%;
    top:-12px;          /* ↓ 往下移，可改成 -10px、-8px */

    opacity:0;

    transform:translateX(-50%) translateY(-10px) scale(.6) rotate(-10deg);

    transition:
        opacity .25s ease,
        transform .45s cubic-bezier(.18,.89,.32,1.28);

    pointer-events:none;
}

/* Hover */
.stellarnav>ul>li:hover>a:before{
    opacity:1;
    transform:translateX(-50%) translateY(0) scale(1) rotate(0deg);
}


/*==================================
    底線動畫
==================================

.stellarnav>ul>li>a:after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-5px;

    width:0;
    height:2px;

    background:#536C77;

    transform:translateX(-50%);
    transition:all .35s ease;
}

.stellarnav>ul>li:hover>a:after{
    width:100%;
}


*/


/*第一層*/
.navigation {
    display: flex;
    flex-direction: row;
    padding: 10px 0;
    align-items: center;
}


.stellarnav>ul>li {
    width: 130px;
    text-align: center;
}

.stellarnav>ul>li>a {
    transition: all 0.3s;
    letter-spacing: 1px;
    color: #24405b;
    font-weight: 400;
    padding: 0px 20px;
    line-height: 43px;
}

.stellarnav>ul>li>a b {
    color: #fff;
}

.stellarnav>ul>li>a b:nth-child(2) {
    font-family: var(--SFontE3);
}


.stellarnav>ul>li>a:hover b {
    color: #fff;
}

.stellarnav li.has-sub>a:after {
    border-top: 6px solid #fff;
}

.stellarnav li.has-sub:hover>a:after {
    border-top: 6px solid #fff;
}


/*第二層*/
.stellarnav li li>a,
.stellarnav li li.has-sub>a {
    padding: 7px 5px;
    transition: all 0.3s;
    border-left: 1px solid transparent;
    color: #fff;
    font-family: var(--SFont);
}

.stellarnav li li:hover>a,
.stellarnav li li.has-sub:hover>a {
    color: #fff;
    padding-left: 10px;
    background: var(--SubColor);
}

.stellarnav ul ul {
    width: 180px;
    background: #8e6e457a;
}

.stellarnav li li {
    border: none;
}

/*浮動按鈕*/
.info_fix_links a {
    background: rgb(197 167 130);
}

.info_fix_links {
    display: block !important;
}

.info_fix>span {
    display: none;
}

.info_fix_links a:hover {
    background: #aa988d;
}

/*文章修改*/
.blog_page .main_part,
.blog_in_page .main_part {
    padding: 70px 20px;
}

.subbox_item a:before,
.subbox_item a:after {
    display: none;
}

.subbox_item a {
    display: block;
}

.blog_subbox {
    grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
}

.blog_le .accordion {
    border: none;
}

.news_related {
    display: none;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: #bab2a9 !important
}

.blog_back a.article_btn_back {
    background: #847e67;
}

.accordion li .link a {
    color: #a59b8e;
    font-size: 17px;
    font-weight: 400;
}

.module_i_projects .title_i_box h4,
.module_i_news .title_i_box h6,
.module_i_album .title_i_box h4 {
    display: none;
}

.i_prod_tit span,
.i_video_tit span,
.module_i_projects,
.title_i_box h6,
.module_i_album .title_i_box h6 {
    color: #000000;
    font-size: 34px;
    font-family: 'Playfair Display';
    font-weight: 400;
    font-family: "Noto Serif TC", serif;
}

.blog_le .accordion {
    border-radius: 5px;
}

.blog_in_page .path {
    margin-bottom: 50px;
}

.blog_in_page h4.blog_category_title {
    color: #333;
    margin-bottom: -10px;
    font-family: "Noto Serif TC", serif;
    font-weight: 400;
}

.blog_list_ri p {
    line-height: 150%;
}

.blog_list_ri h5 {
    font-weight: 400;
    color: #a58f85;
    margin-top: 10px;
}

.i_blog_le img {
    border-radius: 10%;
}

h4.blog_category_title {
    margin-bottom: 0px;
}

.promotion_title {
    display: none;
}

.other_promotion {
    display: none;
}

.other_select_page .page {
    display: none;
}

.i_blog_ri {
    margin-top: 15px;
}

.module_i_news li a:before {
    display: none;
}

/*footer*/
.box_link {
    display: none;
}

.footer_logo {
    margin: 20px;
    max-width: 345px;
}

.footer_info li p,
.footer_info li p a {
    color:#1c304d;
}

.footer {
    background-color: #f1ece8;
}

.footer_menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.footer_menu a {
    background: #c1926b;
    font-size: 15px;
    padding: 10px;
    border: none;
    letter-spacing: 1px;
    color: #ffffff;
}

.footer_menu a:first-child {
    display: none;
}

.footer_menu a:hover {
    background: #9c8e80;
}

.footer .center {
    max-width: 1600px;
}

.footer_menu a:hover .footer .center {
    text-align: center;
}

.footer_info {
    padding-right: 0px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.footer_info ul {
    display: flex;
    justify-content: space-around;
}

.copy {
    margin-top: 25px;
}

.copy,
.copy a {
    color: #e7e7e7;
    border-top: none;
    background:#1a304e;
}

.copy a:hover {
    color: #fffbf1;
}

.footer_info li:nth-child(1):before {
    content: "INFORMATION";
}

.footer_info li:nth-child(2):before {
    content: "RELATED LINK";
}

.footer_info li:before,
.box_link:before {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 45px;
    letter-spacing: 2px;
    color: #1c304d;
    font-family: "Noto Serif TC", serif;
}

/*相簿修改*/
.other_album {
    display: none;
}

.show-list .show_name {
    height: 26px;
    text-align: center;
    font-weight: 400;
    color: #696969;
    margin-top: 25px;
}

.show-list .item:hover .show_name {
    color: #7a6c63;
}

.subalbum-menu h2 {
    display: none;
}

.other_subalbum li {
    background: #ffffff00;
    letter-spacing: 1px;
}

.other_subalbum li a p {
    text-align: center;
    margin: 15px 0;
}

.overlay {
    background: rgb(255 255 255 / 29%);
}

.pageIndex .productsListBox,
.productsListBox.swiper {
    margin: 0px auto;
    padding: 60px 0 30px;
}

.prod_part,
.module_i_news {
    padding: 50px 20px;
    background-image: url(https://pic03.eapple.com.tw/sheorderliness/background.jpg);
}

/*文章修改*/

h5.blog_le_t {
    font-size: 14px;
}

h5.blog_le_t em {
    color: #c2aaa1;
    font-size: 32px;
    font-weight: 400;
    font-family: "Chiron GoRound TC", sans-serif;
}

.blog_search input[type=submit] {
    display: none;
}

.animated-arrow {
    background: #ab9d8e;
}

.module_i_album section,
.module_i_news section {
    max-width: 1600px;
}

.module_i_news li a:after {
    display: none;
}

.module_i_news .title_i_box h4 {
    font-size: 24px;
    color: #d8bdae;
    font-weight: 400;
    letter-spacing: 15px;
    margin-top: 35px;
}

.i_album_list {
    grid-template-columns: repeat(2, 1fr);
}

.i_album_list li a p {
    background: rgb(137 137 137 / 60%);
    color: #ffffff;
    height: 3em;
    backdrop-filter: blur(5px);
}

.i_blog_ri h5 {
    color: #c5a782;
    font-weight: 400;
    font-size: 22px;
}

.i_blog_ri p {
    font-size: 15px;
    color: #919090;
    line-height: 150%;
}

.module_i_news li a {
    display: block;
}

.module_i_news ul {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-gap: 40px;
}

.ProjSwiper li>a:after {
    background: rgb(0 0 0 / 0%);
}

.ProjSwiper li section h6 {
    font-size: 17px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 1px;
}

.ProjSwiper li section,
.ProjSwiper li>a:hover:after {
    display: none;
}

/*聯絡我們*/
.contact_page .main_part {
    padding: 150px 20px;
    max-width: 1000px;
}

.contact_content .information_left {
    display: none;
}

.contact_content .information_right {
    width: calc(100% - 0px);
}

.contact_form {
    grid-gap: 25px;
}

.contact_form li {
    grid-template-columns: 245px 1fr;
}

.contact_form li .form__label {
    max-width: 245px;
    text-align: left;
}

.contact_form li .form__insert {
    letter-spacing: 1px;
}

.contact_form li.last cite {
    background: #7d7d7d;
    border: none;
}

.blank_letter {
    display: none;
}

.contact_content .information_right:after {
    position: absolute;
    content: "FORM";
    color: #000;
    font-size: 80px;
    font-weight: 300;
    font-family: 'Playfair Display';
    left: 30px;
    top: -80px;
}

@media screen and (max-width: 570px) {
    .contact_form li .form__label {
        background: rgb(255 255 255 / 0%);
        text-align: left;
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    .contact_form li.last {
        flex-direction: row;
    }

    .contact_form li.last blockquote,
    .contact_form li.last cite {
        border: none;
    }


}

/*內頁BANNER 設定
.banner {
    height: 400px;
}

.banner h5 {
    display: none;
}

.banner.banA {
    background-image: url(https://pic03.eapple.com.tw/sheorderliness/banA.jpg);
    background-position: center;
    width: 100%;
    height: 28vw;
    background-size: cover;
}

.banner.banB {
    background-image: url(https://pic03.eapple.com.tw/sheorderliness/banB.jpg);
    background-position: center;
    width: 100%;
    height: 28vw;
    background-size: cover;
}

.banner.banC {
    background-image: url(https://pic03.eapple.com.tw/sheorderliness/banC.jpg);
    background-position: center;
    width: 100%;
    height: 28vw;
    background-size: cover;
}

.banner.banD {
    background-image: url(https://pic03.eapple.com.tw/sheorderliness/banD.jpg);
    background-position: center;
    width: 100%;
    height: 28vw;
    background-size: cover;
}

.banner.banE {
    background-image: url(https://pic03.eapple.com.tw/sheorderliness/banE.jpg);
    background-position: center;
    width: 100%;
    height: 28vw;
    background-size: cover;
}

.banner.banF {
    background-image: url(https://pic03.eapple.com.tw/sheorderliness/banF.jpg);
    background-position: center;
    width: 100%;
    height: 28vw;
    background-size: cover;
}

.banner.banblog {
    background-image: url(https://pic03.eapple.com.tw/sheorderliness/banblog.jpg);
    background-position: center;
    width: 100%;
    height: 28vw;
    background-size: cover;
}

.banner.banDesign {
    background-image: url(https://pic03.eapple.com.tw/sheorderliness/banE.jpg);
    background-position: center;
    width: 100%;
    height: 28vw;
    background-size: cover;
}

.banner.banDesign_c {
    background-image: url(https://pic03.eapple.com.tw/sheorderliness/banE.jpg);
    background-position: center;
    width: 100%;
    height: 28vw;
    background-size: cover;
}

#content {
    background-image: url(https://pic03.eapple.com.tw/sheorderliness/background.jpg);
}
*/
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 預設解除背景輪播 */
#content_main {
    margin: 0;
}

.swiper-fade .swiper-slide img {
    height: 100%;
}


.car_page .information_left {
    display: block;
}

/*店家商品*/
.products-list .item a:hover .more {
    background: #847e67;
}

.products-list .more {
    border: 1px solid #847e67;
    color: #847e67;
}

.product-layer-two li {
    display: inline-block;
}

.product-layer-two li a {
    background: #f3f3f300;
    color: #4a4a4a;
    letter-spacing: 1px;
    font-size: 18px;
    font-family: "Noto Serif TC", serif;
    border-right: 1px solid #dbdbdb;
}

.product-layer-two li:last-child a {
    border-right: none;
}

.prod_related {
    background: #ffffff;
}

.sidebarBtn h2 {
    color: #111;
    font-size: 24px;
    font-weight: 500;
}

.product-layer-two li.active a {
    border: none;
    background: #000000;
    color: white;
    font-weight: 400;
}

.edit {
    letter-spacing: 1px;
    color: #505050;
}

.product_info li .txt_box {
    color: #847e67;
}

.product_menu_list {
    text-align: center;
    margin-bottom: 50px;
}

.proImgSwiper {
    aspect-ratio: auto;
}

.prod_related h6,
.pd_tabTitle li,
.pd_tabTitle {
    display: none;
}

.related_list li a p {
    line-height: 4;
    letter-spacing: 1px;
}

.sidebarBtn {
    border: none;
}

/*設計作品*/
.sidebar__inner {
    padding: 100px 50px 0 50px;
}

.path {
    display: none;
}

.ProjsDetail_info_3_5 {
    padding-top: 50px;
}

.ProjsDetail_Title h4 span {
    font-size: 50px;
    color: #000000;
    font-family: 'Playfair Display';
    font-weight: 400;
}

.ProjsDetail_Title h4 {
    font-size: 20px;
    color: #000000;
    font-family: "Noto Serif TC", serif;
    font-weight: 400;
    display: flex;
    flex-direction: column-reverse;
    margin-top: 65px;
}

.ProjsDetail_Title p a::before {
    font-size: 9px;
}

.ProjsDetail_Title p a {
    width: 26px;
    height: 26px;
}

.ProjsDetail_Intro em.TxtHouseType::before,
.ProjsDetail_Intro em.TxtHouseType::after {
    display: none;
}

.ProjsDetail_Intro dd {
    display: inline-block;
}

.Projs_slideshow {
    display: none;
}

.ProjsDetail_info_3_5 {
    color: #838383;
    letter-spacing: 1px;
    line-height: 35px;
}

@media screen and (max-width: 1440px) {
    .bannerindex .swiper-banner .swiper-slide:nth-child(1):before {
        width: 28%;
    }

    .bannerindex .swiper-banner .swiper-slide:nth-child(2):before {
        top: 110%;
        left: 10%;
        width: 28%;
        height: 50%;
    }
}

@media screen and (max-width: 1300px) {
    .stellarnav>ul>li>a {
        padding: 0px 15px;
    }
}

@media screen and (max-width: 1024px) {

    .ProjsDetail_info_2_5,
    .ProjsDetail_info_3_5 {
        padding: 20px 30px;
    }

    .sidebar__inner {
        padding: 50px 50px 0 50px;
    }

    .ProjsDetail_OtherObjs li {
        padding: 2%;
    }

    .ProjsDetail_OtherObjs li>a {
        padding: 0 0 300px;
    }

    .stellarnav>ul>li>a {
        padding: 0px 17px;
    }

    .stellarnav>ul>li.has-sub>a {
        padding-right: 17px;
    }

    .nav-header {
        margin: 10px auto;
        width: 12%;
    }


}

@media screen and (max-width: 768px) {
    .ProjsDetail_OtherObjs li>a {
        padding: 0 0 220px;
    }

    .stellarnav>ul>li>a {
        padding: 0px 17px;
        color: #938479;
    }

    .stellarnav li a {
        color: #777;
    }

    .stellarnav>ul>li {
        width: auto;
    }

    .stellarnav>ul>li:nth-child(3),
    .stellarnav>ul>li:nth-child(4) {
        margin-left: auto;
        margin-right: auto;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #949086;
    }

    .stellarnav .menu-toggle:after {
        color: #949086;
    }

    .bannerindex .swiper-banner .swiper-slide:nth-child(1):before {
        width: 40%;
        top: 63%;
    }

    .bannerindex .swiper-banner .swiper-slide:after {
        top: 15%;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #d3bfab;
        color: white;
    }

    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        background: #fcf9f3;
    }

    .stellarnav .icon-close:before,
    .stellarnav .icon-close:after {
        border-bottom: solid 3px #ffffff;
    }
}

@media screen and (max-width: 480px) {

    .ProjsDetail_ImgView ul li a,
    .ProjsDetail_OtherObjs li>a {
        padding: 0 0 130px;
    }

    .ProjsDetail_OtherObjs li {
        padding: 20px 30px;
    }

    .bannerindex .swiper-banner {
        aspect-ratio: 7 / 5;
    }

    .bannerindex .swiper-banner .swiper-slide:nth-child(1):before {
        width: 44%;
        top: 73%;
    }

    .bannerindex .swiper-banner .swiper-slide:after {
        top: 15%;
    }

    .nav-header {
        width: 20%;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
@media screen and (max-width: 1600px) {}

@media screen and (max-width: 1440px) {}


@media screen and (max-width: 1367px) {}

@media screen and (max-width: 1200px) {
    .swiper-fade .swiper-slide img {
        height: auto;
    }

    /*文章管理*/
}

@media screen and (max-width: 1050px) {}

@media screen and (max-width: 1035px) {}

@media screen and (max-width: 1100px) {
    .navigation {
        padding: 5px 0 0 0;
    }

    .footer_logo {
        margin: 20px auto;
    }

    .footer_info {
        display: flex;
        flex-direction: column;
    }

    .footer_info ul {
        display: flex;
        justify-content: space-around;
    }

    .pageIndex .swiper-slide:after {
        width: 50%;
        left: 10%;
        bottom: 0%;
    }
}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 768px) {
    .header_area {
        height: auto;
    }

    .bannerindex {
        padding: 0;
        margin: 0;
    }

    .main_header_area .container {
        max-width: 100%;
        margin: 0;
    }

    .footer_info li {
        padding: 2% 5%;
    }

    .footer_logo {
        display: none;
    }

    .footer_info li+li {
        margin-top: 0px;
    }


    /*文章管理/＝＝＝＝＝*/
    h4.blog_category_title {
        font-size: 24px;
    }

    h4.blog_category_title span {
        font-size: 20px;
    }

    .pageIndex .swiper-fade .swiper-slide.swiper-fade .swiper-slide-active:before {
        bottom: 20%;
        font-size: 6vw;
    }

    .pageIndex .swiper-fade .swiper-slide.swiper-fade .swiper-slide-active:after {
        bottom: 15%;
        width: 65%;
    }

    .swiper-banner.swiper-fade .swiper-slide img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .info_fix_links a {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }
}

@media screen and (max-width: 570px) {



    .contact_form li {
        display: flex;
        justify-content: space-evenly;
        flex-direction: column;
    }

    .contact_form li .form__label {
        width: 100%;
    }

    #content_main {
        margin-top: -10px;
    }

    .subbox_item {
        width: 100%;
        border-bottom: none;
    }

    .contact_form li {
        grid-gap: 0px;
    }

    .footer {
        padding: 50px 0 0;
    }


    .footer_info ul {
        display: block;
    }

    .footer_menu a {
        display: inline-block;
        border: 1px #ccc solid;
        font-size: 13px;
        letter-spacing: 0px;
    }

    .stellarnav .menu-toggle {
        padding: 15px;
    }

    .pageIndex .swiper-fade .swiper-slide.swiper-fade .swiper-slide-active:before {
        bottom: 30%;
    }

    .pageIndex .swiper-fade .swiper-slide.swiper-fade .swiper-slide-active:after {
        bottom: 22%;
        width: 80%;
    }

    .module_i_news ul {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    }

    #to_top {
        display: none;
    }
}


@media screen and (max-width: 414px) {}

/* ==================================
   最終防破版修正
================================== */
.stellarnav > ul {
    max-width: 100%;
}

.stellarnav > ul > li,
.stellarnav > ul > li > a {
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    .stellarnav > ul > li {
        width: 100%;
        min-width: 0;
    }

    .stellarnav > ul > li > a {
        width: 100%;
        max-width: 100%;
    }
}