@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}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 麵包屑導覽隱藏 */
.path {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.main_header_area {
    background: rgb(255 255 255 / 100%);
}
.main_header_area .container {
    max-width: 1500px;
}
.navigation {
    padding: 25px 0 0 270px;
}
.nav-brand {
    width: 70px;
    padding-top: 10px;
}
.me_tp_features {
    display: none;
}

/*主選單*/
.stellarnav > ul > li {
    margin-left: 25px;
}
.stellarnav > ul > li > a {
    color: #474540;
    font-family: "Noto sans TC", sans-serif;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 2px;
    height: auto;
    padding: 0 17px 20px 0;
}
.stellarnav li.has-sub > a:after {
    position: relative;
    top: 0;
    margin-left: 0;
}
.stellarnav li.drop-left li.has-sub > a:after {
    border-right: 6px solid ;
}

/* 第二層 */
.stellarnav ul ul {
    background: #f9f9f9;
    width: 180px;
}
.stellarnav li li {
    border: 0;
}
.stellarnav ul ul a {
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    padding: 10px;
}
.stellarnav li.drop-left ul ul {
    right: 180px;
    border-right: solid 1px #ddd;
}
.stellarnav li li.drop-left > a:after {
    border-left: ;
} /* 朝右箭頭 */



/* hover */
.stellarnav > ul > li > a:hover,
.stellarnav > ul > li:hover > a {
    color: #858584;
    transition: all .2s ease-in-out;
} /* 主選單一般變色 */
.stellarnav > ul > li,
.stellarnav > ul > li > a {
    transition: all .2s ease-in-out;
}
.stellarnav li.has-sub > a:hover:after,
.stellarnav li.has-sub:hover > a:after{
    border-top: 6px solid #;
} /* 主選單三角形 */
.stellarnav li li:hover > a,
.stellarnav li li.has-sub:hover > a,
.stellarnav li li.drop-left:hover > a  {
    color: #fff;
    background: #DDB473;
} /* 次分類一般變色 */
.stellarnav li li.has-sub > a:hover:after,
.stellarnav li li.has-sub:hover > a:after{
    border-left: 6px solid #;
} /* 次分類三角形 */


/* 下滑設定 */
.header_area.sticky .main_header_area {
    background: rgb(255 255 255 / 70%);
}


@media screen and (max-width: 1500px) {
    .main_header_area .container {
        padding: 0 1%;
    }
}

@media screen and (max-width: 1024px) {
    .navigation {
        padding: 10px;
    }
}

@media screen and (max-width: 768px){
    .stellarnav .menu-toggle:after {
        color: ;
    }
    .stellarnav .menu-toggle span.bars span {
        background: ;
    }
    .stellarnav.mobile ul {
        background: ;
    }  
    .stellarnav.mobile > ul > li {
        border-bottom: 1px solid #;
        margin-left: 0;
    }      
    .stellarnav.mobile li.open {
        padding: 0;
    }
    .stellarnav.mobile li a {
        border: 0;
        color: #;        
    }
    .stellarnav a.dd-toggle .icon-plus:before,
    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 3px #;
    }    

    .stellarnav.mobile li.open li.open {
        padding: 0;
    }
    .stellarnav.mobile li li a {
        padding-left: 20px;
    }
    .stellarnav.mobile li li.has-sub a {
        padding: 10px 43px 10px 20px;
    }
    
    .stellarnav.mobile li li li {
        padding-left: 8px;
    }
    .stellarnav li.open li.open a.dd-toggle .icon-plus:before,
    .stellarnav li.open li.open a.dd-toggle .icon-plus:after {
        border-bottom: solid 3px #fff;
    }   
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* footer */
.footer {
    background: #fff;
    padding: 30px 0 40px;
}
.footer .center {
    max-width: 1500px;
    border-top: solid 1px #ddd;
    padding-top: 50px;
}
.footer_info {
    display: flex;
    justify-content: space-between;
    padding: 0;
    flex-wrap: wrap;
}
.footer_logo {
    width: 80px;
}
.footer_logo a img {
    width: 100%;
}
.footer_info ul {
    width: 100%;
    max-width: 515px;
}
.footer_info li p:before {
    color: #474540;
    width: 50px;
    display: inline-block;
}
.footer_info li p.tel:before {
    content: 'TEL';
}
.footer_info li p.add:before {
    content: 'ADD';
}
.footer_info li p.mail:before {
    content: 'EMAIL';
}
p.fax {
    display: none;
}
.footer_info li:nth-child(1) p a {
    color: #474540;
}

.box_link {
    display: none;
}
.footer_menu a {
    color: #564117;
    border: 0;
    border-right: solid 1px #ddd;
    background: transparent;
    padding: 0 12px;
    margin: 0 0 4px 0;
}
.footer_menu a:first-of-type {
    border-left: solid 1px #ddd;
}
.copy {
    font: 12px;
    color: #c9c9c9;
    max-width: 1500px;
    text-align: right;
    border: 0;
    margin: 0 auto;
}
.copy a {
    color: #c9c9c9;
}

/* hover */
.footer_menu a:hover {
    background: transparent;
    color: #916d26;
}
.footer_menu a,
.footer_menu a:hover {
    transition: all .2s;
}
.box_link a:hover {
    opacity: .7;
}
.box_link a,
.box_link a:hover {
    transition: all .2s;
}
.copy a:hover {
    color: #fbcd4f;
}

@media screen and (max-width: 814px) {
    .copy {
        text-align: left;
        padding: 0 15px;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*---------功能頁設定---------*/

body.blog_page .main_part,
.blog_in_page .main_part,
.contact_page .main_part{
    max-width: 1500px;
}

/*頁碼*/
ul.page {
    width: 100%;
    font-family: 'Montserrat', sans-serif, 'Noto Sans TC', sans-serif;
    font-weight: 400;
    margin-top: 50px;
}
.activeN {
    background: #DDB473;
    color: #fff;
    line-height: 50px;
    width: 50px;
    height: 48px;
}
.page li {
	margin: 0;
}
.page li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 1px #fff solid;
    color: #000011;
}
.page strong, .page a {
    border-radius: 0;
}

/* hover */
.page strong, .page a:hover {
    background: rgb(185 185 185 / 30%);
    color: #231815;
}
.page a, 
.page a:hover {
    transition: all .2s;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 文章管理 */

.blog_page,
.blog_in_page {
    transition: all .3s ease-in-out;
}

/* .blog_page */

/* 左側文章分類 */
.blog_page h4.blog_category_title {
    display: none;
}
h5.blog_le_t {
    display: none;
}
.blog_search input[type=search] {
    color: #fff !important;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #ddd;
}
.blog_le .accordion {
    border-radius: 0;
    border: 0;
    margin-top: 25px;
}
.accordion li .link {
    border: 0;
    padding: 10px 10px;
}
.accordion li .link a {
    color: #979797;
}
.blog_le .accordion li i {
    font-size: 12px;
    color: #979797;
    top: 14px;
}

/* 子分類 */
.submenu {
    background: transparent;
}
.submenu li {
    border: 0;
}
.submenu a {
    color: #979797;
    font-size: 13px;
    transition: all .3s;
}
.submenu a:before {
    display: none;
}


/* 右側文章列表 */
.subbox_item {
    width: 100%;
}
.subbox_item a {
    display: flex;
    padding: 8px 8px 15px 8px;
}
.subbox_item a:before {
    content: ' + READ MORE';
    font-family: 'Montserrat', sans-serif,  'Noto Sans TC', sans-serif;
    font-size: 13px;
    color: #DDB473;
}
.subbox_item a:after {
    border: 0;
    border-bottom: 1px #DDB473 solid;
    background: rgba(255,255,255,0.5);
}
.blog_list_le {
    width: 250px;
    padding: 0;
    overflow: hidden;
}
.blog_list_ri {
    width: calc(100% - 255px);
    padding: 8px 8px 8px 30px;
}
.blog_list_ri em {
    font-size: 12px;
    color: #fff;
    background: #474540;
    padding: 3px 8px;
    width: 118px;
}
.blog_list_ri p {
    letter-spacing: 1px;
    line-height: 160%;
    margin-top: 18px;
}

/* .blog_in_page */
.blog_in_page .blog_ri * {
    letter-spacing: 1px;
}
h4.blog_category_title {
    color: #474540;
    font-size: 24px;
    font-weight: 300;
}
.blog_box_edit * {
    color: #a1a1a1;
}
.blog_back a.article_btn_back {
    background: #474540;
}
.blog_back a.article_btn_prev, 
.blog_back a.article_btn_next {
    background: #cbcbcb;
}


/* hover */
.blog_le .accordion > li:hover, 
.blog_le .accordion > li.on_this_category {
    background: #f5f5f5 !important;
}
.blog_le .accordion > li:hover .link a, 
.blog_le .accordion > li.on_this_category .link a {
    color: #979797 !important;
}
.blog_le .accordion > li:hover .link i, 
.blog_le .accordion > li.on_this_category .link i {
    color: #979797 !important;
}
.submenu a:hover {
    background: #474540;
    transition: all .3s;
}
.subbox_item a:hover img{
    transform: scale(1.1);
}


@media screen and (max-width: 960px) {
    .subbox_item {
        border-bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .blog_search input[type=search] {
        -webkit-appearance: none;
        background: transparent;
    }
    .blog_list_le {
        width: 200px;
    }
    .blog_list_ri {
        width: calc(100% - 210px);
    }    
}

@media screen and (max-width: 600px) {
    .blog_list_le {
        width: 150px;
    }
    .blog_list_ri {
        width: calc(100% - 160px);
        padding: 3px 3px 3px 10px;
    }
    .blog_list_ri p {
        -webkit-line-clamp: 3;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 相簿管理 */

/* .album_page */
.album_page .main_part {
    max-width: 100%;
    padding: 0;
    margin: 50px auto auto auto;
}
.album_page .show_content {
    padding: 0;
}
.show-list {
    display: flex;
    flex-wrap: wrap;
}
.show-list .item {
    margin: 0;
    width: calc(100% / 3);
    padding: 0;
}
.overlay {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    background: rgba(255,255,255,.2);
    z-index: 3;
    display: none;
}
.show-list .show_name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    width: 100%;
    color: #fff;
    font-size: 22px;
    text-align: center;
    letter-spacing: 3px;
    height: fit-content;
    font-weight: 700;
    z-index: 2;
}
.show-list .item img {
    filter: brightness(0.7);
}

/* hover */
.show-list .item::before,
.show-list .item:hover:before,
.show-list .item img,
.show-list .item:hover img{
    transition: all .4s 100ms cubic-bezier(.42,0,.58,1);
}
.show-list .item:hover .show_name {
    color: #fff;
}
.show-list .item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

/* .album_class_page */
.album_class_page .main_part {
    max-width: 100%;
    padding: 0;
}
.album_class_page .show_content {
    padding: 0;
}
.subalbum-menu {
    margin: 0;
    padding: 0;
}
.subalbum-menu h2 {
    display: block;
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 5px;
    padding-bottom: 15px;
}
.subalbum-menu h2 span {
    display: none;
}
.other_subalbum {
    display: flex;
    flex-wrap: wrap;
}
.other_album {
    display: block;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}
.other_subalbum li {
    position: relative;
    width: calc(100% / 3);
    margin: 0;
}
.other_subalbum li a {
    display: block;
    position: relative;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
}
.other_subalbum li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    filter: brightness(0.7);    
}
.other_subalbum li p {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    color: #fff;
    letter-spacing: 3px;
    font-weight: 700;
    text-align: center;
    z-index: 10;
}

/* hover */
.other_subalbum li a,
.other_subalbum li a:hover,
.other_subalbum li a:before,
.other_subalbum li a:hover:before,
.other_subalbum li a img,
.other_subalbum li a:hover img{
    transition: all .4s 100ms cubic-bezier(.42,0,.58,1);
}

.other_subalbum li a:hover img{
    transform: translate(-50%,-50%) scale(1.1);
    filter: brightness(1);
}

/* .album_info_page */
.album_info_page .main_part {
    padding: 50px 0;
}
.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 .item a {
    display: block;
    margin: 0 auto;
}
.pic-list .show_pic {
    height: auto;
    padding: 0;
}
.pic-list .show_pic img {
    filter: brightness(0.7);    
}
/* .pic-list .item a {
    display: block;
    position: relative;
    height: 0;
    padding-bottom: 75%;
    margin: 0 auto;
    overflow: hidden;
} */
/* .pic-list .show_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    filter: brightness(0.7);    
} */


/* hover */
.pic-list .show_pic,
.pic-list .show_pic:hover,
.pic-list .show_pic img,
.pic-list .show_pic:hover img{
    transition: all .4s 100ms cubic-bezier(.42,0,.58,1);
}

.pic-list .show_pic:hover img{
    transform: scale(1.1);
    filter: brightness(1);
}


/* 相簿分類 */
.other_album_choice li {
    padding: 12px 0px;
    background: #474540;
    border-radius: 0;
    border: 0;
}
.other_album_choice li a {
    padding: 12px 20px;
    color: #fff;
    letter-spacing: 1px;
}

/* hover */
.other_album_choice li:hover {
    background: ;
}
.other_album_choice li a:hover {
    color: ;
}

@media screen and (max-width: 1200px) {
    
}

@media screen and (max-width: 768px) {
    .show-list .item {
        width: calc(100% / 2);
    }
    .album_class_page .main_part {
        padding: 50px 0 0;
    }
    .subalbum-menu h2 {
        margin: 0 4%;
    }
    .other_subalbum li {
        width: calc(100% / 2);
    }
    .album_info_page .main_part {
        padding: 50px 10px 10px;
    }  
    .pic-list {
        column-count: 2;
        -moz-column-count: 2;
        -webkit-column-count: 2;
    }
}

@media screen and (max-width: 480px){
    .show-list .item {
        width: 100%;
    }
    .other_subalbum li {
        width: 100%;
    }
    .pic-list .show_pic img {
        filter: brightness(1);    
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 聯絡我們 */
form.style1 {
    display: flex;
    flex-wrap: wrap;
}
.blank_letter {
    color: #474540;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 0;
}


/* 左側-聯絡資訊 */
.contact_content .information_left {
    width: 40%;
    padding-right: 80px;
}
.list_before {
    margin-top: 50px;
}
li.FAX {
    display: none;
}

/* 右側-表單 */
.contact_content .information_right {
    width: 60%;
    padding-left: 130px;
    border-left: solid 1px #ededed;
}
.contact_content .information_right .blank_letter {
    margin-left: -60px;
}
.contact_form {
    margin-top: 50px;
}
.contact_form li {
    padding: 0 0 25px 90px;
}
.contact_form li .form__label {
    width: 150px;
    text-align: left;
    margin-left: -155px;
}
.contact_form li input.noborder,
.contact_form li textarea.noborder {
    border: 0;
    background: #f7f7f7;
    padding: 8px 0;
}
.contact_form li textarea.noborder {
    border: 0;
    background: #f7f7f7;
}
.contact_form li.last blockquote {
    color: #b3b3b3;
    border: 1px #d1d1d1 solid;
    margin-right: 15px;
}
.contact_form li.last cite {
    background: transparent;
    color: #474540;
    border: 1px #474540 solid;
}


/* hover */
.contact_form li.last cite:hover {
    background-color: #efefef;
}
.contact_form li.last blockquote:hover input, 
.contact_form li.last cite:hover input {
    letter-spacing: 2px;
}
.contact_form li.last cite:hover i.fa-solid.fa-arrow-right {
    margin: 0;
}

@media screen and (max-width: 1024px) {
    form.style1 {
        flex-direction: column;
    }
    .contact_content .information_left {
        width: 100%;
        padding-right: 0;
    }
    .contact_content .information_right {
        width: 100%;
        padding-left: 0;
        padding-top: 70px;
        border-left: 0;
    }
    .contact_content .information_right .blank_letter {
        margin-left: 0;
    }
    .contact_form li {
        padding: 0 0 25px 150px;
    }
}

@media screen and (max-width: 768px) {
	.noborder {
        border-radius: 0;
    }
    .form select {
        border-radius: 0;
    }
}

@media screen and (max-width: 600px) {
    .contact_page .main_part {
        padding: 20px 10px 10px;
    }
    .contact_content {
        padding: 0 0 15px;
    }
    /* .contact_form li .form__label {
        width: 85px;
        margin-left: -100px;
    } */
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:static; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
.swiper-slide img { height:auto;}
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    position: relative;
    background: #fff;
    padding: 90px 0 30px 0;
}
.banner:before {
    content: "";
    display: block; 
    position: absolute;
    background-color: #DDB473;  
    width: 4px;  
    height: 90px;
    margin: auto 75% auto 11%;
}
.banner h5 {
    font-family: 'Noto Sans TC', sans-serif;
    text-align: left;
    color: #DDB473;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 3px;
    margin: auto 70% auto 11%;
    padding-left: 30px;
}
.banner h5::before {
    content: "";
    display: block; 
    position: relative;       
    font-family: 'Montserrat', sans-serif,  'Noto Sans TC', sans-serif;
    color: #DDB473; 
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 5px;   
}

/*促銷方案*/
.banner.banA {}

.banner.banB {}

/*聯絡我們*/
.banner.banC {}
.banner.banC h5::before {
    content: "CONTACT";  
}

.banner.banD {}

/*相簿管理/作品展示*/
.banner.banE {}
.banner.banE h5::before {
    content: "WORK";   
}

/*店家商品*/
.banner.banF {}

/*文章管理*/
.banner.banblog {}
.banner.banblog h5::before {
    content: "ARITICLE";   
}

@media screen and (max-width: 768px) {
    .banner h5 {
        margin: auto 45% auto 11%;
    }
}

@media screen and (max-width: 480px) {
    .banner h5 {
        margin: auto 15% auto 10%;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
/* #bottom_menu {display: block; } */
.footer.with_shopping_mode { }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




