 @charset "utf-8";

/* --------------------------------------------------
   base
-------------------------------------------------- */
/* =============== ▼ 全域變數 ▼ =============== */

:root {
  /* 顏色 */
  --main-color: #555;
  --sub1-color: #b39379;
  --sub2-color: #DDD3C5;
  --sub3-color: #F1F1F1;
  --ac-color: #a98979;
  --f1-color: #3a3a3a;
  --f2-color: #888;
  --f3-color: #ccc;
  --bg-color: #f9f9f9;

  /* 字型 */
  --font: "Noto Sans TC", sans-serif;
  --sfont:"Noto Serif TC", serif;
  /* 其他 */
  --tr:ease-out 0.5s;/*變化*/
  --br:clamp(2px,1vw,4px);/*圓角*/
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */


/* =============== ▲ 全域變數 ▲ =============== */

/* =============== ▼ 文字設定 ▼ =============== */

body {
    letter-spacing: .1rem;
    font: normal 16px/1.5 var(--font);
    color: var(--f1-color);
}

/* 客戶編輯區文字 */
.blog_box_edit *, 
.promotions_page .edit *, 
.edit {
    letter-spacing: .1rem;
    font-weight: 400;
    font-size: 16px;
    line-height: 250% !important;
    font-family: var(--font)!important;
    color: var(--f1-color)!important;
}

/* 反白顏色 ----------*/
::-moz-selection{
    color: var(--bg-color);
    background: var(--f1-color);
}

::selection {
    color: var(--bg-color);
    background: var(--f1-color);
}
/* =============== ▲ 文字設定 ▲ =============== */

/* =============== ▼ 通用設定 ▼ =============== */

/* 滾動條 ---------- */
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    width: 6px;/*右側捲軸寬度*/
    height: 0px;/*下方捲軸高度*/
}

/* 軌道背景底色 */
::-webkit-scrollbar-track {background-color: var(--bg-color);}

/* 滑桿顏色 */
::-webkit-scrollbar-thumb {background-color: var(--f2-color);}

/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {background: var(--f1-color);}

/* =============== ▲ 通用設定 ▲ =============== */

/* --------------------------------------------------
   layout
-------------------------------------------------- */

/* =============== ▼ 大範圍設定 ▼ =============== */

/* ＝＝＝ 【【  版型設定(基本) ↓↓↓  】】 ＝＝＝ */

/*背景顏色*/
#content_main,
#content {
    background-color: var(--bg-color);
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {
    .show_content {
        padding: 10px 0 20px;
    }
}

