@charset "utf-8";
/* *************鎮金工工作室****************** */
/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
/* "Noto Sans TC" */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');
/* "Noto Serif TC" */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');




/* 英文粗字體 Crimson Pro */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&display=swap');
/* 英文字體 Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* 英文字體 Cormorant Garamond */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');



/*網站全域設定/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
:root {
  /* --Color: #1c3459; */
  --MainColor: #c9a063; /*網站主要色系*/
  --SubColor: #191919; /*網站文字色*/
  --SubColor1: #fcf9ea; /*網站輔助色系1*/
  --SubColor2: #6F94AB; /*網站輔助色系2*/
  --SubColor3: #344a63; /*網站輔助色系3*/
  --SubColor4: #124972; /*網站輔助色系4*/  
  --SubColor5: #dabca0; /*網站輔助色系5*/ 
  --SubColor6: #bb9d64; /*網站輔助色系6*/ 
  --SubColor7: #ad9b6d; /*網站輔助色系7*/ 
  --SFontE: "Inter", "Noto Sans TC",sans-serif;/*英文字體-無襯線*/
  --SFontEN: "Cormorant Garamond", "Noto Serif TC", serif,sans-serif, system-ui;/*英文標字體*/  
  --SFont: "Noto Serif TC", sans-serif;/*內文字體*/
  --SFont2: "Noto Sans TC", sans-serif;/*內文黑字體*/
  --pd100:100px 0;
  --m100:100px;
  --m50:50px;
  --m30:30px;
  --f80:80px;
  --f60:60px;
  --f52:52px;
  --f48:48px;
  --f44:44px;
  --f40:40px;
  --f36:36px;
  --f32:32px;
  --f28:28px;
  --f24:24px;
  --f22:22px;
  --f20:20px;
  --f18:18px;
  --f17:17px;
  --f16:16px;
}
@media (min-width:1520px) {
  :root{
    /* --f52:60px;
    --f28:32px; */
  }
}
@media (max-width:1024px) {
:root{
  --f80:70px;
  --m50:40px;
  --m30:25px;
  --f52:48px;
  --f48:40px;
  --f44:38px;
  --f40:36px;
  --f36:32px;
  --f32:28px;
  --f28:24px;
  --f24:22px;
  --f22:20px;
  --f20:18px;
}
}
@media (max-width:768px) {
:root{
  --pd100:70px 0;
  --m100:70px;
  --f80:60px;
  --m50:30px;
  --m30:20px;
  --f52:44px;
  --f48:32px;
  --f44:30px;
  --f40:28px;
  --f36:26px;
  --f32:24px;
  --f28:22px;
  --f24:20px;
  --f20:17px;
  --f18:16px;
  --f17:16px;   
  --f16:15px;
}
}
@media (max-width:600px) {
:root{
  --pd100:50px 0;
  --m100:50px;
  --m50:25px;
  --f80:52px;
  --f52:36px;
  --f48:28px;
  --f44:26px;
  --f40:24px;
  --f36:22px;
  --f32:20px;
  --f28:20px;
  --f24:18px;
  --f18:16px;
  --f17:15px;  
}
}
@media (max-width:375px) {
:root{
  --f80:48px;
  --f52:32px;
  --f48:24px;
  --f44:22px;
  --f40:20px;
  --f36:18px;
  --f32:18px;
  --f28:18px;
  --f24:17px;
  --f22:17px;
  --f20:16px;
  --f18:15px;  
  --f16:14px;
}
}
/*網站全域設定/＝＝＝＝＝*/


/*反白顏色*/
/* ::-moz-selection { background-color: #060303; color: #fff; }
::selection { background-color: #060303; color: #fff; } */



/*卷軸*/
/* &::-webkit-scrollbar {
    background: #f1f1f1;
    width: 7px;
}
&::-webkit-scrollbar-button {
    display: none;
    background: #f1f1f1;
    border-radius: 0;
}
&::-webkit-scrollbar-track-piece {
    background: #f1f1f1;
}
&::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
}
&::-webkit-scrollbar-track {
    box-shadow: transparent;
} */



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    background: transparent;
    padding: 0;

}

.header_area.sticky {
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    box-shadow: unset;
    background: transparent;
}
.main_header_area:before {
    content: "";
    background: linear-gradient(180deg, #705c4e, transparent);
    width: 100%;
    height: 10vw;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
    opacity: .6;
    transition: .5s;
}

.pageIndex .main_header_area:before {background: linear-gradient(180deg, #ceccbb, transparent);}
.main_header_area:after {
content: "";
width: 100%;
top: 0;
left: 0;
padding: 0 40px;
transition: .4s ease;
box-shadow: none;
width: 100%;
background: rgb(255 255 255 / 90%);
position: absolute;
left: 0;
top: 0;
backdrop-filter: blur(10px);
}
.main_header_area:after {
height: 0%;
}
.header_area.sticky .main_header_area:after {
height: 100%;
}
.header_area.sticky .main_header_area::before {content: none;}






.main_header_area .container {
    max-width: 100%;
    /* max-height: 110px; */
    padding: 0 40px;
    transition: 0.5s;
    padding: 0;
}

.header_area .main_header_area {
    background: transparent;
    padding: 0 5vw 0;
    transition: all 0.3s;
    position: relative;
    padding: 0;
}

.header_area.sticky .main_header_area {
    background: transparent;
    padding: 0;
    transition: all 0.3s;
    border: 0;
}

.navigation {
    grid-template-columns: 1fr;
    align-items: center;
}




/*選單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/
.pageIndex .stellarnav, .stellarnav {
    padding: 0 30px;
}
.header_area.sticky .stellarnav {
    opacity: 1;
    transition: all 0.3s;
    pointer-events: unset;
}

/* 第一層 */
.stellarnav > ul > li:last-child, .footer_menu a:last-child {display: none;}
.stellarnav > ul > li {
    position: relative;
    padding: 0 10px;
    font-size: 0;
}
.stellarnav > ul > li:after {
    content: "";
    display: block;
    background-color: transparent;
    width: 0;
    height: 50px;
    position: absolute;
    top: -32%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s;
    pointer-events: none;
    content: none;
}
.stellarnav > ul > li:hover::after {
    box-shadow: rgb(255, 255, 255) 0px 0px 31px;
    width: 100%;
    transition: .5s cubic-bezier(0.77, 0, 0.65, 0.99);
}
.stellarnav > ul > li.has-sub > a {
    padding-right: 5px;
}
.stellarnav > ul > li > a {
    font-family: var(--SFont);
    color: #1c1c1c;
    color: #fff;
    letter-spacing: 0.12em;
    height: 100%;
    margin: 0;
    font-weight: 500;
    position: relative;
    padding: 10px 5px;
    display: block;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1px;
    color: #fff;
    padding: 28px 5px;
    transition: all .4s ease;
}
.header_area.sticky .stellarnav > ul > li > a {
    color: #1c1c1c;
    padding: 40px 5px;
}

/* .stellarnav > ul > li > a:before{
content:'';
width: 0%;
height: 1px;
display: block;
position: absolute;
bottom: 5px;
top: auto;
z-index: 1;
background-color: #fff;
-webkit-transition: width .3s cubic-bezier(.47,0,.745,.715);
transition: width .3s cubic-bezier(.47,0,.745,.715);
left: auto;
right: 0;
}
.sticky .stellarnav > ul > li > a:before{
background-color: #c09a66;
bottom: 0;
height: 3px;
} */
.stellarnav.desktop > ul > li > a:hover {
    color: #c09a66;
    transition: .5s ease;
}
.stellarnav > ul > li > a:hover:before {
    color: #000;
    transition: .5s ease;
    transition: width .3s cubic-bezier(.19,1,.22,1);
    left: 0;
    width: 100%;
}
.stellarnav ul li:hover a {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.stellarnav ul ul>li>a:hover, .stellarnav ul ul>li>a:focus {
    color: #131413;
    opacity: 1;
}
/* 下拉符號移除 */
.stellarnav li.has-sub > a:after{
    content: none;
}

/* 第二層 */
.stellarnav ul ul {
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    list-style: none;
    z-index: 98;
    white-space: nowrap;
    background: #f0f0f0;
    background: #fff;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    /* margin-left: -75px; */
    box-shadow: 0 3px 5px rgba(0, 0, 0, .175);
    border: none;
    min-width: auto;
    width: fit-content;
    margin: 0;
}
.stellarnav li li {
    border: 0;
    width: 100%;
    float: left;
    clear: both;
    position: relative;
    text-align: left;
}
/* .stellarnav.desktop li li.has-sub > a:after{
    content: '';
    display: block;
    height: 0px;
    border-bottom: solid 3px #777;
    position: absolute;
    top: 50%;
    right: 15px;
    height: 8px;
    width: 8px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    -webkit-transition: border .2s;
    transition: border .2s;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-color: transparent #c5a469 #c5a469 transparent;
} */
.stellarnav.desktop li.has-sub li a {
    font-size: 13px;
    text-align: center;
    padding: 10px 20px;
    white-space: nowrap;
    letter-spacing: 1.5px;
    font-family: var(--SFont);
    transition: all .5s;
    letter-spacing: 0.1em;
    transform: translateX(0);
    padding-right: 50px;
    text-align: left;
}
.stellarnav.desktop li.has-sub li:not(:last-child) a {
    border-bottom: 1px solid #f6f6f6;
}
.stellarnav.desktop li.has-sub li a:hover{
    color: #fff;
    background: #504943;
}
.news_classes > li:hover > a, .news_classes > li:focus > a {
    color: #fff;    
    background: #808080;
}
/* 第三層 */
.stellarnav ul ul ul {
    top: 0;
    left: 100%;
    margin: 0;
    width: fit-content;
    transform: unset;
}



.me_tp_features {
    display: none;
}

/*電腦LOGO = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.nav-header {
    grid-row: 1;
    width: fit-content;
    max-width: 140px;
    padding: 10px;
    transition: all 0.4s;
    font-size: 0;
    position: absolute;
    background: transparent;
    z-index: 9999;
}
.sticky .nav-header {
    /* padding: 6px 0; */
    max-width: 100px;
}
.nav-brand {margin: 0;}
.nav-brand img {
    max-width: 100%;
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
}

body:not(.pageIndex) .nav-brand {
    margin: 0;
    aspect-ratio: 1 / 1;
    display: block;
    width: 100%;
    height: auto;
    background: url(https://pic03.eapple.com.tw/achen/logo2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0;
    font-size: 0;
}
body:not(.pageIndex) .nav-brand img {
    opacity: 0;
}

body:not(.pageIndex) .sticky .nav-brand {
    background: transparent;
}
body:not(.pageIndex) .sticky .nav-brand img {
    opacity: 1;
}




/*手機LOGO
.nav-brand-m {}
*/


/*footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.box_link{
    display: flex;
    position: absolute;
    right: 0;
    flex-direction: row;
    width: fit-content;
    max-width: fit-content;
    gap: 7px;
}
.box_link a {
    background: #ffffff;
    border: 0;
    font-size: 18px;
    border-radius: 25px;
    display: flex;
    margin: 0;
    padding: 10px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    transition: .5s ease;
}
.box_link a:hover {
    background: #ffffff78;
    color: #2b2724;
}

.footer {
    position: relative;
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 0;
    background-image: url(https://www.kiyomizudera.or.jp/assets/img/common/pc_bg_02.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100;
    background: #504943;
}
.footer .center {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5% 40px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.footer_logo {}
.footer_logo a {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 35 / 36;
    background: url(https://pic03.eapple.com.tw/achen/logo2.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.footer_logo img {
    max-width: 100%;
    opacity: 0;
}


/* footer資訊*/
.footer_info{ }

.footer_info {
    text-align: center;
    width: 100%;
    display: grid;
    grid-template-columns: 140px 1fr;
    grid-gap: 40px;
    padding: 0;
    position: relative;
}

.footer_info:nth-child(1) > ul {   }


/* 文字共用 */
.footer_menu a, .footer_info li p{position: relative;border: 0;/* margin: 0; */color: #fff;background: transparent;padding: 0 20px;font-family: var(--SFont);font-size: 13px;line-height: 2;letter-spacing: 1px;font-weight: 400;opacity: 1;text-align: left;margin: 0;width: fit-content;}

.footer_info li:nth-child(1) {display: flex;padding: 0;flex-direction: column;}
.footer_info li p:before {
color: #fff;
font-family: var(--SFontEN);
margin-right: 5px;
letter-spacing: 1px;
font-weight: 500;
}

/* .footer_info li p.tel:before {content: 'TEL : ';}
.footer_info li p.phone:before {content: 'TEL : ';}
.footer_info li p.mail:before {content: 'EMAIL : ';}
.footer_info li p.add:before {content: 'ADD : ';} */
.footer_info li p{padding: 0;}
.footer_info li p+p{margin-left: 0;}
.footer_info li p a {color: #fff;}

.footer_info li:nth-child(2){padding: 0;padding-top: 10px;margin-top: 10px;border-top: 1px solid rgba(203,203,203,.6);}
.footer_menu {font-size: 0;width: 100%;display: flex;margin-left: -20px;}
.footer_menu a {       
    line-height: 2.4;
    -webkit-transition: linear 0.2s, opacity 0.8s linear 0.2s;
    transition: all 0.3s linear;
}
.footer_menu a:after{
    content: "";
    display: block;
    position: absolute;
    width: 2px;
    height: 20px;
    background-color: rgba(118, 118, 118, 0.2);
    right: 0;
    top: 5px;
}
.footer_menu a:first-child{display: none;}
.footer_menu a:hover {
    background: transparent;
    color: var(--MainColor);
}


/* ------------------------------------------------------------------------------------------------------------ */

.copy {
text-align: center;
    padding: 12px 0;
    border-top: 0;
    align-items: center;
    color: #b4b4b4;
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    position: relative;
    justify-content: center;
    font-family: var(--SFontEN);
    font-size: 10px;
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 400;
    background-color: #504943;
}
.copy a {color: #b4b4b4;} 

/* 浮動按鈕 */

/* 置頂按鈕 */
/* #to_top {
left: unset;
background: transparent;
box-shadow: none;
border-radius: 0;
cursor: pointer;
position: absolute;
bottom: 25px;
right: 0px;
-webkit-box-align: center;
align-items: center;
font-size: 13px;
font-weight: 400;
color: #453d33;
padding: 10px;
padding-left: 62px;
height: 40px;
transform-origin: top right;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
-webkit-transition: all .4s ease;
transition: all .4s ease;
line-height: 2.1;
font-family: var(--SFontE);
z-index: 100;
mix-blend-mode: hard-light;
}
#to_top i.top {
width: 20px;
height: 20px;
position: absolute;
top: 0;
left: 0;
width: 48px;
height: 100%;
}
#to_top i.top:before {
top: 50%;
left: 0px;
width: 100%;
height: 1px;
background-color: #453d33;
transform: unset;
}
#to_top i.top:after {
content: "";
position: absolute;
top: 50%;
left: 0;
height: 1px;
width: 10px;
background-color: #453d33;
-webkit-transform-origin: left center;
-ms-transform-origin: left center;
transform-origin: left center;
-webkit-transform: rotate(-35deg);
-ms-transform: rotate(-35deg);
transform: rotate(-35deg);
}
#to_top:hover {
opacity: 0.6;
transition: opacity 0.2s;
} */




/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 商品下拉超過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: #efefef;
    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 #898989;
    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個--結束 */





/* = = = 大圖-分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = *
/*預設解除背景輪播*/
#content_main, #content {margin: 0;background: transparent;padding: 80px 0;background-repeat: repeat;padding: 0;background: #FCFCFB;}
.bannerindex {position: relative;height: auto;/* min-height: 90vh; */}
/* 大圖尺寸 */
.bannerindex .swiper-banner {
position: static;
margin: 0;
height: auto;
}
/* .bannerindex .swiper-wrapper {height: 90vh;} */
.bannerindex .swiper-slide {height: 100%;}
.bannerindex .swiper-banner .swiper-slide img, .bannerindex .swiper-banner .swiper-slide-active img{
/* 大圖切換閃爍-opacity */
opacity: unset !important;
width: auto;
object-fit: contain;
height: 100%;
object-fit: cover;
width: 100%;
height: 100%;
max-width: 100%;
}







/* 大圖點點按鈕 */
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 12px;
    display: none;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
    border-radius: 0;
    height: 4px;
    width: 20px;
}
.swiper-pagination-bullet {
    opacity: .5;
    background: #fff;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}
/* 大圖點點按鈕END */


/* 大圖進場 */
.swiper-wrapper:before, .swiper-wrapper:after {
    content: "";
    position: absolute;
    z-index: 100;
    pointer-events: none;    
    opacity: 0;    
} 
/* 圖內層 */
.swiper-slide:before, .swiper-slide:after {
    content: "";
    position: absolute;
    z-index: 100;
    pointer-events: none;    
    opacity: 0;    
} 
.swiper-slide img { height:auto;}







/* .swiper-slide.swiper-slide-active:nth-child(1):before, .swiper-slide.swiper-slide-active:nth-child(2):before{
    -webkit-animation: txt-show 1.2s ease-in-out forwards;
    animation: txt-show 1.2s ease-in-out forwards;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
} */
.swiper-wrapper:before{    
    -webkit-animation: fadeInUp01 1.8s cubic-bezier(0.215,0.61,0.355,1) both;
    animation: fadeInUp01 1.8s cubic-bezier(0.215,0.61,0.355,1) both;
    -webkit-animation-delay:0.6s;
    animation-delay:0.6s;
}
.swiper-wrapper:after{    
    -webkit-animation: txt-show 1.2s ease-in-out forwards;
    animation: txt-show 1.2s ease-in-out forwards;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}



@keyframes txt-show {0% {opacity: 0;}100% {opacity: 1;}}
@keyframes fadeInUp01 {0% {transform: translateY(20px) translateX(-50%);opacity: 0;}100% {transform: translateY(0) translateX(-50%);opacity: 1;}}





@media screen and (max-width: 1500px) {
/* = = 大圖 = = */

}
@media screen and (max-width: 1200px) {
/* = = 大圖 = = */

}
@media screen and (max-width: 1024px) {
/* = = 大圖 = = */

}
/* @768上方區域_平板版面768px */
@media screen and (max-width: 768px) {
/* = = 大圖 = = */

}

@media screen and (max-width: 660px) {
/* = = 大圖 = = */ 

}

@media screen and (max-width: 480px) {
/* = = 大圖 = = */ 

}



/* = = = 主設定-分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 麵包屑 */
.path {
padding: 0 10px;
border-bottom: 1px solid #e5e5e5;
background-color: #fff;
margin-bottom: 50px;
padding: 20px 0;
text-align: center;
display: none;
}




/* main */
div#page{
background-size: auto;
position: relative;
}

.edit_part{
    padding: 0;
}
.main_part {
    width: 100%;
    min-width: 100%;
    margin: auto;
    padding: 80px 20px;
    /* padding-left: 2%;
    padding-right: 2%; */
    padding-bottom: 80px;
}
.show_content {
    margin: auto;
    padding: 0;
    font-family: var(--SFont);
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.subalbum-menu {
    margin: 0;
    padding: 0;
}

.edit {
    color: #262626;
    margin: auto;
    padding: 20px 0 60px;
    line-height: 1.7;
    letter-spacing: 0.5px;
    font-weight: 400;
}


/*內頁BANNER 設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.banner {
    position: relative;
    background: #f5f2f0;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: 50%;
    aspect-ratio: 100 / 39;
    overflow: hidden;
    /* background-image: url(https://pic03.eapple.com.tw/achen/banA.jpg); */
}
.banner::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    animation: zoomOut 5s;
    background-size: cover;
    background-position: center;
    background-image: url(https://pic03.eapple.com.tw/achen/banA.jpg);
}
@keyframes zoomOut {
 0% { transform: scale(1.1); }
 100% { transform: scale(1);}
}

/* .banner::before {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    display: block;
    width: 100%;
    height: 180px;
    background: url(https://pic03.eapple.com.tw/achen/ban_mask.png);
}
.banner::after {
content: "";
    position: absolute;
    z-index: 2;
    bottom: 0;
    display: block;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, #FCFCFB, #fcfcfb00);
} */
.banner h5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    align-items: flex-start !important;
    padding: 0px 20px;
    margin: auto;
    max-width: 1300px;
    color: #fff;
    font-family: var(--SFontEN);
    font-size: 44px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 5px;
}
.banner h5:before {
    content: 'Works';
    position: relative;
    font-size: 26px;
    letter-spacing: 1.5px;
    text-transform: capitalize;
    line-height: 2;
}
.banner h5:after {
    content: '簡單、紮實、有效率地通往你的金工證照之路';
    display: block;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 2px;
    margin-top: 15px;
    margin-bottom: 0px;
    padding-bottom: 20px;
    position: relative;  
    animation: SlideUp 1s 0.1s ease-in-out forwards;
    opacity: 0; 
}
@keyframes SlideUp {
    0% {    opacity: 0;   -webkit-transform: translateY(30px);   transform: translateY(30px);    }
    100% {  opacity: 1;   -webkit-transform: translateY(0);    transform: translateY(0);    }
}





.banner.banA {}
.banner.banB {}
.banner.banD {}
.banner.banE {}

.contact_page .banner.banC h5:before {content: 'Contact Us';}
.contact_page .banner.banC h5:after {content: '打造屬於自己的金工之路';}

.article_b .banner.banblog h5:before {content: 'News';}
.article_b .banner.banblog h5:after {content: '溫度讓金屬柔軟，信念讓技藝堅定';}




@media screen and (min-width: 1400px) {}

/* @1200上方區域_平板版面1200px */
@media screen and (max-width: 1200px) {

}

/* @1024上方區域_平板版面1024px */
@media screen and (max-width: 1024px) {
    /* = = header = = */
    .header_area.sticky { position: fixed; }
    .header_area .main_header_area {
        backdrop-filter: blur(5px);
        border-bottom: 1px solid #ffffff9e;
    }
    .header_area.sticky .main_header_area{
        backdrop-filter: none;
        border: 0;
    }


    .navigation {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
    }
    /* logo*/
    .nav-header {
        max-width: 180px;
        padding: 20px 0 10px;
        margin: auto;
    }
    .sticky .nav-header {
        padding: 20px 0 0;
    }




    /* 導覽列 */
    .pageIndex .stellarnav {
        opacity: 1;
        pointer-events: unset;
    }
    .stellarnav ul {
        text-align: center;
    }
    .stellarnav > ul > li {
        /* padding: 10px 0; */
    }    
    .stellarnav > ul > li > a {
        letter-spacing: 0;
        margin: 0;
        font-size: 15px;
    }
    .stellarnav>ul>li:after {
        height: 3px;
        top: 100%;
        bottom: 0;
        transform: translate(-50%, 0);
    }
}


/* @768上方區域_平板版面768px */
@media screen and (max-width: 768px) {

    /* logo*/    
    .nav-header {
        max-width: 140px;        
        padding: 20px 0;
        margin-left: 0;
    }
    .sticky .nav-header {
        padding: 10px 0;
    }
    .nav-brand img { }




    /* = = header = = */
    .header_area {
        height: 80px;
    }
    .header_area .main_header_area {
        padding: 1vw 5vw 0;
        border: 0;
        backdrop-filter: none;
    }
    .navigation {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
    }



    /* 導覽列漢堡選單 */    
    .stellarnav.mobile {
        right: 0;
        left: unset;
    }
    .stellarnav.mobile .menu-toggle {
        display: flex;
        margin: 29px 0;
        padding: 0;
        flex-direction: row-reverse;
        align-items: center;
    }

    
    /* 漢堡選單樣式 */
    .stellarnav .menu-toggle:after {
        text-transform: capitalize;
        /* content: 'Menu'; */
        font-size: 14px;
        color: #fff;
        transform: scale(1);
        font-family: var(--SFontEN);
        letter-spacing: 2px;
    }
    .sticky .stellarnav .menu-toggle:after {
        color: #000;
    }
    .stellarnav .menu-toggle span.bars {
        display: block;
        margin: 0 0 0 10px;
    }
    .stellarnav .menu-toggle span.bars span {
        width: 32px;
        height: 2px;
        border-radius: 0;
        background: #717171;
        margin: 0 auto 8px;
        background: #fff;
        height: 1px;
    }
    .sticky .stellarnav .menu-toggle span.bars span {
        background: #000;
    }
    /* 黑色遮罩 */
    .stellarnav.mobile::before {
        content: "";
        position: fixed;
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        z-index: -5;
        line-height: normal;
        background-color: transparent;
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0;
        transition: 1s;
        content: none;
    }
    .stellarnav.mobile.active::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        border-radius: 0;
        opacity: 1;
        transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
    }
    
    /* 導覽列展開 */
    .stellarnav.mobile.left > ul {
        left: unset;
        right: 0;
        font-size: 0;
        max-width: 100%;
        padding: 0 30px;        
        /*右滑出現*/
        right: -100vw;
        overflow: hidden;
        transition: all .5s ease;
        overflow-y: auto;
    }
    /*卷軸*/
    .stellarnav.mobile.left > ul::-webkit-scrollbar {
        background: #eaeaea;
        width: 4px;
        height: 15px;
    }
    .stellarnav.mobile.left > ul::-webkit-scrollbar-button {
        display: none;
        background: #eaeaea;
        border-radius: 0;
    }
    .stellarnav.mobile.left > ul::-webkit-scrollbar-track-piece {
        background: #fbfbfb;
    }
    .stellarnav.mobile.left > ul::-webkit-scrollbar-thumb {
        background-color: #888;
        width: 4px;
        border-radius: 15px;
        border: 3px solid var(--MainColor);
    }
    .stellarnav.mobile.left > ul::-webkit-scrollbar-track {
        border-radius: 6px;
        height: 6px;
        background-color: #eaeaea;
    }
    .stellarnav.mobile.left.active > ul{        
        right: 0;
        max-width: 100%;
        width: 70%;
    }


    .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
        display: inline-block;
        font-size: 12px;
        background: transparent;
        height: 76px;
        width: fit-content;
        padding: 0;
        margin: 26px 0 28px;
        text-transform: capitalize;
        content: 'Menu';
        font-size: 14px;
        color: #000;
        transform: scale(1);
        font-family: var(--SFontEN);
        letter-spacing: 0.04em;
        height: fit-content;
        width: 100%;
        text-align: right;
        display: flex;
        flex-direction: row-reverse;
    }
    .stellarnav .icon-close {
        box-sizing: border-box;
        width: 18px;
        height: 12px;
        position: relative;
        display: inline-block;
        margin: 2px 9px 0 3px;
    }
    .stellarnav .icon-close:before , .stellarnav .icon-close:after {
        width: 18px;
        height: 0px;
        border-bottom: solid 1px #000;
    }
    /* 導覽列選取Hover效果 */
    .stellarnav ul:hover li a {
        opacity: 1;
        transition: all 0.3s ease-in-out;
    }


    /* 第一層 */
    .stellarnav.mobile > ul > li {
        border-bottom: 1px #eee solid;
        padding: 5px 0;
        display: block;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        flex-direction: column;
    }
    .stellarnav.mobile li.open {
        background: #f3f3f3;
        /* color: #fff; */
        padding: 0;
        padding-bottom: 5px;
    }
    .stellarnav.mobile > ul > li > a, .header_area.sticky .stellarnav.mobile > ul > li > a:not(.dd-toggle){
        text-align: left;
        overflow: auto;
        height: auto;
        line-height: 150%;
        display: block;
        letter-spacing: 0.08em;
        color: #333;
        font-size: 16px;
        letter-spacing: 0.04em;
        padding: 16px 12px 16px 30px;
    }
    .stellarnav.mobile li.open > a {
        border: 0;
    }    
    .stellarnav > ul > li > a:before{
        content: none;
    }
    /* +符號修改 = = */
    .stellarnav.mobile > ul > li > a.dd-toggle {
        top: 5px;
        padding: 10px;
    }
    .stellarnav.mobile > ul > li.open > a.dd-toggle {
        top: 0;
    }
    .stellarnav a.dd-toggle .icon-plus:before {
        width: 8px;
        height: 8px;
        border-bottom: solid 1px #666;
        top: 50%;
        left: 0;
        transform: rotate(-45deg);
    }
    .stellarnav a.dd-toggle .icon-plus:after {
        width: 8px;
        height: 8PX;
        top: 50%;
        border-bottom: solid 1px #666;
        transform: rotate(45deg);
    }
    .stellarnav li.open > a.dd-toggle .icon-plus {
        -moz-transform: translateY(10px) scaleY(-1);
        -webkit-transform: translateY(10px) scaleY(-1);
        -o-transform: translateY(10px) scaleY(-1);
        transform: translateY(10px) scaleY(-1);
    }

    /* +符號修改END = = */

    /* 第二層 */
    .stellarnav.mobile ul ul {
        left: unset;
        margin: 0 auto;
        box-shadow: none;
        width: calc(100% - 10px);
        margin: auto;
        left: unset;
        box-shadow: none;
        transform: unset;
    }
    .stellarnav li li {
        font-size: 14px;
        color: #333;
        font-family: var(--SFont);
        letter-spacing: 0.04em;
        font-size: 15px;
        color: #333333;
        letter-spacing: 0.04em;
    }
    .stellarnav.mobile li li.has-sub a {
        padding: 10px 30px 10px 20px;
    }
    .stellarnav a.dd-toggle .icon-plus {
        height: 80%;
    }
    .stellarnav li li a.dd-toggle .icon-plus:before, .stellarnav li li a.dd-toggle .icon-plus:after{
        border-bottom: solid 1px #ccc;
        top: 0%;
    }
    .stellarnav.mobile ul li:hover > a {
        opacity: 1;
        transition: all 0.3s ease-in-out;
        background: transparent;
        color: unset;
    }
    .stellarnav.mobile ul ul>li>a:hover{
        color: var(--MainColor);
    }

    /* 第三層 */
    .stellarnav.mobile li.open li.open {
        background: #fbfbfb;
    }
    .stellarnav li li li a{
        font-size: 14px;
    }

}


/* @660上方區域_平板版面660px */
@media screen and (max-width: 660px) {
    /* 共用 */
    .main_part {
        width: 100%;
        padding-bottom: 40px;
    }
    .show_content {
        padding: 0 30px;
        width: 100%;
    }
   
    /* 導覽列展開 */
    .stellarnav.mobile.left.active > ul {
        width: 100%;
        max-width: 440px;
    }


}



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 購物車 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part {
    max-width: 140px;
}

/* .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 #ccc;*/
    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: #fff;
    color: #ad925e;
}

.product-layer-two>li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    border-bottom: 1px dotted #ccc;
    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: #ad925e;
}

.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;
}