@media screen and (max-width: 600px) {
    .main_part {
        padding: 10px 20px;
    }
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */

.main_part{
    padding: 10px 20px 50px;
}

/* 隱藏新浮動 */
.info_fix{
    display: none;
}

#content, 
#content_main {
/*     background-image: url(https://pic03.eapple.com.tw/pinhung/bg.png); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: var(--bg-color);
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */


/* =============== ▲ 大範圍設定 ▲ =============== */

/* =============== ▼ PAGE ▼ =============== */

/* ＝＝＝ 【【  xx 無預設區塊 xx  】】 ＝＝＝ */
/* ＝＝＝ 【【  版型設定(基本) ↓↓↓  】】 ＝＝＝ */

/* 麵包屑 -------------------- */
/* 隱藏 */
.path p,
.path p a {
    display: none;
}

/* 頁碼 -------------------- */

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */
/* 麵包屑 -------------------- */
/* 頁碼 -------------------- */
/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

/* =============== ▲ PAGE ▲ =============== */

/* =============== ▼ 大圖 ▼ =============== */

/* ＝＝＝ 【【  預設區塊不動 ↓↓↓  】】 ＝＝＝ */

/*預設解除背景輪播*/
#content_main {margin: 0;}
.bannerindex {position: relative;height: auto;}
.pageIndex .swiper-banner {position: static;margin: 0;height: auto;}

/* .swiper-slide img { height:auto;} */

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {
    .bannerindex {padding: 0;margin: 0;}
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */

/* 適應4k螢幕 */
.swiper-banner .swiper-slide img {
    width: 100vw;
}

/* =============== ▼ HEADER ▼ =============== */

/* ＝＝＝ 【【  xx 無預設區塊 xx  】】 ＝＝＝ */

/* ＝＝＝ 【【  版型設定(基本) ↓↓↓  】】 ＝＝＝ */
/* 布局 */
.header_area,
.header_area.sticky {
    background:var(--bg-color);
    box-shadow: 0px 5px 20px rgba(51, 51, 51, .05);
/*     border-top: 5px solid var(--main-color); */
}

.main_header_area .container {
    max-width: 1600px;
}

.navigation {
    display: flex;
}

/* +++ 複選單(購物車/社群icon/多語系) -------------------- */
.me_tp_features {
    display: none;
}

/* +++ logo -------------------- */

/*logo大小*/
.nav-header {
    max-width: 150px;
}

.nav-brand img {
    display: block;/*填滿h1空白*/
}

/* +++ 導覽列 -------------------- */

/* 主選單文字樣式 */
.stellarnav > ul > li > a,
.stellarnav>ul>li>a b {
    color: var(--f1-color);
    font-family: var(--font);
    letter-spacing: .15rem;
    margin: 0;/*蓋預設*/
}

/* 翻轉後文字 *//*
.stellarnav>ul>li>a b:nth-child(2) {
    font: normal 14px/1.5 var(--sfont);
    letter-spacing: .1rem;
}

/* 按鈕間距+高度 */
.stellarnav>ul>li {
    padding: 15px .5rem;
    padding-bottom: 10px;/*上下視差5px*/
}

/* 隱藏三下拉角形 */
.stellarnav li.has-sub > a:after{
    display: none;
}
.stellarnav > ul > li.has-sub > a{
    padding-right:unset;
}

/*下拉區塊*/
.stellarnav li.has-sub li {
    border: none;
    border-bottom: solid 1px var(--sub2-color);
    background: var(--bg-color);
}

.stellarnav li.has-sub li:last-of-type{
    border-bottom: none;
}

/* 下拉選單文字 */
.stellarnav li.has-sub li a,
.stellarnav.mobile li li.has-sub a{
    font-size: 13px;
    padding: .75rem 1rem;
    color:var(--f1-color);
}

.stellarnav li.has-sub li:hover{
    background: var(--sub2-color);
    transition: var(--tr);
/*     padding-left: 1.5rem; */
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

@media screen and (max-width: 1300px) {
    .nav-header {
        max-width: 120px;
    }

    .stellarnav>ul>li {
        /* padding: 40px 8px 0px; */
    }
}

@media screen and (max-width: 1024px) {
    .stellarnav>ul>li {
        padding: 15px 5px 0px;
    }

    .stellarnav>ul>li>a {
        font-size: 14px;
    }
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */

/* logo大小 */
.nav-header {
    max-width: 180px;
}

/* 寬度 */
.main_header_area .container {
    max-width: 1100px;
}

/*圓點*/
.stellarnav>ul>li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius:50% ;
    position: absolute;
    top: 15%; /*垂直位置*/
    left: 50%;
    transform: translateX(-50%);
    background: var(--ac-color);
    opacity: 0;
}

.stellarnav>ul>li:hover:before {
    opacity: 1;
    top: 25%; /*垂直位置*/
    transition: var(--tr);
}

/* 下拉寬度調整 */
.stellarnav ul ul{
    width: 180px;
}

/* 隱藏表單 */
.stellarnav>ul>li:last-of-type{
    display: none;
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 1024px) {
    .nav-header {
        padding-top: 10px;
    }

    .stellarnav>ul>li:before{
        display: none;
    }

    .stellarnav > ul > li > a:hover b{
        transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
    }
    .stellarnav>ul>li>a,
    .stellarnav > ul > li > a b{
        line-height: 30px;
        height: 30px;
    }
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 480px) {}


/* =============== ▲ HEADER ▲ =============== */

/* =============== ▼ 漢堡選單 ▼ =============== */

/* ＝＝＝ 【【  版型設定(基本) ↓↓↓  】】 ＝＝＝ */

@media screen and (max-width: 768px) {
    /* logo ---------- */
    .nav-header {
        padding: 5px 0;
    }

    /* 三 按鈕 ---------- */
    .stellarnav.mobile {
        top: 0px;
    }
    /*三改色*/
    .stellarnav .menu-toggle span.bars span{
        background: var(--f1-color);
    }
    
    /*隱藏-menu文字樣式*/
    .stellarnav .menu-toggle:after{
        color: var(--f1-color);
        display: none;
    }

    /*打開後 close表頭*/
    .stellarnav.mobile.left .close-menu {
        background: var(--bg-color);
    }

    /*隱藏-close文字*/
    .stellarnav.mobile .close-menu {
        position: relative;
        color: transparent;
    }
    .stellarnav.mobile .close-menu>* {
        display: none;
    }

    .stellarnav.mobile .close-menu:before {
        content: "×";
        position: absolute;
        right: 10px;
        top: 10px;
        color: var(--f1-color);
        font-size: 12px;
    }

    /*選單底色*/
    .stellarnav.mobile.left>ul {
        background: var(--bg-color);
        max-width: 250px;/*選單寬度*/
        height: 100vh;
    }

    /*主選單按鈕 ---------- */
    .stellarnav.mobile > ul > li,
    .stellarnav.mobile li.open {
        padding: 0px;/*蓋預設*/
        border-bottom: 1px solid var(--f3-color);
    }

    /*選單文字*/
    .stellarnav.mobile>ul>li>a {
        text-overflow: ellipsis;
        padding: 15px 1.5rem;/*按鈕高度*/
        display: flex;
        flex-direction: column;
    }

    /*文字*/
    .stellarnav.mobile>ul>li>a b {
        vertical-align: middle;
    }

    .stellarnav>ul>li>a b:nth-child(2) {
        color: var(--f2-color);
        font-size: 12px;
    }

    /*隱藏-偽元素*/
    .stellarnav>ul>li:before {
        display: none;
    }
    /*下拉+號 ---------- */
    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 20px 0px;/*= 按鈕高度*/
    }
    /*+號顏色*/
    .stellarnav a.dd-toggle .icon-plus:before,
    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 1px var(--f2-color);
    }

    /*+號展開區塊 ---------- */
    /*下拉區塊-外層*/
    .stellarnav.mobile li.open,
    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0px;/*蓋預設 3px*/
    }
    .stellarnav.mobile ul ul {
        background: transparent;
        border-radius: unset;
        padding-left: .5rem;
    }
}

@media only screen and (max-width: 570px) {
    .stellarnav .menu-toggle {
        padding: 10px;/*蓋預設*/
    }
}

/* =============== ▲ 漢堡選單 ▲ =============== */

/* --------------------------------------------------
   components 元件設定
-------------------------------------------------- */

/* =============== ▼ BANNER ▼ =============== */

/* ＝＝＝ 【【  版型設定(中英) ↓↓↓  】】 ＝＝＝ */
.banner {
    background: transparent;
    padding: 100px 0;
    padding: 120px 0 50px;
}

.banner h5 {
    color: var(--f1-color);
    font-size: 28px;
    letter-spacing: .6rem;
    font-weight: normal;
}

.banner h5:after {
    content: 'COZY DESIGN';
    display: block;
    padding-top: 10px;
    font-size: 15px;
    font-family: var(--sfont);
    color: var(--ac-color);
    text-transform: uppercase;
}


/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