/*顏色*/
.products-list .more {
    border: 1px solid #ADA17E;
    color: #ADA17E;
}
.products-list .item a:hover .more {
    background: #ADA17E;
}
/*購物車/內層＝＝*/
.product_info_page .main_part {
    width: 90%;
}
/*按鈕顏色*/
.inquiry_a1 {
    background: #cbc0a0;
}
.inquiry_a2 {
    background: #bdab77;
}
.inquiry_a3 {
    background: #ADA17E;
}
.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover {
    background: #222;
}
.lastaction {
    color: #ADA17E;
    background-color: #f2f2f2;
}
.nextaction {
    background-color: #ADA17E;
}
.lastPage {
    background: #ADA17E;
}

/*商品側邊規格*/
.product_info li .txt_box {
    color: #222222;
    width: 100%;
}
.sidebarBtn .sp_price {
    color: #cbc0a0;
}
.mobile_product_name {
    font-size: 24px;
}
/*相關推薦*/
.prod_related h6 span:before {
    font-size: 28px;
}



@media screen and (max-width: 1200px) {}
@media screen and (max-width: 980px) {}
@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));
        grid-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;
    }
}
@media screen and (max-width: 600px) {}



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*B文章設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/* article_b */
.article_b .show_content {
    display: flex;
}
.article_b .blog_le, .article_b .blog_ri {
    width: 100%;
}
.article_b .blog_in_page .blog_ri {
    width: 100%;
    display: block;
    padding: 0;
    margin: auto;
    min-height: fit-content;
}
/* 左側 */
.article_b .blog_le {
    padding: 0;
    padding-right: 0;
    width: 280px;
}
.article_b.blog_in_page .blog_le {
    border-right: 1px solid #e5e5e5;
}
/* 分類欄位 */
.article_b h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: var(--SFont);
}
.article_b .blog_search input[type=search] {
    border-radius: 0;
}
.article_b .blog_le .accordion {
    border-radius: 0;
    border: 0;
}
.article_b .accordion li .link a {
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 1.5;
    border-bottom: 1px solid #d8d8d8;
    padding: 10px;
    /* padding-left: 0; */
    color: #333;
}
.fa-chevron-down::before {
    content: "\f078";
    color: #999;
}
.article_b .blog_le .accordion > li:hover .link a, .article_b .blog_le .accordion > li.on_this_category .link a {
    color: #000 !important;
    font-weight: 700;
}
.article_b .blog_le .accordion > li:hover .link i {
    color: #333 !important;
}
.article_b .blog_le .accordion > li:hover {
    background: transparent !important;
}
/* 已選分類 */
.article_b .blog_le .accordion > li.on_this_category {
        background: #ECECE7 !important;
}
.article_b .blog_le .accordion > li.on_this_category .link a {
    color: #222 !important;
    font-weight: 500;
}
.article_b .blog_le .accordion > li.on_this_category .link i {
    color: #fff !important;
}
/* 第二層分類欄位 */
.article_b .submenu {
    background: #f5f5f5;
    font-size: 14px;
}
.article_b .submenu a {
    line-height: 1.25;
    padding: 10px 10px 10px 30px;
    background: transparent;
}
.article_b .submenu a i {
    left: 12px;
    font-size: 13px;
}
.article_b .submenu li.on_this_category a, .article_b .submenu a:hover {
    background: #262626;
    color: #FFF;
}


/* 右側 */
.article_b .blog_ri {
    width: calc(100% - 280px);
    padding-left: 60px;
}
/* 圖文區塊 */
.article_b .blog_subbox {
    gap: 0;
    display: flex;
    flex-wrap: wrap;
}
.article_b .subbox_item {
    display: block;
    width: 100%;
    position: relative;
    padding: 0;
    transition: 0.5s;
    width: 33.3333333333%;
    padding: 15px;

}
.article_b .subbox_item:hover {}
.article_b .subbox_item:hover .blog_list_ri h5, .article_b .subbox_item:hover .blog_list_ri p{}
.article_b .subbox_item a {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    grid-gap: 0;
    height: 100%;
    align-content: start;    
    border: 1px solid #e1e1e1;
    padding-bottom: 40px;
}
.article_b .subbox_item a:before, .article_b .subbox_item a:after{
    content: none;
}
.article_b .subbox_item a:before {
    content: 'VIEW MORE';
    font-size: 100px;
    line-height: 30px;
    color: #957d5c;
    font-family: var(--SFontEN);
    width: 100%;
    font-size: 14px;
    letter-spacing: .5px;
    order: 4;
    display: flex;
    right: 0;
    bottom: 0;
    justify-content: flex-end;
    left: unset;
    align-items: center;
    position: absolute;
    padding: 15px 20px;
    padding-right: 45px;
    opacity: 1;
}
.article_b .subbox_item a:after {
    content: ' ';
    background: url(https://pic03.eapple.com.tw/achen/news_arrow.svg);
    position: absolute;
    display: block;
    opacity: 1;
    background-repeat: no-repeat;
    border: 0;
    top: unset;
    bottom: 26px;
    right: 26px;
    left: unset;
    width: 7px;
    height: auto;
    display: flex;
    aspect-ratio: 7 / 9;
    background-position: center;
    transition: all .4s ease;
}
.subbox_item a:hover:after{animation: NarrRight 1.2s ease-in-out infinite;}
@keyframes NarrRight {0%, 100% {-webkit-transform: translate(0, 0%);transform: translate(0, 0%);}50% {-webkit-transform: translate(5px, 0%);transform: translate(5px, 0%);}}


.article_b .blog_list_le {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    aspect-ratio: 1 / 1;
    margin: 0;
    border: 0;
    overflow: hidden;
    position: relative;
}
.article_b .blog_list_le:before {
    content: "";
    position: absolute;
    background-image: linear-gradient(0deg, rgb(127 103 86) 0%, rgb(175 152 132) 100%);
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all .4s ease-in-out;
}
.article_b .blog_list_le:hover:before {opacity: 1;}
.article_b .blog_list_le img {
    transition: all 0.3s linear;
    width: 100%;
    display: block;
    backface-visibility: hidden;
    height: auto;
}
.article_b .blog_list_le:hover img {
opacity: 0.4;
-webkit-transform: scale(1.05);
transform: scale(1.05);
}

.article_b .blog_list_ri {
    display: block;
    padding: 0;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 20px;
}
.article_b .blog_list_ri h5 {
white-space: normal;
    color: #222;
    font-family: "Noto Serif TC", serif;
    margin: 10px 0;
    letter-spacing: 1px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.6;
    height: fit-content;
    overflow: hidden;
    font-weight: 600;
    order: 2;
font-size: 20px;
font-weight: 400;
transition: all .4s ease;
}
.article_b .blog_list_ri:hover h5{color: #705a37;}
.article_b .blog_list_ri em {
    font-size: 12px;
    color: #222;
    letter-spacing: .5px;
    font-style: normal;
    display: block;
    order: 1;
    margin-top: 5px;
}
.article_b .blog_list_ri p {
    font-size: 15px;
    white-space: normal;
    word-break: break-all;
    color: #808080;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 24px;
    max-height: 50px;
    overflow: hidden;
    order: 3;
    font-family: var(--SFont2);
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
    height: 55px;
    font-size: 15px;
}


/* 內層 */
.blog_in_page.article_b .show_content.blog_box {
    flex-direction: column;
    max-width: 1300px;
}
.blog_in_page.article_b.blog_in_page .blog_le {display: none;}
.blog_in_page h4.blog_category_title {
    width: 100%;
    letter-spacing: 2px;
    text-align: left;
    padding: 30px 0 0;
    font-size: var(--f28);
    border-bottom: 1px solid #ddd;
    /* color: #222; */
    font-weight: 400;
    /* font-size: 30px; */
    margin-bottom: 20px;
    padding-bottom: 20px
}


/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*A文章設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/* article_a */
.article_a .show_content {
    text-align: center;
}

/*文章功能頁/ = = = = */
/* 左側分類欄位 */
.article_a .blog_le {
    position: relative;
    width: 100%;
    padding: 0;
    z-index: 1;
    max-width: 1300px;
    margin: auto;
    text-align: center;
}
.article_a h5.blog_le_t {
text-align: center;
    padding: 10px;
    width: 100%;
    margin: 0 0 20px;
}
.article_a h5.blog_le_t em {
    font-weight: 500;
    font-size: 28px;
    letter-spacing: 3px;
    color: #333;
    text-align: center;
    font-family: var(--SFont);
}
.article_a .blog_search {
    position: relative;
    margin-bottom: 10px;
    opacity: .8;
    display: none;
}
.article_a .blog_search input[type=search] {
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    background: #eee;
    border-radius: 0;
    padding: 10px 40px 10px 10px;
}
/* 分類列 */
.article_a .blog_le .accordion {
    border-radius: 0;
    border: 0;
    overflow: hidden;
    font-size: 0;
    text-align: center;
    display: block;
    margin-top: 20px;
}
.article_a .blog_le .accordion li {
    transition: .2s ease-out;
    border: 0;
    position: relative;
    overflow: unset;
    height: fit-content;
    display: inline-block;
    max-height: 50px;
    margin: 0 6px;
}
.article_a .accordion li .link {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    border: 1px solid #ccc;
}
.article_a .accordion li .link a {
    padding: 5px 10px;
    font-weight: 700;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 1px;
    font-size: 16px;
    color: #333;
    font-weight: 400;
    margin: 0;
    padding: 10px 30px;
}
/* 分類第二層 */
.article_a .submenu {
    background: #efefef;
    font-size: 14px;
    position: absolute;
    z-index: 100;
    top: 50px;
    left: 0;
    overflow: unset;
    opacity: 1;
    width: 100%;
    border: 0;
}
.article_a .submenu li+li {
    border-top: 1px solid #ccc !important;
}
.article_a .submenu a {
    color: #666;
    letter-spacing: 2px;
    transition: all 0.6s ease;
    word-break: break-all;
    line-height: 1;
    padding: 12px 20px 12px 30px;
    width: 100%;
    height: fit-content;
    font-size: 13px;
    background: #fbfbfb;
}
.article_a .submenu a i {
    left: 10px;
    font-size: 13px;
}
.article_a .submenu li.on_this_category a, .article_a .submenu a:hover {
    background: var(--MainColor);
    color: #FFF;
}
/* 當前頁面 */
.article_a .blog_le .accordion > li.on_this_category .submenu {
    display: none !important;    
    height: 100%;
}
.article_a .blog_le .accordion > li.on_this_category.open .submenu {
    display: block !important;
    height: 100%;
}




.article_a .blog_le .accordion > li:hover .link i, .article_a .blog_le .accordion > li.on_this_category .link i {
    color: #444 !important;
}

.article_a .blog_le .accordion > li.on_this_category{
    background: #eee !important;
}
.article_a .blog_le .accordion > li.on_this_category:hover .link a ,.article_a .blog_le .accordion > li:hover .link a{
    color:var(--SubColor)  !important;
}
.article_a .blog_le .accordion > li:hover {
    background: #eee !important;
}
.article_a .blog_le .accordion > li.on_this_category .link a {
    color: var(--SubColor)  !important;  
}


/* 右側圖文區 */
.article_a .blog_ri {
    width: 100%;
    padding: 0 0 0 20px;
    padding: 0;
    /* max-width: 1300px; */
    margin: auto;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    gap: 0;
}
.article_a h4.blog_category_title {
    width: fit-content;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin: 0;
}
/* 圖文區塊 */
.article_a  .blog_subbox {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0;
    display: flex;
    flex-wrap: wrap;
}
.article_a .subbox_item {
    position: relative;
    width: 100%;
    background: rgb(255 255 255);
    border-radius: 0;
    overflow: hidden;
    transition: .5s ease-out;
    border: 0;
    height: fit-content;
    width: 100%;
    margin: 0;
    background: transparent;
    width: 33.33%;
    padding: 0 25px;
    margin-bottom: 55px;
    box-sizing: border-box;
}
.article_a .subbox_item:hover {}
.article_a .subbox_item li:hover {
    transition: .5s ease-out;
    box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%);
}
.article_a .subbox_item a {
    grid-template-columns: 1fr;
    gap: unset;
    flex-direction: column;
    height: 100%;
    padding: 0;
    display: flex;
    /* border: 1px solid #eee; */
}
.article_a .subbox_item a:after, .article_a .subbox_item a:before {
    content: none;
}
/* 圖 */
.article_a .blog_list_le {
    max-width: 50%;
}
.article_a .blog_list_le {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    background-color: black;
    max-width: 100%;
    border: 1px solid #eee;
}
.article_a .blog_list_le img {
    width: 100%;
    transition: .4s ease;
}
.article_a .subbox_item a:hover img {
    z-index: 1;
    transition: 0.4s;
    /* filter: grayscale(1); */
    opacity: 0.8;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}


/* 文字 */
.article_a .blog_list_ri {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 15px 35px;
    align-items: flex-start;
}
.article_a .blog_list_ri {
    padding: 20px 0;
    width: 100%;
}
.article_a .blog_list_ri h5 {
font-size: var(--f20);
    text-align: left;
    color: #333;
    font-weight: 500;
    letter-spacing: 1px;
}
.article_a .blog_list_ri em {
    font-size: 14px;
    color: #aaa;
    margin: 10px 0 0;
    padding: 5px 0;
    letter-spacing: 0.04em;
    display: none;
}
.article_a .blog_list_ri em {
    margin: 10px 0;
    padding: 0;
}
.article_a .blog_list_ri p {
    font-size: var(--f16);
    letter-spacing: 0.08em;
    line-height: 1.5;
    font-weight: 400;
    color: #454545;
    display: none;
}


/*文章內層/ = = = = */
.blog_in_page h5.blog_le_t em {}
.blog_in_page .blog_ri {
    width: 100%;
    display: block;
    padding: 0;
    margin: auto;
    min-height: fit-content;
}
.blog_in_page h4.blog_category_title {
    width: 100%;
    text-align: left;
    font-size: var(--f28);
}

/* 上下篇按鈕 */
.blog_back {
    align-items: center;
    /* border-top: 1px solid #cecece; */
    padding: 40px 0;
    display: flex;
    -ms-flex-wrap: wrap;
    gap: 10px;
}
.blog_back a {
    font-size: 13px;
    letter-spacing: 0.08em;
}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next, .blog_back a.article_btn_back {
    background: #eee;
    background: transparent;
    transition: .4s ease;
    height: 45px;
    width: 180px;
    font-weight: 300;
    line-height: 43px;
    padding: 0 20px;
    position: relative;
    /* border-radius: 4px; */
    border: 1px solid #c2c2c2;
    color: #666;
    display: block;
    font-size: 15px;
    padding: 0 20px;
    position: relative;
}
.blog_back a.article_btn_prev {
    text-align: right;
}
.blog_back a.article_btn_prev:before, .blog_back a.article_btn_next:before{
    content: "";
    width: 10px;
    height: 10px;
    border-left: 1px solid #9e9e9e;
    border-bottom: 1px solid #9e9e9e;
    display: block;
    position: absolute;
    top: calc(50% - 5px);
}
.blog_back a.article_btn_prev:before{
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 15px;
}
.blog_back a.article_btn_next:before{
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    right: 15px;
}
.blog_back a.article_btn_next {
    margin-left: auto;
    text-align: left;
}
.blog_back a.article_btn_back {
    background: #f5f5f5;
    transition: .4s ease;
    display: none;
}
.blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
    border: 1px solid #504943;
    background: #504943;
    color: #fff;
}
.blog_back a.article_btn_back:hover {
    border: 1px solid #2c2c2c;
    background: #2c2c2c;
    color: #fff;
}
.blog_back a.article_btn_prev:hover:before, .blog_back a.article_btn_next:hover:before  {
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

/* 分享按鈕 = = */
.blog_shareData {
    border: 1px solid #ccc;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 20px;
    width: fit-content;
    padding: 10px;
    border-radius: 5px;
    margin: 0;
    display: none;
}
.toShareNews b, .toShareNews a, .toShareNews a object, .toShareNews a i {
    font-weight: 400;
    font-size: 14px;
    color: #333;
}
.toShareNews a object {
    filter: grayscale(1) brightness(1) contrast(1);
}
.toShareNews > a:hover > object {
    filter: none;
}
/* 文章編輯器 */
.blog_box_edit {
    background: transparent;
    padding: 0;
    margin: 10px 0;
    font-size: var(--f16);
    color: #2F2F2F;
    line-height: 1.8;
    padding: 0;
    letter-spacing: 0.04em;
    text-align: left;
}
.articel_mainPic {
    display: none;
}

/*文章-相關推薦*/
.news_related, .prod_related {
    display: none;
}
.news_related h6 span:before, .prod_related h6 span:before {
    font-size: 24px;
    color: #333;
    font-weight: 500;
    letter-spacing: 0.04em;
}
.news_related_list, .related_list {
    margin: 40px auto;
}
.news_related_list li, .related_list li {
    display: block;
    padding: 0px;
}
.news_related_list li a, .related_list li a {
    padding: 10px;
    background: #fff;
    height: 100%;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: .35s ease;
}
.news_related_list li a:hover, .related_list li a:hover {
    box-shadow: 4px 4px 15px rgb(181 177 172 / 25%);
    transition: .35s ease;
}
.article_a .news_related_list li figure {
    aspect-ratio: 1/1;
}
.news_related_list li a p, .related_list li a p{
    font-size: 16px;
    letter-spacing: 0.04em;
    color: #333;
    padding: 10px 0 5px;
    line-height: 1.5;
}
/* 按鈕 */
.news_related_b_box, .prod_related_b_box {
    margin: auto;
    background: transparent;
    color: #fff;
    position: relative;
    z-index: 1;
    min-width: 165px;
    width: 200px;
    height: 50px;
    border: 1px solid #0F0F0F;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #0F0F0F;
    overflow: hidden;
    transition: color 0s ease;
    border: 1px solid #bcbfbf;
}
.lastPage {
    color: #fff;
    background: transparent;
    transition: all .5s;
    font-family: var(--SFont2);
    font-weight: 500;
    letter-spacing: 0.12em;
    font-size: 16px;
    margin: 0 auto;
    color: #293943;
    line-height: 1.8;
}
a.lastPage:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    background-color: var(--SubColor2);
    transition: all 0.5s;
}
a.lastPage:hover {
    color: #fff;
}
a.lastPage:hover:after {
    width: 100%;
}