@media screen and (max-width: 1024px) {
    .banner {        
        padding: 50px 0 0;
        min-height: 200px;
    }
    .banner h5 {font-size: 25px;}
}
@media screen and (max-width: 768px) {
    .banner {padding: 30px 0 20px;min-height: 100px;}
    .banner h5 {font-size: 22px;}
    .banner h5:after {font-size: 14px;}
}
@media screen and (max-width: 450px) {
    .banner h5 {font-size: 20px;}
    .banner h5:after {font-size: 12px;}
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */

/* 隱藏內頁 */
.product_info_page .banner.banF,
.blog_in_page.article_a .banner.banblog {
    display: none;
}

/*小撇步-*/
.banner.banA {}
/*聯絡我們*/
.banner.banC {}
.banner.banC h5:after {
    content: 'Booking form';
}

/*匯款通知*/
.banner.banD {}
/*相簿-*/
.banner.banE {}
/*購物車-*/
.banner.banF {}
.banner.banF h5:after {
    content: 'CASES';
}

/*文章管理*/
.banner.banblog {}
.article_a .banner.banblog{}
.article_b .banner.banblog{}
.banner.banblog h5:after {
    content: 'DESIGN ARTICLE';
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

/* =============== ▲ BANNER ▲ =============== */

/* =============== ▼ 按鈕 ▼ =============== */

/* 首頁嵌入功能-查看更多 */
.animated-arrow{
    background: var(--ac-color);
    color: var(--bg-color);
    border-radius: var(--br);
}

.animated-arrow:hover{
    filter:grayscale(1);
}

/* =============== ▲ 按鈕 ▲ =============== */


/* --------------------------------------------------
   Content 功能頁
-------------------------------------------------- */


/* =============== ▼ 相簿管理 ▼ =============== */

/* ＝＝＝ 【【  預設區塊不動 ↓↓↓  】】 ＝＝＝ */

/*相本分類全版面 ( 限制最寬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;}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
/*
@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;}
*/

/* ＝＝＝ 【【  版型設定(基本) ↓↓↓  】】 ＝＝＝ */

/* +++ 通用 -------------------- */

/* 副標 (該頁分類/相簿名稱) */
.subalbum-menu h2 {
    font-size: 18px;
    color: var(--f1-color);
    letter-spacing: .6rem;
}

/* 圖片 */
.show-list .show_pic,
.pic-list .show_pic {
    aspect-ratio: 1 / 1;
    border-radius: var(--br);
}

.show-list .show_pic img,
.pic-list .show_pic img {
    transform: scale(1);
    filter: saturate(1);
    -webkit-filter: saturate(1);
    transition: var(--tr);
}

.show-list .item:hover .show_pic img,
.pic-list .item:hover .show_pic img {
    transform: scale(1.05);
    filter: saturate(1.5);
    -webkit-filter: saturate(1.5);
}

/* 觀看更多 */
.other_album_choice li {
    background: var(--sub1-color);
    padding: 5px 20px;
    border-radius: 0;
    font-size: 13px;
}

/* +++ 分類總覽頁 (album_page) -------------------- */

/* 分類名稱 */
.show-list .show_name{
    color: var(--f1-color);
    letter-spacing: .6rem;
    text-align: center;
}

.show-list .item {
    margin-bottom: 30px;
}

.show-list .item .overlay {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.show-list .item:hover .show_name {
    color: var(--sub1-color);
}

/* +++ 相簿目錄頁 (album_class_page) -------------------- */

/* 相簿名稱 */
.other_subalbum li a p{
    color: var(--f1-color);
    letter-spacing: .6rem;
    text-align: center;
}

.other_subalbum li:hover a p {
    color: var(--sub1-color);
}

/* +++ 相片頁 (album_info_page) -------------------- */

/* 相簿描述 */
.album_descrip{
    color: var(--f2-color);
    letter-spacing: .15rem;
}

/* 相片描述 */
.pic-list .item h6{
    color: var(--f1-color);
}


/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {

    /*次分類*/
    .subalbum-menu {
        margin: 0;
    }

    .other_subalbum li a p {
        color: var(--bg-color);
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */

/* +++ 布局 -------------------- */

/* +++ 分類總覽頁 (album_page) -------------------- */



/* +++ 相簿目錄頁 (album_class_page) -------------------- */

/* +++ 相片頁 (album_info_page) -------------------- */

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

/* =============== ▲ 相簿管理 ▲ =============== */

/* =============== ▼ 文章管理 ▼ =============== */

/* ＝＝＝ 【【  預設區塊不動 ↓↓↓  】】 ＝＝＝ */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/

/* ＝＝＝ 【【  版型設定(基本) ↓↓↓  】】 ＝＝＝ */

/* +++ 通用 -------------------- */

/* 圖片 */
.blog_list_le,
.i_blog_le,
.news_related_list li figure{
    border-radius: var(--br);
    overflow: hidden;
}

.blog_list_le img,
.i_blog_le img,
.news_related_list li a img {
    transform: scale(1);
    filter: saturate(1);
    -webkit-filter: saturate(1);
    transition: var(--tr);
}

.subbox_item:hover img,
.module_i_news li:hover img,
.news_related_list li:hover img{
    transition: var(--tr);
    transform: scale(1.05);
    filter: saturate(1.5);
    -webkit-filter: saturate(1.5);
}

/* 文章標題 */
.blog_list_ri h5,
.i_blog_ri h5,
.news_related_list li a p{
    color: var(--f1-color);
}

.subbox_item:hover h5,
.module_i_news li:hover h5,
.news_related_list li:hover p{
    color: var(--ac-color);
    transition: var(--tr);
}

/* 文章簡述 */
.subbox_item:hover p,
.module_i_news li:hover p{
    color: var(--f1-color);
    transition: var(--tr);
}


/* +++ 側邊欄 -------------------- */

.blog_le {
    padding: 0 7px;
}

/* 文章文字區塊 ---------- */
h5.blog_le_t {
    text-align: center;
    margin-bottom: 0;
}

/* 隱藏-文章文字 */
h5.blog_le_t em,
h5.blog_le_t span {
    display: none;
}

/* 搜尋欄位 */
.blog_search input[type=search] {
    border-radius: 4px;
    background-color: transparent;
    border: solid 1px var(--f3-color) !important;
}

.blog_search input[type=submit] {
    color: var(--f1-color);
    border-left: 1px solid var(--f3-color) !important;
    height: 100%;
    background: url(../images/search-icon.png) no-repeat 9px center;
}

/* 分類區塊外框 ---------- */
.blog_le .accordion {
    border-radius: var(--br);
    border: 1px var(--f2-color) solid;
}

/* 主分類分隔線 */
.accordion li+li .link {
    border-top: 1px var(--f2-color) solid;
}

/* 主分類文字 */
.accordion li .link a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .4rem;
    text-align: center;
    color: var(--f1-color)
}

.blog_le .accordion > li:hover .link a, 
.blog_le .accordion > li.on_this_category .link a{
    color: var(--f1-color)!important;
}

.blog_le .accordion > li:hover, 
.blog_le .accordion > li.on_this_category {
    background: var(--f2-color) !important;
    transition: var(--tr);
}

/* 下拉符號 */
.blog_le .accordion li .link i{
    color: var(--f1-color);
}

/* 次分類 */
.submenu {
    background: var(--f3-color);
}

/* 文字 */
.submenu a{
    color: var(--f1-color);
    padding: 15px 15px 15px 50px;
}

.submenu li.on_this_category a, 
.submenu a:hover {
    color: var(--f1-color);
    background: var(--f2-color) !important;
    transition: var(--tr);
}

/* 次分類圖標 */
.submenu a i{
    left: 20px;
}

/* 次分類分隔線 */
.submenu li+li {
    border-top: 1px var(--f2-color) solid;
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

@media screen and (max-width: 768px) {
    .blog_le {
        padding: 0;
    }
}

/* +++ 目錄頁 (blog_page) -------------------- */

/*隱藏-分類副標*/
.blog_page h4.blog_category_title {
    display: none;
}

/* 卡片布局 */
.blog_subbox {
    grid-template-columns: 1fr;
    grid-gap:0px;
}

.subbox_item{
    padding: 20px 0;
    border-bottom: 1px var(--f3-color) solid;
}

.subbox_item a {
    grid-template-columns: 250px 1fr;
    align-items: center;
    gap: 40px;
}

.module_i_news li a:before,
.subbox_item a:before {
    content: 'READ MORE +';
    font-size: 12px;
    padding: 5px 20px;
    color: var(--ac-color);
    font-family: var(--sfont);
}

/* 隱藏-原遮罩 */
.subbox_item a:after {
    display:  none;
}

/* 文字區塊 ---------- */

/* 時間 */
.blog_list_ri em,
.i_blog_ri em {
    font-size: 12px;
    color: var(--f2-color);
}

/* 簡述 */
.blog_list_ri p,
.i_blog_ri p {
    font-weight: 400;
    letter-spacing: .2rem;
    line-height: 180%;
    font-size: 12px;
    margin-top: 20px;
    color: var(--f2-color);
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

@media screen and (max-width: 960px) {
.subbox_item {
    border-bottom: 1px var(--f3-color) solid;/*蓋預設*/
}

.subbox_item a{
    grid-template-columns: 200px 1fr;
    gap: 20px;
}

.subbox_item a:before{
    padding: 0;
    bottom: 0;
}
}

@media screen and (max-width: 768px) {
    .subbox_item a {
        grid-template-columns: 150px 1fr;
        align-items: start;
    }

    .blog_list_ri {
        padding: 0;
    }

    .blog_list_ri h5 {
        font-size: 16px;
    }

    /* 隱藏搜尋欄下拉三角形 */
    .blog_page .fa-caret-down::before,
    .blog_in_page .fa-caret-down::before {
        display: none;
    }
}

@media screen and (max-width: 425px) {
.subbox_item a{
    grid-template-columns: 1fr;
}

.subbox_item a:before{
    display: none;
}
}

/* +++ 文章首頁顯示 (module_i_news) -------------------- */

/* 英文標 */
.module_i_news .title_i_box h6{
    color: var(--ac-color);
    font: bold 48px/1.5rem var(--sfont);
}

/* 中文標 */
.module_i_news .title_i_box h4{
    color: var(--ac-color);
    font: bold 24px/1.5rem var(--sfont);
    padding: 1rem 0;
    letter-spacing: 0.4rem;
}

/* 隱藏-原遮罩 */
.module_i_news li a:after{
    display: none;
}

/* 文字區塊 ---------- */
.i_blog_ri{
    padding: 2rem 1rem;
}

.module_i_news li a:before{
    bottom: 0px;
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

@media screen and (max-width: 768px) {

    .module_i_news ul{
        grid-gap: 30px 20px;
    }

    .i_blog_ri{
        padding: .5rem;
    }

    .module_i_news li {
        border-bottom: 1px var(--f2-color) dotted;
    }
}

/* +++ 文章頁 (blog_in_page) -------------------- */

/* 標題 */
h4.blog_category_title {
    padding: 0;
    font-size: 20px;
    letter-spacing: .4rem;
    /* margin-bottom: 0; */
    color: var(--f1-color);
}

.blog_shareData {
    border-bottom: 1px solid var(--f3-color);
    padding-bottom: 10px;
}

.toShareNews{
    display: none;
}

/* 分享到文字 */
.toShareNews b {
    font-size: 12px;
    font-weight: 400;
    color: var(--f1-color);
}

/* sns icon */
.toShareNews a object {
    max-width: 20px;
}


/*文章按鈕 ----------*/

/*按鈕上下留白*/
.blog_back {
    margin: 3rem 0 1rem auto;
    width: calc(100% - 220px - 30px);
    border-top: 1px solid var(--f3-color);
    padding-top: 1rem;
}

.blog_back a.article_btn_prev,
.blog_back a.article_btn_back,
.blog_back a.article_btn_next{
    font: normal 16px/1.5 var(--font);
    letter-spacing: .15rem;
    background: transparent;
    color: var(--f1-color);
    transition: var(--tr);
}

.blog_back a.article_btn_prev:hover,
.blog_back a.article_btn_back:hover,
.blog_back a.article_btn_next:hover{
    background: transparent;
    color: var(--ac-color);
}

.blog_back a.article_btn_prev {
    text-align: left;
}

.blog_back a.article_btn_prev:before {
    content: '<<';
    display: inline-block;
    padding-right:.5rem;
}

.blog_back a.article_btn_next {
    text-align: right;
}

.blog_back a.article_btn_next:after {
    content: '>>';
    display: inline-block;
    padding-left:.5rem;
}


/* 相關文章 ---------- */

.news_related {
    background: var(--sub3-color);
    padding: 40px 15px 25px;
}

/* "相關文章"文字 */
.news_related h6 span:before {
    font-size: 18px;
    letter-spacing: .6rem;
    color: var(--f1-color);
    font-weight: 500;
}

/* 文章卡片 */
.news_related_list li a{
    background: transparent;
}

/* 上一頁(同商品) */
.lastPage{
    color: var(--bg-color);
    margin: 1rem auto;
    border-radius: var(--br);
    background: var(--ac-color);
}

.lastPage:hover{
    transition: var(--tr);
    filter: grayscale(1);
}


/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

@media screen and (max-width: 960px) {
    .blog_back{
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .blog_le,
    .blog_ri {
        margin-bottom: 50px;
    }

    .blog_back a.article_btn_prev,
    .blog_back a.article_btn_next,
    .blog_back a.article_btn_back {
        font-size: 12px;
    }

    .lastPage {
        font-size: 12px;
    }
}

@media screen and (max-width: 600px) {
    .blog_back {
        display: flex;
        justify-content: space-evenly;
    }

    .blog_back a {
        padding: .5rem;
        font-size: 12px;
    }  

    .blog_back a.article_btn_prev, 
    .blog_back a.article_btn_back, 
    .blog_back a.article_btn_next {
        font-size: 12px;
    }
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */

/* +++ 布局 -------------------- */
/* +++ 目錄頁 (blog_page) -------------------- */

/* 左右對調 */
.blog_page .blog_box {
    display: flex;
    flex-direction: row-reverse;
}

.blog_page .blog_le {
    width: 280px;
}

.blog_page .blog_ri {
    width: calc(100% - 280px - 20px);
    padding:0px;
    padding-right: 20px;
}

@media screen and (max-width: 768px) {
    .blog_page .blog_box {
        flex-direction: column;
    }
    .blog_page .blog_le,
    .blog_page .blog_ri {
        width: 100%;
        padding:0px;
    }
}
/* +++ 文章頁 (blog_in_page) -------------------- */

/* 隱藏側邊欄 */
.blog_in_page .blog_le{display: none;}

.blog_in_page .blog_ri {
    width: 100%;
    padding: 0;
    margin-top: 50px;
}

.blog_back {
    width: 100%;
    margin: 3rem 0 1rem 0;
}

h4.blog_category_title {
    text-align: center;
    font-weight: 500;
}

.blog_box_edit * {
    width: 90%;
    margin: 0 auto;
}




/* 隱藏-文章縮圖 *//*
.articel_mainPic {
    display: none;
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

/* =============== ▲ 文章管理 ▲ =============== */

/* =============== ▼ 購物車 ▼ =============== */
/* ＝＝＝ 【【  預設區塊不動 ↓↓↓  】】 ＝＝＝ */
/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px; }
.stellarnav.desktop li.bigMenu ul ul { top: 100%; left: 0; width: 100%; background: var(--f2-color); height: auto; max-height: 300px; overflow: auto; }
.stellarnav.desktop li.bigMenu ul ul li { margin: 0; }
.stellarnav.hasBigMenu li.bigMenu li.has-sub>a:after { border-left: 6px solid transparent; border-bottom: unset; border-right: 6px solid transparent; border-top: 6px solid var(--f1-color); right: 5px; }
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */
/* 商品下拉超過30個--結束 */
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width: 1500px; }
/* .product_info_page .main_part { max-width:1200px;} */
.product_page .show_content, .product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start; }
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid var(--f3-color);*/ min-height: 30vw; }
.product_page .products-list, .product-wrapper { width: calc(100% - 270px); }
ul.page { width: 100%; }
.product-layer-two li ul { position: static; margin-top: 5px; /*display:block !important;*/ width: 100%; margin-left: 0; }
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/ }
.product-layer-two li li { display: block; padding: 0; transition: all ease .3s; }
.product-layer-two li li a { padding: 5px 10px; }
.product-layer-two li li:hover>a { background: var(--bg-color); color: var(--f1-color); }
.product-layer-two>li { width: 100%; max-width: 100%; padding: 0; text-align: left; border-bottom: 1px dotted var(--f3-color); padding-bottom: 5px; }
.product-layer-two>li ul>li+li { margin-top: 5px; }
.product_info_page .product-layer-two { display: none; }
.product_info_page .products-list, .product-wrapper { width: 100%; }
.product-layer-two li li:hover { margin-left: 15px; }
.product-layer-two li li>a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50%, 0 100%); }
.product-layer-two li li:hover>a:before { background: var(--ac-color); }
.product_info_page .half_box { width: 100%; float: none; padding-right: 0; }
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex; }
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center; }
/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {
    .product_menu_list, .products-list, .product-wrapper { width: 100%; }
    .product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 5px; }
    .product_page .product-layer-two, .product_page .products-list { width: 100%; border-right: none; }
    .product_page .product_menu_list>h5 { display: block; }
    .product_page .show_content>a { order: 1; }
    .product_page ul.products-list { order: 2; }
    .product_page ul.page { order: 3; }
    .product_page .product_menu_list { width: 100%; order: 0; min-height: unset; }
}