/*A文章內層設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/* article_a */
.blog_in_page.article_a .main_part{
    padding-bottom: 0;
}
.blog_in_page.article_a .blog_le, .article_a .blog_back a.article_btn_back, .article_a .news_related_b_box{
    display: none;
}
.article_a .blog_back a.article_btn_prev, .article_a .blog_back a.article_btn_next, .article_a .blog_back a.article_btn_back{
    width: 180px;
}

/* 相關文章 */
.article_a .news_related {
font-family: var(--SFont);
    background: transparent;
    padding: 80px 5%;
    margin: auto;
    display: block;
    padding: 0;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 60px;
    padding-bottom: 80px;
}
.article_a .news_related h6 {
width: 100%;
    max-width: 1400px;
    margin: 0 auto 20px;
    text-align: center;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    color: #232323;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left;
    padding: 12px 0;
    display: none;
}
.article_a .news_related_list {
    margin: 40px auto;
    max-width: 1400px;
}




@media screen and (max-width: 1024px) {
    .blog_subbox {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    .i_blog_ri p, .blog_list_ri p {
        letter-spacing: 0.08em;
    }
    .i_blog_ri h5, .blog_list_ri h5 {
        -webkit-box-orient: unset;
        letter-spacing: 0.04em;
    }

    /*A文章設定 -article_a */
    .fa-chevron-down::before {
        font-size: 12px;
    }
    .blog_le .accordion li .link i {
        width: 35px;
    }
    .article_a .accordion li .link a {
        padding: 5px 15px;
        font-size: 15px;
    }
}

@media screen and (max-width: 940px) {
    /*A文章設定 -article_a */
    .article_a .blog_le .accordion {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
        /*B文章設定 -article_b */
        .article_b .show_content {
            grid-template-columns: 1fr;
            gap: 0 40px;
        }
        .article_b .blog_subbox {
            grid-template-columns: 1fr;
        }
        
        .article_b .blog_search {
            display: none;
        }
        .article_b .blog_le {
            padding-right: 0;
        }
        .article_b h5.blog_le_t {
            color: #222;
            border: 1px solid #CCC;
            padding: 10px;
            margin: 0;
            text-align: center;
        }
        .fa-caret-down::before {
            content: "\f107";
            font-size: 15px;
        }
        .openNext a.news_menu_toggle i::before {
            content: "\f106";
        }
        .article_b .blog_le .accordion {
            border: 1px solid #d1d1d1;
        }
        .article_b .accordion li .link a {
            text-align: center;
        }
        .fa-chevron-down::before {
            font-size: 12px;
            color: var(--MainColor);
        }


        /*A文章設定 -article_a */
        .article_a h5.blog_le_t {
            margin: 0 0 10px;            
            pointer-events: none;
        }
        .article_a a.news_menu_toggle i {
            display: none;
        }

}

@media screen and (max-width: 620px) {
    .subbox_item a {
        flex-direction: column;
    }
    .i_blog_le, .blog_list_le {
        max-width: 100%;
    }
    .blog_list_ri em {
        margin: 10px 0 20px 0;
    }
}

@media screen and (max-width: 480px) {
    .i_blog_ri h5, .blog_list_ri h5 {
        order: 2;
    }
    .blog_list_ri em {
        order: 1;
        font-size: 13px;
        margin: 0;
    }
    .i_blog_ri p, .blog_list_ri p {
        order: 3;
    }

}
@media screen and (max-width: 400px) {
    /*A文章設定 -article_a */
    .article_a .blog_le .accordion {
        grid-template-columns: repeat(1, 1fr);
    }

}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*促銷活動設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/* 促銷首頁 */
.news_part {
    width: 100%;
    padding: 50px 20px;
    background: #fff;
}

/* 內頁 */
/* 標 */
.promotion_title {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.promotion_title * {
    width: 40%;
}
.promotion_title span {
    border: 1px #ccc dashed;
    padding: 0 5px;
    margin: 0;
    border: 0;
    line-height: 1.7;
    font-size: 16px;
}
.promotion_title em {
    border: 0;
    margin: 0;
    width: fit-content;
    padding: 5px 10px;
    display: block;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 14px;
    letter-spacing: 0.5px;
    color: #395273;
    background-color: #dbe0e6;
    display: none;
}
.promotion_title h2 {
    font-size: 24px;
    color: #222;
    width: 100%;
    font-weight: 500;
    font-size: 30px;
    letter-spacing: 1.5px;
    color: #000;
    /* text-align: center; */
    line-height: 1.7;
}




/* = = = 分隔線 相本主分類= = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*相本分類全版面 ( 限制最寬2000px  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*相簿*/
.other_album_choice li {
    background: #ccc;
}
/*相簿下方隱藏*/
.other_album_choice{display:none;}
.album_fixed_title{display:none;}


.show-list .item a .show_pic {filter: grayscale(1);transition: all .8s;}
.show-list .item a:hover .show_pic {filter: grayscale(0);}
.show-list .show_pic {
    aspect-ratio: 4 / 4;
}
.show-list .item a .show_pic img {
    transform: scale(1);
    transition: all .8s;
    /* min-height: 420px; */
    /* object-fit: contain; */
    /* object-position: 50% 50%; */
}
.show-list .item a:hover .show_pic img {
    transform: scale(1.05);
}











/* = = = 分隔線 相本分類= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*相本列表*/
.album_page #content, .album_class_page #content, .album_info_page #content{
    background: transparent;
}

.album_page .show_content, .album_info_page .show_content{ 
    width: 100%;    
    text-align: center;
}

/* 主分類相簿名 */
.subalbum-menu h2 {
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--SubColor);
}
/*大分類頁*/
.album_class_page .show_content,.album_info_page .show_content {width: 90%;}
.show-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: clamp(20px, 4%, 50px);
    gap: 30px;
}
.album_class_page .show-list {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.show-list .item {
    text-align: center;
    width: 100%;
    background: transparent;
}
/* 次分類相簿名 */
.other_subalbum li a p {
    line-height: 2;
    margin: -22px 0 0 11px;
    margin: 0;
    /* margin-top: -20px; */
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 20px;
    /* background-color: #fff; */
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .1em;
    color: #333;
}


/*相本內頁-.album_info_page*/
.album_info_page{}
.album_descrip p {
    font-weight: 700;
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    color: #333;
    font-size: 20px;
    letter-spacing: 0.12em;
}
/*相簿瀑布流*/
.album_info_page .pic-list {
    -webkit-column-count: 3;
    -webkit-column-gap: 10px;
    column-count: 3;
    column-gap: 10px;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    /* row-gap: clamp(20px, 4%, 50px);
    column-gap: clamp(20px, 4%, 50px); */
    grid-gap: 10px;
}
.album_info_page .pic-list .item { width: 100%;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 0;
    margin: 0;
}
.album_info_page .pic-list .show_pic {
    height: auto;
    padding: 0;
    aspect-ratio: 4 / 4;
}
.pic-list .item h6 {
    padding: 0;
}



@media (max-width: 1440px){
.album_info_page .pic-list{ 
    -moz-column-count:3; 
    -webkit-column-count:3;  
    column-count:3;
}
}
@media screen and (max-width: 1280px){
    /* .album_page .show-list .item{width: 49%;}
    .album_info_page .pic-list .item {width: 49%;}	 
    .show-list { grid-template-columns: 1fr 1fr; }*/
}
@media screen and (max-width: 980px){
    /* .main_part { width: 100%; } */
}

@media screen and (max-width: 768px){
    .show-list { grid-template-columns: 1fr ; }
}

@media screen and (max-width: 600px){
    .album_page .show-list .item{width: 100%;}	
    .album_page .show-list .item{margin:auto;}
    .show-list .item{margin:auto;}
    .show-list .item a .show_pic img{min-height: 340px;}
    
}





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*聯絡我們 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.contact_content {
    width: 90%;
    max-width: 1300px;
    padding: 0;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
}
/* 聯絡資訊 */
.contact_content .information_left {
    width: 295px;
    padding: 0;
    width: 33%;    
    display: flex;
    float: right;
    flex-direction: column;
}
.blank_letter {
    padding-bottom: 10px;
    font-size: 26px;
    color: #101010;
    background-position: left bottom;
    background-repeat: no-repeat;
    font-size: 24px;
    font-weight: 500;
    padding-top: 0;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: var(--SFont);
}
.contact_content .information_left .blank_letter {
    display: none;
}
.list_before {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #444;
    display: block;
    width: 100%;
    position: relative;
    order: 2;
    font-family: var(--SFont);
    letter-spacing: 0.04em;
}
.list_before.info li {
    padding-left: 45px;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 32px;
    margin: 5px 0;
}
.list_before.info li:before {
font-size: 14px;
    letter-spacing: .5px;
    font-weight: 600;
    color: var(--SubColor);
}

/* 線上表單 */
.contact_content .information_right {
    padding-left: 30px;
    width: calc(100% - 33%);
    padding: 0 60px 0 0;
}
.contact_form {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #444;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
}
.contact_form li {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2px;
}
.contact_form li .form__label {
    text-align: left;
    color: #222;
    color: var(--SubColor);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1.8;
    font-family: var(--SFont);
    background: transparent;
        max-width: fit-content;
}
.contact_form li input.noborder {
    border: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
}
.contact_form li textarea.noborder {
    border: 1px #ddd solid;
    border: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
}
.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(13px, 13px) minmax(150px, 1fr));
            font-family: var(--SFont);
    letter-spacing: .5px;
    font-size: 14px;
}

/* BTN */
.contact_form li.last {
    margin-top: 30px;
    gap: 15px;
}
.contact_form li.last cite {
    background: #504943;
    color: #fff;
}

/* 原紅字 */
.red {
    color: var(--MainColor);
}


@media screen and (max-width: 1024px) {
    .contact_content > form {
        display: flex    ;
        flex-wrap: wrap;
        gap: 40px;
    }
    .contact_content .information_left {
        padding: 0;
        width: 100%;
        order: 2;
    }
    .contact_content .information_right {
        width: 100%;
        padding: 0;
    }
}

@media screen and (max-width: 768px) {
    .blank_letter {
        padding-bottom: 10px;
    }
    .blank_letter.f:before {
        top: -100px;
        font-size: 100px;
    }
    .contact_form li .form__label {
        padding: 0;
    }
}
@media screen and (max-width: 600px) {
    .contact_content {
        padding: 0 30px;
        width: 100%;
    }
}



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

@media screen and (min-width: 1700px) {}
/* @1200下方區域_平板版面1200px */
@media screen and (max-width: 1200px) {

/* footer*/
.footer_info {
margin: auto;
}
.footer_info li:nth-child(1) {
-ms-flex-direction: column;
flex-direction: column;
}
.footer_info li p {
margin-left: 0;
}
}