/* ＝＝＝ 【【  版型設定(室設) ↓↓↓  】】 ＝＝＝ */

/* +++ 通用 -------------------- */

/* 圖片框 */
.products-list .pic,/*首頁相同*/
.related_list li figure{
    border-radius: var(--br);
    overflow: hidden;
/*     border: 3px solid transparent; */
    aspect-ratio: 4/3;
}

/* 外框 *//*
.products-list .pic:hover,
.related_list li figure:hover{
    border: 3px solid var(--ac-color);
    transition: var(--tr);
}

/* img */
.products-list .pic img,/*首頁相同*/
.related_list li a img {
    transform: scale(1);
    filter: saturate(1);
    -webkit-filter: saturate(1);
    transition: var(--tr);
}

.products-list .item:hover img,
.related_list li:hover img{
    transition: var(--tr);
    transform: scale(1.05);
    filter: saturate(1.5);
    -webkit-filter: saturate(1.5);
}

/* 商品名稱 */
.products-list .name,/*首頁相同*/
.related_list li a p{
    color: var(--f1-color);
    font-family: var(--font);
}

/* .products-list .item:hover .name,
.related_list li:hover p{
    color: var(--f2-color);
    transition: var(--tr);
} */

/* +++ 側邊 -------------------- */
/* 隱藏-分類欄 */
.product_page .product_menu_list{
    display: none;
}