/* @1024下方區域_平板版面1024px */
@media screen and (max-width: 1024px) {
    /* footer */
    .footer_info {
        grid-template-columns: 1fr;
        text-align: center;
        position: relative;
        gap: unset;
    }
    .footer_logo {
        position: relative;
        left: unset;
        width: 100%;
        max-width: 180px;
        font-size: 0;
        transform: unset;
    }
    .footer_logo a {
        position: relative;
        display: block;
        width: 100%;
    }

    .footer_info ul {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer_info li+li{
        margin-top: 0;
    }
    .footer_info li:nth-child(2) {
        padding: 15px 0;
    }
    .footer_menu {
        display: flex;
        justify-content: center;
        margin-left: auto;
    }
    .footer_menu a {
        font-size: 14px;
        padding: 0 10px;
    }

    
}

/* @768下方區域_平板版面768px */
@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu { display: none    }
    .footer.with_shopping_mode {
        padding: 80px 0 60px;
    }
    #to_top {
        bottom: calc(2vw + 50px);
        right: 2vw;
    }
    /* footer */
    .footer_menu {
        display: flex;
        justify-content: center;
        margin-left: auto;
        flex-wrap: wrap;
        max-width: 500px;
        margin: auto;
    }
    .footer_menu a {
        font-size: 14px;
        padding: 0 10px;
        width: 50%;
        text-align: center;
    }
    .footer_menu a:nth-child(2n):after {
        content: none;
    }
    .copy{
        font-size: 11px;
    }


}

@media screen and (max-width: 600px) {
    .copy {
        font-size: 10px;
    }
}

@media screen and (max-width: 480px) { }