/* +++ 商品目錄頁 (product_page) -------------------- */

.product_page .products-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* 隱藏-價格 */
.product_page .products-list .price {
    display: none;
}

/* 隱藏-詳細資料按鈕 */
.product_page .products-list .more {
    display: none;
}

.product_page .products-list .item a {
    display: block;
    padding: 0;
}

/* 商品名稱 */
.product_page .products-list .name {
    color: #fff;
    font-family: var(--font);
    text-align: center;
    position: absolute;
    z-index: 101;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.product_page .products-list .item a:hover .name {
    opacity: 1;
    transition: var(--tr);
}

/* 圖片遮罩 */
.product_page .products-list .pic:before {
    content: "";
    background: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.product_page .products-list .item a:hover .pic:before {
    background: rgba(0, 0, 0, 0.3);
    transition: var(--tr);
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */
@media screen and (max-width: 768px) {
    .product_page ul.products-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media screen and (max-width: 300px) {
    .product_page ul.products-list {
        grid-template-columns: 1fr;
    }
}

/* +++ 首頁顯示 (prod_part) -------------------- */

/* 中文標 */
.i_prod_tit span{
    color: var(--ac-color);
    font-size: 24px;
    letter-spacing: 0.4rem;
}

/* 英文標 */
.i_prod_tit h2{
    color: var(--ac-color);
    font: bold 48px/1.5rem var(--sfont);
    padding: 1rem 0;
}

/* +++ 商品頁 (product_info_page) -------------------- */

.product-wrapper {
    width: 100%;
    max-width: 900px;
}

/* 隱藏-資訊區塊 ---------- */
.sidebarBtn {
    display: none;
}

/* 輪播圖區塊 ---------- */
.product_main{
    width: 100%;
}

/* 打開手機版標題 */
.mobile_product_name {
    display: block;
    color: var(--f1-color);
    font-size: 20px;
    letter-spacing: .4rem;
    margin: 2.5rem 0;
    text-align: center;
}

/* 商品大圖區塊 */
.proImgSwiper {
    aspect-ratio: 4 / 3;
}

/* 隱藏小圖遮罩 */
#prod_thumbSwiper .swiper-slide::before{
    display: none;
}

/* TAB ---------- */

.prod_tabs {
    margin-top: 50px;
    width: 100%;
}

.pd_tabTitle li {
    border-bottom: none;
    background: var(--bg-color);
    border-bottom: 1px solid var(--f2-color);
    transition: all .5s;
}

.pd_tabTitle li a {
    color: var(--f2-color);
    letter-spacing: .6rem;
    transition: all .5s;
}

.pd_tabTitle li.activeTab {
    border-bottom: 1px solid var(--f1-color);
}

.pd_tabTitle li.activeTab a {
    color: var(--f1-color);
    font-weight: 600;
}

.pd_tabTitle li.activeTab::after {
    height: 0px;
}

/* 相關推薦 ---------- */
.prod_related {
    background: var(--sub3-color);
    padding: 40px 15px 25px;
}

.prod_related h6 span:before {
    font-size: 16px;
    letter-spacing: .6rem;
    color: var(--f1-color);
    font-weight: 600;
}

.related_list {
    gap: 8px;
}

.related_list li a{
    background: transparent;
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {
    
}

@media screen and (max-width: 600px) {
    /*tab標題*/
    .pd_tabTitle li a {
        font-size: 12px;
    }
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */

.prod_related h6 span:before {
    content: '推薦作品';
}

/* +++ 首頁顯示-指定樣式 (prod_part) -------------------- */
.prod_part {
    padding: 100px 0px;
    max-width: 1600px;
    width: 95%;
    margin: 0 auto;
}

.pageIndex .prod_part section{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

/* 標題區塊 ---------- */
.i_prod_tit{
    order: 1;
    text-align: left;
    padding-bottom: 10px;
}

/* 英文標題 */
.i_prod_tit h2 {
    color: var(--ac-color);
    font: normal 14px/1.5rem var(--font);
    padding: .5rem 0;
    text-transform: uppercase;
}

/* 中文標題 */
.i_prod_tit span {
    color: var(--f1-color);
    font-size: 24px;
    letter-spacing: 0.4rem;
    font-weight: bold;
}

/* 按鈕區塊 ---------- */
.i_prod_b{
    order: 2;
    margin: 0;
}
.i_prod_b a b{
    font-weight: 500;
    font-size: 14px;
}
.i_prod_b .fa-arrow-right::before {
    content: "+";
    font-weight: 500;
}

/* 關掉右移 */
.i_prod_b a:hover i.fa-solid.fa-arrow-right {
    margin: 0 0 0 10px;
    color: var(--ac-color);
}

.animated-arrow {
    background: transparent;
    color: var(--f2-color);
    border-radius: 0;
    height: 34px;
    line-height: 34px;
    width: fit-content;
}

/* 商品區塊 ---------- */
.pageIndex .productsListBox{
    order: 3;
    border-top: 1px solid var(--f3-color);
    padding-top: 50px;
}

.pageIndex .products-list {
    grid-template-columns: repeat(3, 1fr);
}

.pageIndex .products-list .item a{
    padding-bottom: 10px;
}

/* 名稱 */
.pageIndex .products-list .name {
    -webkit-line-clamp: 1;
    font-weight: 600;
    letter-spacing: .3rem;
    margin : 10px 0;
    padding-left: 10px;
    font-size: 16px;
    height: fit-content;
    line-height: 150%;
}

.pageIndex .products-list .item:hover .name{
    color: var(--ac-color);
    transition: var(--tr);
}

.pageIndex .products-list .more{
    display: none;
}

/* 只顯示6項 */
.pageIndex .products-list .item:nth-child(n+7){
    display: none;
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 1024px) {
    .pageIndex .products-list {
        gap: 12px;
    }
}
@media screen and (max-width: 768px) {
    .pageIndex .products-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}
@media screen and (max-width: 480px) {
    .pageIndex .products-list .name{
        text-align: center;
        font-size: 14px;
        padding-left: 0;
    }
}

@media screen and (max-width: 300px) {
    .pageIndex .products-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* =============== ▲ 購物車 ▲ =============== */

/* =============== ▼ 聯絡我們 ▼ =============== */
/* ＝＝＝ 【【  xx 無預設區塊 xx  】】 ＝＝＝ */
/* ＝＝＝ 【【  版型設定(有編輯區) ↓↓↓  】】 ＝＝＝ */

.contact_page .main_part {
    max-width: 1000px;
}

/*標題*/
.blank_letter {
    font: 500 20px/1.5 var(--font);
    color: var(--f1-color);
    letter-spacing: .6rem;
    padding-top: 0;
    text-align: center;
}
/* 必填 */
.red {
    letter-spacing: .15rem;
}
/* 資訊區塊 ---------- */
/*左側改置上*/
.contact_content .information_left {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    padding: 0;
    margin-bottom: 100px;
    display: none; 
}

/* 隱藏聯絡資訊但顯示地圖 *//*
.contact_content .information_left .blank_letter,
.contact_content .list_before{
    display: none;
}

/* 地圖 *//*
.contact_le_nomap {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}

/*表單區塊 ---------- */
.contact_content .information_right {
    width: 90%;
    padding: 0 0 20px;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
}

/*表格設定*/
button,
input,
optgroup,
select,
textarea {
    outline: none;
}

.contact_form {
    color: var(--f1-color);
    grid-gap: 20px;
}

.contact_form li {
    margin-bottom: 8px;
    grid-template-columns: 1fr;
}

.contact_form li .form__label {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    max-width: 100%;
    text-align: left;
}

.contact_form li input.noborder,
.contact_form li textarea.noborder {
    border: none;
    background:rgba(0 0 0 /2%);
}

/* 按鈕 ---------- */
.contact_form li.last blockquote,
.contact_form li.last cite {
    border: 1px solid var(--ac-color);
    border-radius: 10px;
}

.contact_form li.last blockquote:hover,
.contact_form li.last cite:hover {
    filter: grayscale(1);
    transition: var(--tr);
}

/* 重新填寫 */
.contact_form li.last blockquote {
    color: var(--ac-color);
}

/* 送出 */
.contact_form li.last cite {
    background: var(--ac-color);
}

.contact_form li.last blockquote:hover input,
.contact_form li.last cite:hover input {
    letter-spacing: 4px;
}

.noborder {
    padding: 10px;
    border-radius: 10px;
}

.contact_form li:has(input[type=checkbox]) .form__insert,
.contact_form li:has(input[type=radio]) .form__insert {
    grid-template-columns: repeat(auto-fit, minmax(20px, 20px) minmax(200px, 1fr));
    line-height: 1.8;
}

.form select {
    width: 100%;
    border: 1px solid var(--f1-color);
    padding: 6px 26px 6px 6px;
}

/* +++ 首頁顯示 (i_contact_box) -------------------- */

.i_contact_box {
    width: 90%;
    max-width: 800px;
}

.pageIndex .contact_content .information_left{
    display: none;
}

.pageIndex .contact_content .information_right {
    padding: 0;
    width: 100%;
}

.pageIndex .blank_letter{
    text-align: center;
    display: flex;
    flex-direction: column;
    font: bold 26px/1.5 var(--font);
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {

    /*左側資訊*/
    .list_before {
        grid-template-columns: 1fr;
    }

    .list_before.info li,
    .list_before.info li:before {
        font-size: 12px;
    }

    /*表單設定*/
    .contact_form li {
        gap: 5px;
    }

    .form select {
        margin: 0;
    }

    .contact_form li.last blockquote,
    .contact_form li.last cite {
        padding: 0;
    }

    .contact_form li.last input {
        font-size: 12px;
    }
}

@media screen and (max-width: 600px) {
    .contact_form {
        margin-top: 20px;
    }

    .contact_form li {
        margin-bottom: 10px;
    }

    .contact_form li .form__label {
        font-weight: 500;
        background: transparent;
        padding: 0;
    }

    .contact_form li:has(input[type=checkbox]) .form__insert,
    .contact_form li:has(input[type=radio]) .form__insert {
        font-size: 12px;
    }

    .form select {
        font-size: 12px;
    }

    .list_before.info li {
        padding: 5px 5px 5px 70px;
    }

    .blank_letter {
        font-size: 16px;
        font-weight: 600;
    }

    .noborder {
        padding: 5px;
    }
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */
.contact_content {
    padding: 0px 10px 50px;
}

/* 隱藏標題 */
.blank_letter{
    color: transparent;
    text-align: right;
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

/* =============== ▲ 聯絡我們 ▲ =============== */

/* =============== ▼ FOOTER ▼ =============== */

/* ＝＝＝ 【【  預設區塊不動 ↓↓↓  】】 ＝＝＝ */

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {
    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {display: none;}
    .footer.with_shopping_mode {padding: 30px 0 70px;}
    #to_top {bottom: 60px;}
}

/* 【【  20250527 footer 切版 ↓↓↓  】】  */

.footer_set * {box-sizing: border-box;max-width: 100%;}
.footer_set {max-width:2000px;width: 100%;margin:auto;font-family:'Microsoft JhengHei',serif;border: 0;text-decoration: none;overflow: hidden;}
.footer_set img {width: auto;max-width: 100%;vertical-align: bottom;}
.footer_set ul {padding: 0 0;margin:0;}
.footer_set li {list-style: none;}
.footer_set h6,.footer_set h5,.footer_set h4,.footer_set h3,.footer_set h2 {margin: 0;}
.footer_set u {text-decoration: none;}
.footer_set p {margin: 0;}
.footer_set em,
.footer_set i {font-style: normal;}
.footer_set a {text-decoration: none;}
.footer_set dd,
.footer_set dt {margin: 0 0;}
.footer_set_key_word {opacity:0;position: absolute;left:0;top:0;}
.frr01{padding:75px 20px 35px 20px;background-color: #F8F8F8;position: relative;}
.footer_logo{display: block;max-width: 300px;position: static;margin:0;padding:0;}
.footer_logo a{display: block;}
.footer_logo span{display: block;color:#393939;font-size: 14px;font-weight: 400;line-height: 200%;letter-spacing: 0.2em;text-indent: 0.2em;text-align: center;margin-top: 15px;}
.frr02{max-width: 1500px;margin:auto;padding-bottom: 40px;border-bottom: 1px #C4C4C4 solid;margin-bottom: 25px;display: flex;justify-content: space-between;align-items: center;}
.frr02 p{width: fit-content;margin:0 20px;}
.frr02 p a{display: block;color:#393939;font-size: 14px;font-weight: 400;line-height: 200%;letter-spacing: 0.2em;padding-left: 25px;position: relative;transition: .5s;}
.frr02 p a:hover{transition: .5s;color:#A88878;}
.frr02 p a i{display: block;color:#393939;font-size: 14px;font-weight: 400;line-height: 157%;}
.frr02 p a img{position: absolute;top:50%;left: 0;transform: translateY(-50%);}
.frr03{max-width: 550px;width: 100%;min-width: 550px;display: flex;justify-content: space-between;align-items: center;}
.frr04{display: flex;justify-content: center;align-items: center;width: 31%;}
.frr04 u{display: block;width: fit-content;margin:0 15px;}
.frr04 a{display: block;width: fit-content;transition: .5s;}
.frr04 a:hover{filter: grayscale(50);}
.frr04 a+a{margin-left: 15px;}
.frr_copy{max-width: 1500px;margin:auto;text-align: center;}
.frr_copy p ,.frr_copy a{color:transparent;font-size: 12px;font-weight: 400;line-height: 140%;padding:0;border:none;}
.copy:before{display: none;}
@media (max-width:1200px) {.frr01{padding-top: 60px;}.frr02{flex-direction: column;}.frr02 p{margin:40px 0;}}
@media (max-width:768px) {.frr01{padding-bottom: 75px;}}
@media (max-width:600px) {.frr03{min-width: unset;width: fit-content;flex-direction: column;align-items: flex-start;}.frr04{width:fit-content;}.frr03>div+div{margin-top: 45px;}}

/* ＝＝＝ 【【  切板後微調 ↓↓↓  】】 ＝＝＝ */

.footer_set {
    font-family: var(--font);
}

.frr01 {
    padding: 75px 5% 35px 5%;
}

.frr_copy p, .frr_copy a {
    color: var(--f1-color);
}

.footer_logo span{
    font-size: 12px;
}

.frr02 p a img {
    top: 0%;
    transform: translateY(50%);
}

.footer_set i{
    font-size: 14px;
}

/* 隱藏揚京文字(有截圖) */
.copy a:first-of-type{
    display: none;
}

.frr04 {
    width: fit-content;
}


@media (max-width:480px) {
    .footer_logo{
        max-width: 250px;
        width: 60%;
    }
    .frr02 p {
        margin: 40px auto;
        width: 90%;
        max-width: fit-content;
    }
    .frr03{
        max-width: 250px;
        width: fit-content;
        margin: 0 auto;
        gap: 20px;
    }
    .frr03>div+div {
        margin-top: 0px;
    }

    .footer_set i {
        font-size: 12px;
    }

    .frr04 a img{
        height: 30px;
    }

}
/* =============== ▲ FOOTER ▲ =============== */

/* 20250806派工-設計案例點選無效*/
.stellarnav>ul>li:nth-of-type(5)>a:first-of-type:active{
    pointer-events: none
}

@media (max-width:768px) {

}