@charset "utf-8";
/* *************"BOSS BARBERSHOP 理髮"****************** */
/*
關於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');


/* 英文字體- Marcellus */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
/* 英文字體- EB Garamond */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');
/* 英文粗字體 Roboto Slab */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..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');




/*網站全域設定/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
:root {
  /* --Color: #1c3459; */
  --MainColor: #f29f46; /*網站主要色系*/
  --SubColor: #101010; /*網站文字色*/
  --SubColor1: #fcfdf9; /*網站輔助色系1*/
  --SubColor2: #be7b34; /*網站輔助色系2*/
  --SubColor3: #bc1427; /*網站輔助色系3*/
  --SubColor4: #924b2c; /*網站輔助色系4*/  
  --SubColor5: #542112; /*網站輔助色系5*/ 
  --SubColor6: #3e7d43; /*網站輔助色系6*/ 
  --SubColor7: #a09e9e; /*網站輔助色系7*/ 
  --SFontE: "Inter", "Noto Sans TC",sans-serif;/*英文字體-無襯線*/
  --SFontEN: "Roboto Slab", "Noto Sans TC", sans-serif, system-ui;/*英文標字體*/   
  --SFontENs: "EB Garamond", "Noto Sans TC", sans-serif, system-ui;  
  --SFontENd: "Marcellus", "Noto Sans TC", sans-serif, system-ui;  
  --SFontC: "Noto Serif TC", sans-serif;/*內文字體*/
  --SFont: "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:380px) {
: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 {
    /* border-radius: 4px; */
    background-color: #c1c1c1;
}
&::-webkit-scrollbar-track {
    box-shadow: transparent;
}


/* OP-waiting_action */
/* .pageIndex::before {content: "";position: fixed;top: 0;left: 0;width: 100vw;height: 100vh;background: white;z-index: 10000;pointer-events: none;animation: NFadeOut 1.8s ease forwards;animation-delay: 1.2s; }
.pageIndex::after {content: "";position: fixed;top: 50%;left: 50%;width: 200px;aspect-ratio: 506/623;height: auto;background: url('https://pic03.eapple.com.tw/bossbarbershophair/logo.png') no-repeat center center;background-size: contain;transform: translate(-50%, -50%);z-index: 10000;pointer-events: none;animation: NFadeshow 1.4s ease forwards;opacity: 0;}
@keyframes NFadeshow {0% {opacity: 0;transform: translate(-50%, -40%);}20% {opacity: 1;transform: translate(-50%, -50%);}80% {opacity: 1;transform: translate(-50%, -50%);}100% {opacity: 0;transform: translate(-50%, -60%);visibility: hidden;}}
@keyframes NFadeOut {0% {opacity: 1;}100% {opacity: 0;visibility: hidden;}} */



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*上方選單解除滑動固定
.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, #3d2f2999, transparent);
    width: 100%;
    height: 10vw;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
    opacity: .6;
    transition: .5s;
}
.main_header_area:after {content: "";width: 100%;top: 0;left: 0;padding: 0 40px;transition: .4s ease;box-shadow: none;width: 100%;background: #000;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%;
    /* border-bottom: 4px solid #f39f47; */
}
.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: 0px 30px;
}
.header_area.sticky .stellarnav {
    opacity: 1;
    transition: all 0.3s;
    pointer-events: unset;
}

/* 第一層 */
.stellarnav > ul > li {
    position: relative;
    padding: 20px 10px;
    /* padding: 0; */
    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(--SFontEN);
    color: #1c1c1c;
    color: #fff;
    letter-spacing: 0.12em;
    height: 40px;
    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: 0 5px;
}
.header_area.sticky .stellarnav > ul > li > a {
    /* color: #1c1c1c; */
    /* padding: 28px 5px; */
}

.stellarnav.desktop > ul > li > a:hover {
    color: #f39f47;
}
.stellarnav > ul > li > a:hover:before {
    color: #000;
    transition: .5s cubic-bezier(0.77, 0, 0.65, 0.99);
    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.desktop ul ul {
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    background: #292929;
    width: auto;
    border: none;
    min-width: auto;
    width: fit-content;
    min-width: 150px;
    margin: 0;
}
.stellarnav > ul > li > ul {
    background: #fff;
    height: max-content;
    left: 50%;
    transform: translateX(-50%);
    border: 0;
    border-radius: 0;
    padding: 5px 0 5px;
    width: 150px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    visibility: hidden;
    opacity: 0;
    transition: all .5s ease;
}
.stellarnav.desktop > ul > li > ul {
    display: block !important;
    top: calc(100% - 10px);
}
.sticky .stellarnav.desktop > ul > li > ul {
    top: calc(100%);
}
.stellarnav > ul > li:hover > ul {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    /* transform: scale(1, 1); */
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav li li {
    border: 0;
    width: 100%;
    float: left;
    clear: both;
    position: relative;
    text-align: left;
}
.stellarnav li li:last-of-type {
    border-bottom-width: 0;
}
.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: 12px 20px;
    white-space: nowrap;
    letter-spacing: 0.06em;
    font-family: var(--SFontEN);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all .5s;
    letter-spacing: 1.5px;
    transform: translateX(0);
    /* padding-right: 50px; */
    text-align: center;
    color: var(--SubColor1);
    font-weight: 300;
}
.stellarnav.desktop li.has-sub li:last-child a {
    border-bottom-width: 0;
}
.stellarnav.desktop li.has-sub li a:hover{
    color: #fff;
    background: #292929;
    background: #dc8e29;
}
.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;
max-width: fit-content;
top: 0;
transition: all 0.4s;
font-size: 0;
position: absolute;
padding: 0 0 0 30px;
margin-top: 30px;
}
.nav-header:before, .nav-header:after{
content: '';
width: 130px;
position: absolute;
display: block;
height: 5px;
background: #000;
left: 0;
top: calc(50% - 20px);
transform: translate(-50%, -50%);
z-index: -1;
}
.nav-header:after{
top: calc(50% + 20px);
}
.nav-brand {
padding: 5px;
width: fit-content;
max-width: max-content;
padding: 10px;
transition: all 0.4s;
font-size: 0;
background: #fff;
z-index: 9999;
aspect-ratio: 1 / 1;
height: 180px;
width: auto;
padding: 25px;
border-radius: 100px;
border: solid 2px #000;
display: flex;
justify-content: center;
align-items: center;
box-shadow:  0 0 30px #ffffff99;   
-webkit-box-reflect: below 10px linear-gradient(transparent,transparent,rgba(0, 0, 0, 0.08));
animation: animate 5s linear infinite;
transition: all .4s ease;
}
@keyframes animate{
0%{box-shadow:  0 0 50px #ffffff99;}
20%{box-shadow:  0 0 50px #ffffff99;}
40%{box-shadow:  0 0 70px #ffffff99;}
60%{box-shadow:  0 0 30px #ffffff99;}
80%{box-shadow:  0 0 15px #ffffff99;}
100%{box-shadow:  0 0 50px #ffffff99;}
}


.nav-brand img {
    max-width: 120px;
    /* filter: contrast(0) brightness(100); */
    /* aspect-ratio: 5/6; */
    width: auto;
    height: 100%;
    object-fit: cover;
}


.sticky .nav-header {
transform: scale(.90);
    transform-origin: 0;
    padding-left: 20px;
}
.sticky .nav-brand img {
    /* filter: unset; */
}




/*手機LOGO
.nav-brand-m {}
*/


/*footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.box_link{display: none;}

.footer {position: relative;margin-top: 0;padding-top: 40px;padding-bottom: 0;background-image: url(https://pic03.eapple.com.tw/bossbarbershophair/pc_bg2.png);background-repeat: no-repeat;background-size: cover;z-index: 1;}
.footer .center {width: 95%;max-width: 1300px;margin: 0 auto;padding: 0 20px;display: flex;-webkit-box-pack: justify;justify-content: space-between;}
.footer_logo {margin: auto;max-width: 160px;}
.footer_logo a {display: block;width: fit-content;font-size: 0;}


/* footer資訊*/
.footer_info{ }

.footer_info {
    text-align: center;
    width: 100%;
    display: flex;
    grid-template-columns: 1fr;
    grid-gap: 0;
    padding: 0;
    justify-content: center;
    flex-direction: column;
}

.footer_info:nth-child(1) > ul {   }


/* 文字共用 */
.footer_menu a, .footer_info li p{position: relative;border: 0;/* margin: 0; */color: #767676;background: transparent;padding: 0 15px;font-family: var(--SFontEN);font-size: 13px;line-height: 2;letter-spacing: 1px;font-weight: 400;opacity: 1;text-align: center;margin: 0;}

.footer_info li:nth-child(1) {display: flex;padding: 0;flex-direction: column;text-align: center;align-content: center;}
.footer_info li p:before {
color: #2c2c2c;
    font-family: var(--SFontEN);
    margin-right: 5px;
    letter-spacing: .5px;
    font-weight: 800;
    font-size: 14px;
}
.footer_info li p.line:before { content: 'Line ID |';}
.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.fax:before {content: 'OPEN TIME | ';}
.footer_info li p{padding: 0;}
.footer_info li p+p{margin-left: 0;}

.footer_info li p.tel {order: 1;}
.footer_info li p.line {order: 2;}
.footer_info li p.mail {order: 3;}
.footer_info li p.add {order: 4;}
.footer_info li p.fax {order: 5; pointer-events: none;}
.footer_info li p.fax a:after{ content: '周二~周六';}
.footer_info li p.fax:after{ content: '周一、周日公休'; padding-left: 10px;color: #333;font-weight: 500;}
.footer_info li p.line, .footer_info li p.tel, .footer_info li p.add {display: none;}

.footer_info li:nth-child(2) {
    padding: 0;
    border-top: 1px solid #06040499;
    border-bottom: 1px solid #06040499;
    width: fit-content;
    margin: 10px auto;
    display: none;
}
.footer_menu {
    font-size: 0;
    width: fit-content;
    display: flex;
    justify-content: center;
    margin: auto;
    padding: 5px 0;
}
.footer_menu a {       
    line-height: 2.4;
    -webkit-transition: linear 0.2s, opacity 0.8s linear 0.2s;
    transition: all 0.3s linear;
    color: #2f2f2f;
}

.footer_menu a:first-child{display: none;}
/* .footer_menu a:last-child:after{content: none;} */
.footer_menu a:hover {
    background: transparent;
    color: #be1327;
}


/* ------------------------------------------------------------------------------------------------------------ */

.copy {
    text-align: center;
    padding: 10px 0;
    border-top: 0;
    align-items: center;
    color: #b4b4b4;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative;
    justify-content: center;
    font-family: var(--SFontEN);
    font-size: 10px;
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 400;
    background-color: #101010;
}
.copy a {color: #b4b4b4;} 

/* 浮動按鈕 */

/* 置頂按鈕 */
#to_top {
position: fixed;
    bottom: 35px;
    left: 20px;
    z-index: 600;
    width: 30px;
    height: 30px;
    padding-top: 5px;
    font-size: 0;
    color: #111;
    text-align: center;
    text-decoration: none;
    background: transparent;
    box-shadow: unset;
    border-radius: 100%;
}
#to_top:before {
content: "";
    bottom: unset;
    right: 0;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 23px;
    height: 1px;
    background-color: #666;
}
#to_top i.top {
display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 17px;
    height: 17px;
}
#to_top i.top:before, #to_top i.top:after {
content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 0;
    background-color: transparent;
    transform-origin: unset;
}
#to_top i.top:before {
width: 1px;
    height: 100%;
    background-color: #666;
    transform: unset;
}
#to_top i.top:after {
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    border-top: 1px solid #666;
    border-left: 1px solid #666;
}
#to_top:hover {
opacity: 0.6;
transition: opacity 0.2s;
animation: NpageTop .8s cubic-bezier(.19,1,.22,1) 1
}
@keyframes NpageTop {0% {transform: translate3d(0,-45%,0)}to {transform: translateZ(0)}}




/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 商品下拉超過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;
z-index: 1;
position: relative;
}
.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;
}
/* 大圖點點按鈕END */



/* 大圖進場 */
.swiper-wrapper:before, .swiper-wrapper:after {
    content: "";
    position: absolute;
    z-index: 100;
    pointer-events: none;    
    opacity: 0;    
} 
.swiper-slide img { height:auto;}



/* 圖內層 */
.bannerindex .swiper-banner .swiper-slide:before, .bannerindex .swiper-banner .swiper-slide:after {
    content: '';
    position: absolute;
    z-index: 100;
    /* pointer-events: none; */
    opacity: 0;    
} 


/* banner01 */
.bannerindex .swiper-banner .swiper-slide:nth-child(1):before {    
background: url(https://pic03.eapple.com.tw/bossbarbershophair/bnA_txt01.svg);
display: block;
position: absolute;
bottom: 35%;
width: 33%;
height: auto;
left: 4vw;
aspect-ratio: 622 / 178;
background-position: left;
background-repeat: no-repeat;
background-size: contain;
max-width: 640px;
/* box-shadow: 5px 5px 10px rgb(19 19 19 / 60%); */
filter: drop-shadow(5px 5px 10px rgb(19 19 19 / 60%));
}
.bannerindex .swiper-banner .swiper-slide:nth-child(1):after {
background: url(https://pic03.eapple.com.tw/bossbarbershophair/bnA_txt02.svg);
left: 100px;
background-size: contain;
z-index: 0;
top: 35%;
width: 20%;
height: auto;
aspect-ratio: 399 / 198;
background-repeat: no-repeat;
background-size: contain;
max-width: 300px;
}


/* banner02 */
.bannerindex .swiper-banner .swiper-slide:nth-child(2):before {
background: url(https://pic03.eapple.com.tw/bossbarbershophair/bnB_txt01.svg);
display: block;
position: absolute;
bottom: 35%;
width: 35%;
height: auto;
left: 34%;
aspect-ratio: 667 / 307;
background-position: left;
background-repeat: no-repeat;
background-size: contain;
max-width: 660px;
}





/* 動畫 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before {
animation: NfadeInUp .8s ease-in-out forwards;
}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after {
animation: NfadeInDown 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation-delay: .4s;
}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before {
animation: NcenterBig .8s ease-in-out forwards;
}



@keyframes txt-show {0% {opacity: 0;}100% {opacity: 1;}}
@keyframes NfadeInUp {0% {transform: translateY(20px) ;opacity: 0;}100% {transform: translateY(0) ;opacity: 1;}}
@keyframes NfadeInDown {0% {transform: translateY(-40px) ;opacity: 0;}100% {transform: translateY(0) ;opacity: 1;}}
@keyframes NcenterBig {0% {transform: scale(.8);opacity: 0;}100% {transform: scale(1) ;opacity: 1;}}







@media screen and (max-width: 1400px) {}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 768px) {
/* = = 手機板大圖 = = */
.bannerindex { position: relative;padding:0; margin:0;}
.swiper-banner {position: static;margin: 0;height: auto;}
.pageIndex .swiper-banner .swiper-slide {height: auto;width: 100% !important;aspect-ratio: 768/1100;background-position: center;background-size: cover;}
.pageIndex .swiper-banner .swiper-slide:nth-child(1) {
background-image: url(https://pic03.eapple.com.tw/bossbarbershophair/BNm01.jpg);
background-position: 0% 50%;
}
.pageIndex .swiper-banner .swiper-slide:nth-child(2) {
background-image: url(https://pic03.eapple.com.tw/bossbarbershophair/BNm02.jpg);
background-position: 0% 50%;
}
.pageIndex .swiper-banner .swiper-slide img {height: auto;display: none;}

.bannerindex .swiper-banner .swiper-slide:nth-child(1):before {
    background: url(https://pic03.eapple.com.tw/bossbarbershophair/mbnA_txt01.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 68%;
        left: 16%;
        bottom: 18%;
}
.bannerindex .swiper-banner .swiper-slide:nth-child(1):after {
width: 35%;
top: unset;
bottom: 28%;
    right: 15%;
    left: unset;
}
.bannerindex .swiper-banner .swiper-slide:nth-child(2):before {
    bottom: 38%;
    width: 68%;
    left: 16%;
}
}

@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;
}
.path p, .path p a {
text-align: right;
line-height: 24px;
font-size: 13px;
color: var(--SubColor6);
text-align: center;
display: inline-block;
font-size: 14px;
line-height: 1;
letter-spacing: 0.5px;
font-family: var(--SFontE);
}
.path p a {
color: #666;
transition: .3s;
}
.path p a:hover {
color: #a93635;
color: #666;
font-weight: 700;
}




/* main */
div#page{
background-image: url(https://pic03.eapple.com.tw/bossbarbershophair/pc_bg1.png);
background-size: auto;
position: relative;
}

.edit_part{
padding: 0;
min-height: 1000px;
/* 暫時 */
}
.main_part {
width: 100%;
max-width: 1300px;
margin: auto;
padding: 60px 20px;
padding-bottom: 120px;
}
.show_content {
    margin: auto;
    padding: 0;
    font-family: var(--SFont);
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.subalbum-menu {
    margin: 0;
    padding: 0;
}

.edit {
    color: #262626;
    margin: auto;
    padding: 20px 0 40px;
    line-height: 1.7;
    letter-spacing: 0.5px;
    font-weight: 400;
}


/*內頁BANNER 設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.banner {position: relative;background: #f5f2f0;width: 100%;position: relative;height: 380px;transition: all .4s ease;}

.banner:before {content: "";position: absolute;width: 100%;height: 100%;filter: brightness(0.7);background: url(https://pic03.eapple.com.tw/bossbarbershophair/banA.jpg) center / cover no-repeat;background-position: 0 100%;transform: scaleX(-1);
}
.banner h5 {font-family: var(--SFontEN);font-size: var(--f24);letter-spacing: 6px;line-height: 1;font-weight: 500;color: #fff;width: 100%;text-align: center;position: absolute;top: 60%;left: 50%;z-index: 9;text-shadow: 2px 2px 10px rgb(10 10 10 / 80%);animation: bntxt 1.5s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);}
@keyframes bntxt {0% {opacity: 0;transform: scale(1, 0) translate(-50%, -50%);}100% {opacity: 1;transform: scale(1, 1) translate(-50%, -50%);}}
.banner h5:after {content: "";font-weight: 500;
}


.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}


.banner.banF h5:after {content: " ｜ TEAM";}
.banner.banE h5:after {content: " ｜ STYLE";}
.banner.banB h5:after {content: " ｜ CONTACT";}
.services_page .banner.banB h5:after {content: " ｜ SERVICE";}
.article_a .banblog h5:after { content: " ｜ NEWS";}




@media screen and (min-width: 1400px) {}

/* @1200上方區域_平板版面1200px */
@media screen and (max-width: 1200px) {
/* logo*/
.nav-header {}
.nav-brand {height: 160px;}
}


/* @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: 0;}
.header_area.sticky .main_header_area{backdrop-filter: none;border: 0;}

/* logo*/    
.nav-header {max-width: 160px;padding-left: 15px;margin-top: 20px;}
.sticky .nav-header {margin-top: 10px;}
.nav-brand {height: 140px;padding: 23px;}

/* 導覽列 */
.navigation {display: grid;grid-template-columns: 1fr;align-items: center;}
.pageIndex .stellarnav {opacity: 1;pointer-events: unset;}
.stellarnav ul {text-align: right;}
.stellarnav > ul > li {padding: 18px 8px;}  
.stellarnav > ul > li > a {letter-spacing: 0.06em;margin: 0;font-size: 14px;padding: 0;}
.stellarnav > ul > li.has-sub > a {
    padding-right: 0px;
}
.stellarnav>ul>li:after {height: 3px;top: 100%;bottom: 0;transform: translate(-50%, 0);}


/* 內頁bn */
.banner {max-height: 300px;}
.banner h5 {top: unset;bottom: 25%;}
}


/* @768上方區域_平板版面768px */
@media screen and (max-width: 768px) {

/* logo*/    
.nav-header {max-width: 150px;}
.sticky .nav-header {margin-top: 10px;padding-left: 10px;}
.nav-brand {height: 130px;}




/* = = header = = */
.header_area {height: 80px;}
.header_area .main_header_area {padding:0 5px;border: 0;backdrop-filter: none;}
.navigation {display: flex;justify-content: space-between;flex-direction: row;}



/* 導覽列漢堡選單 */    
.stellarnav.mobile {right: 0;left: unset;padding: 0 20px;}
.stellarnav.mobile .menu-toggle {display: flex;margin: 20px 0;padding: 0;flex-direction: column;align-items: center;width: 10vw;}



/* 漢堡選單樣式 */
.stellarnav .menu-toggle:after {
text-transform: capitalize;
font-size: 12px;
color: #fff;
transform: scale(1);
font-family: var(--SFontEN);
letter-spacing: 1px;
padding-top: 9px;
}
.sticky .stellarnav .menu-toggle:after {color: #000;}
.stellarnav .menu-toggle span.bars {
display: block;
margin: 0;
background: #F39F47;
width: 100%;
height: auto;
aspect-ratio: 84/68;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 1.05vw;
border-radius: 50%;
transition: all .4s ease;
min-width: 45px;
}
.stellarnav.mobile .menu-toggle:hover span.bars{background: #D98829;}
.stellarnav .menu-toggle span.bars span {
width: 30px;
width: 44%;
height: 2px;
border-radius: 0;
margin: 0;
background: #fff;
height: 1px;
transition: all .4s ease;
}
.sticky .stellarnav .menu-toggle span.bars span {background: #000;}
.stellarnav.mobile .menu-toggle:hover span.bars span {background: #0F0800;}
/* 黑色遮罩 */
.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;
background: transparent;
padding: 0;
margin: 26px 0 28px;
font-weight: 500;
content: 'Menu';
font-size: 13px;
color: #000;
transform: scale(1);
font-family: var(--SFontEN);
letter-spacing: .6px;
height: fit-content;
width: 100%;
text-align: right;
display: flex;
flex-direction: row-reverse;
text-transform: uppercase;
}
.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;
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;
color: #333;
font-size: 15px;
letter-spacing: 0.04em;
padding: 15px 12px 15px 15px;
}
.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-family: var(--SFont);
font-size: 14px;
color: #333333;
letter-spacing: 0.04em;
}
.stellarnav li li a {font-size: 13px;}
.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 5px;width: 100%;}


/* logo*/    
.nav-header {max-width: 140px;}
.nav-header:before, .nav-header:after {height: 4px;}
.nav-brand {height: 120px;padding: 20px;}

/* 導覽列展開 */
.stellarnav.mobile.left.active > ul {width: 100%;max-width: 400px;}
.stellarnav .menu-toggle:after {
font-size: 10px;
}

/* 內頁bn */
.banner {
        aspect-ratio: 5 / 4;
        max-height: 100%;
        height: auto;
    }
}



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 購物車 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page #content{ }

.product_page #content:before, .product_info_page #content:before{
content: '';
    display: block;
    position: absolute;
    background: url(https://pic03.eapple.com.tw/bossbarbershophair/bg_img.png) no-repeat bottom right fixed;
    background-size: 600px;
    background-repeat: no-repeat;
    width: 100%;
    opacity: .2;
    background-position-x: 101%;
    background-position-y: 105%;
    background-attachment: fixed;
    right: 0;
    bottom: 0;
    height: 100%;
    pointer-events: none;

}
.product_page .main_part {}

.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 .show_content:before {
    content: 'BOSS BARBERSHOP';
    position: relative;
    font-size: 60px;
    font-size: var(--f52);
    font-weight: 500;
    letter-spacing: 2px;
    font-family: var(--SFontENd);
    line-height: 1;
    display: block;
    width: fit-content;
    transform: rotate(90deg);
    transform-origin: bottom left;
    padding-right: 2rem;
    z-index: 2;
    background: #fff;
    background: url(https://pic03.eapple.com.tw/bossbarbershophair/pc_bg1.png);
}

/* 左分類欄 */
.product_page .product_menu_list {
    position: relative;
    width: 220px;
    letter-spacing: 1px;
    min-height: 30vw;
    display: none;
}


/* 右側商品 */
.products-list .more {display: none;}
.product_page .products-list {
    width: calc(100% - 270px);
    width: 100%;
    padding-left: 10rem;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 40px;
    position: relative;
}
.product_page .products-list::before {
position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 33px;
    left: calc((var(--f52)) / 2 + .5px);
    height: 100%;
    width: 1px;
    background: #000;
    z-index: 1;
}
/* 品項 */
.products-list .item a {
    overflow: hidden;
}
/* 品名 */
.products-list .name {
    color: #191F20;
    letter-spacing: 1px;
    margin-top: 30px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: fit-content;
    font-size: var(--f24);
    font-weight: 500;
    display: flex;
    flex-direction: column;
}
.products-list .name .numbering {
position: relative;
    left: -40px;
    font-size: 13px;
    font-family: var(--SFontEN);
    order: -1;
    display: block;
    color: #fff;
    background: #000;
    width: fit-content;
    padding: 4px 12px;
    margin-bottom: 10px;
}
span.numbering:before {
    content: '';
    display: block;
    width: 50px;
    height: 100%;
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
}
.products-list .pic {
    aspect-ratio: 9 / 12;
    transition: transform .8s cubic-bezier(.4,0,.2,1) 0s, opacity .4s cubic-bezier(.4,0,.2,1) 0s;
}
.products-list .pic img {
        transition: transform .8s cubic-bezier(.4,0,.2,1) 0s, -webkit-transform .8s cubic-bezier(.4,0,.2,1) 0s;
}
.products-list .item a:hover .pic {
opacity: 0.8;
transform: scale(.95);
}
.products-list .item a:hover .pic img {
-webkit-transform: scale(1.1) rotate(-.8deg);
        transform: scale(1.1) rotate(-.8deg);
}



/* 頁碼 */
ul.page {width: 100%;}










/*購物車/內層＝＝*/
.product_info_page .main_part {width: 100%;}
.product-wrapper {width: 100%;}
.prod_tabs {
    margin-top: 0px;
}



/*商品圖&側邊規格*/
.product_main, .sidebarBtn, .product-layer-two, ul.prod li h3.prod-thumb, .prod > li.prod-item:nth-child(2){display: none;}
.product_info li .txt_box {}
.sidebarBtn .sp_price {}
.mobile_product_name {}
/*按鈕顏色*/
.inquiry_a1 {background: #cbc0a0;}
.inquiry_a2 {background: #bdab77;}
.inquiry_a3 {background: #ADA17E;}
.inquiry_a1:hover,.inquiry_a2:hover,.inquiry_a3:hover {background: #222;}
.lastaction {}
.nextaction {}
.lastPage {}



/* 商品資訊 */
.pd_tabTitle li {display: none;}

/*相關推薦*/
.prod_related h6 span:before {}


@media screen and (max-width: 1400px) {
.product_page .products-list {padding-left: 8rem;}
}
@media screen and (max-width: 1200px) {
.product_page .show_content, .product_info_page .show_content {width: 96%;}

}
@media screen and (max-width: 1024px) {
.product_page .show_content:before { font-size: var(--f48);}
.product_page .products-list::before {left: calc((var(--f48)) / 2 + .5px);}
.product_page .products-list {padding-left: 6rem;gap: 40px 30px;}
}

@media screen and (max-width: 768px) {
.product_page .show_content, .product_info_page .show_content {width: 100%;max-width: 600px;}
.product_page .products-list {padding-left: 3.8rem;gap: 40px;}
.products-list .item a {padding-bottom: 10px;}
.products-list .name {margin-top: 20px;}
}

@media screen and (max-width: 600px) {
.product_page .show_content, .product_info_page .show_content {padding: 0 5px;}
.product_page .products-list {padding-left: 3.2rem;gap: 30px;}
.products-list .item a:hover .pic, .products-list .item a:hover .pic img {transform: unset;}
.products-list .name .numbering {font-weight: 400;font-size: 11px;left: -33px;}
span.numbering:before {width: 45px;}
.products-list .name {font-size: var(--f32);}

/* 內 */
.pd_tabInner.edit { padding-top: 0px;}
}




/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*文章設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*文章設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*文章功能頁/ = = = = */
.blog_box {
    display: flex;
    margin: auto;
    font-family: var(--SFontEN);
    justify-content: space-between;
    flex-wrap: wrap;
    gap: unset;
    width: 100%;
    padding: 0;
    padding-top: 40px;
}

/* 左側分類欄位 */
.blog_le {
    padding: 0;
    position: relative;
    letter-spacing: 1px;
    float: left;
    box-sizing: border-box;
    width: 260px;
    padding-right: 50px;
}
h5.blog_le_t {margin-bottom: 20px;text-align: left;line-height: 28px;letter-spacing: 1px;font-weight: bold;padding: 0;position: relative;border-bottom: 0;font-size: 0;}
h5.blog_le_t em {
    color: #191F20;
    line-height: 1.5;
    text-transform: uppercase;
    position: relative;
    display: block;
    width: 100%;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: var(--SFontE);
    padding: 10px 5px;
    padding-left: 0;
    border-bottom: 1px solid #e6e6e6;
    font-size: var(--f20);
}

h5.blog_le_t span {display: none;}
.blog_search {position: relative;margin-bottom: 10px;opacity: .8;}
.blog_search input[type=search] {
    width: 100%;
    font-size: 13px;
    color: #191F20;
    letter-spacing: 1px;
    background: #f2f2f2;
    border-radius: 0;
    /* border: 1px solid #999; */
    border: 0;
    min-height: 31px;
    padding: 6px 40px 6px 10px;
}
.blog_search input[type=submit] {background: transparent;width: fit-content;}
.blog_search form:after {
    background: transparent;
    z-index: 10;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    width: 30px;
    content: "\f002";
    font: normal normal normal 12px / 1 FontAwesome;
    height: 31px;
    justify-content: center;
    color: #fff;
    background: #333333;
    align-items: center;
    /* border: 1px solid #999; */
}
/* 分類列 */
.blog_le .accordion {border-radius: 0;border: 0;overflow: hidden;display: grid;grid-template-columns: repeat(1, 1fr);font-size: 0;}
.blog_le .accordion li {
    transition: .3s ease-out;    
    border-bottom: 0;
}
.blog_le .accordion li li {
    margin-bottom: 1px;
    border: 0;
}
.accordion li+li .link {border: 0;}
.blog_le .accordion li .link:last-child {
    border-bottom: 1px solid #eeeeee;
    position: relative;
    padding-left: 0px;
}
.accordion li .link, .accordion li+li .link {border: 0;border-bottom: 1px solid rgba(255, 255, 255, 0.1);}
.accordion li .link a {
    text-align: left;
    margin: 0;
    border: none;
    background: transparent;
    transition: all 0.3s;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 1px;
    padding: 17px 15px;
    position: relative;
    color: #191F20;
    font-weight: 500;
}
.fa-chevron-down::before, .fa-chevron-down::after {content: "";width: 13px;height: 1px;background-color: #999999;display: block;position: absolute;top: 50%;right: 15px;z-index: 1;transition: all 0.5s;}
.fa-chevron-down::after {transform: translateY(-50%) rotate(90deg);}
.blog_le .accordion li.open i.fa-chevron-down::before {content: '';}
.blog_le .accordion li.open i.fa-chevron-down::after {transform: translateY(-50%) rotate(0);}

.blog_le .accordion > li.on_this_category{background: #D98829 !important;}
.blog_le .accordion > li.on_this_category:hover .link a, .blog_le .accordion > li:hover .link a {color: #191F20 !important;}
.blog_le .accordion > li.open { background: transparent;}
.blog_le .accordion > li.open > .link a{ background: rgba(153, 153, 153, 0.6);}
.blog_le .accordion > li:hover {background: transparent !important;}
.blog_le .accordion > li:hover .link a {
    background: rgb(241 240 235 / 80%) ;
}
.blog_le .accordion > li.on_this_category .link a {color: #000  !important;}
/* 子分類 */
.submenu {background: transparent;}
.submenu a {color: #ccc;transition: all 0.4s ease;line-height: 1.3;background: #4444444d;}
.submenu a:hover {background: #4444444d;color: #000;}
.submenu a .fa-circle-chevron-right::before {font-size: 11px;padding: 3px;line-height: 1.5;}




/* 右側圖文區 */
.blog_ri {padding: 0;width: 100%;box-sizing: border-box;width: calc(100% - 260px - 1%);}
h4.blog_category_title {width: fit-content;font-weight: 600;letter-spacing: 1px;display: none;}
/* 圖文區塊 */
.blog_subbox {    grid-template-columns: repeat(3, 1fr);;gap: 0;flex-wrap: wrap;gap: 30px;}
.subbox_item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    transition: .3s ease-out;
    border: 0;
    width: 100%;
    margin: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
    height: 100%;
    border-bottom: 1px solid #d7d7d7;
}
.subbox_item:hover {transition: .3s ease-out;}
.subbox_item li:hover {transition: .3s ease-out;box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%);}
.subbox_item a {grid-template-columns: 1fr;gap: unset;height: 100%;padding: 0;display: flex;flex-wrap: wrap;align-items: flex-start;align-content: flex-start;}
.module_i_news li a:before, .module_i_news li a:after, .subbox_item a:after, .subbox_item a:before {content: none;}
.subbox_item a:hover h5 {
    color: #D98829;
}

/* 圖 */
.blog_list_le {
        overflow: hidden;
    position: relative;
    aspect-ratio:8 / 10;
    background-color: #1D1B1C;
    width: 100%;
    height: auto;
    border: 0;
}
.blog_list_le:after {
content: 'VIEW MORE >';
    font-family: var(--SFontEN);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    width: 105%;
    height: 105%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 8;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: rgb(15 8 0 / 95%);
    opacity: 0;
    transition: all .4s;
}
.subbox_item a:hover .blog_list_le:after {
    opacity: 1;
}
.blog_list_le img {width: 100%;transition: .8s ease;}
.subbox_item a:hover img {z-index: 1;opacity: 1;transform: scale(1.08);}
/* 文字 */
.blog_list_ri {display: flex;flex-direction: column;justify-content: flex-start;max-width: 600px;margin: 0 auto;/width: 100%;margin: 0;padding: 15px 0;}
.blog_list_ri h5 {font-size: var(--f20);text-align: left;font-weight: 600;margin-bottom: 8px;font-weight: 500;letter-spacing: 1px;color: #2A2A2A;transition: all 0.4s ease;}
.blog_list_ri em {
    margin: 0;
    order: -1;
    padding: 0;
    font-family: var(--SFontE);
    font-weight: 400;
    margin-bottom: 8px;
    font-size: 12px;
    color: #aaa;
    letter-spacing: 0;
    text-transform: uppercase;
    /* left: -35px; */
    position: relative;
}
.blog_list_ri p {line-height: 1.8;margin: 0;-webkit-line-clamp: 3;font-weight: 400;font-size: 14px;letter-spacing: 0.5px;color: #666;}



/*文章內層/ = = = = */
.blog_in_page h5.blog_le_t em {}
.blog_in_page .blog_ri {
    background: #f5f5f5;
    padding: 20px 40px;
    margin-bottom: 0;
    border-radius: 5px 5px 0 0;
}
.blog_in_page h4.blog_category_title {
    width: 100%;
    letter-spacing: 1.5px;
    font-size: var(--f24);
    display: block;
    text-align: left;
    border-bottom: 1px dashed #969ca74d;
    color: #232323;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 20px 0;
}



/* 分享按鈕 = = */
.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;
}
.blog_box_edit * {
    line-height: 1.7;
}
.articel_mainPic {
    display: none;
}

/*文章-相關推薦*/
.news_related, .prod_related {
    font-family: var(--SFont);
    background: #fff;
    padding: 80px 5%;
    margin: auto;
    display: none;
}


/* 上下篇按鈕 */
.blog_back {
    position: relative;
    justify-content: center;
    z-index: 1;
    justify-self: flex-end;
    width: calc(100% - 260px - 1%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
    margin: auto;
    margin-top: 0;
    text-align: center;
    margin-right: 0;
    justify-items: start;
    background: #f5f5f5;
    padding: 25px;
    border-radius: 0 0 5px 5px;
}
.blog_back:before {content: '';display: block;position: absolute;width: calc(100% - 40px);height: 1px;left: 20px;background: #ddd;}
.blog_back a {font-size: 13px;letter-spacing: 2px;}
.blog_back a.article_btn_back {background: #a7a9ac;transition: .4s ease;display: none;}
.blog_back a.article_btn_back:hover {opacity: .6;}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {color: #777;transition: .4s ease;width: fit-content;background: transparent;font-size: 0;border: 1px solid #777;}
.blog_back a.article_btn_next {justify-self: end;}
a.article_btn_prev:before, a.article_btn_next:after {content: '< Previous';padding: 8px;font-size: 13px;text-decoration: none;font-family: var(--SFontE);color: #777;letter-spacing: 1px;font-weight: 600;}
a.article_btn_next:after {content: 'Next >';}
.blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {background-color: #333;border-color: #333;}
a.article_btn_prev:hover:before, a.article_btn_next:hover:after {color: #eee;}


@media screen and (max-width: 1200px) {
/* 外 */
.blog_box {width: 95%;}
.blog_le {width: 240px;padding-right: 30px;}
.blog_ri {width: calc(100% - 240px - 1%);}
.blog_subbox {grid-template-columns: repeat(auto-fill,minmax(255px, 1fr));gap: 25px;}

/* 內 */
.blog_back {width: calc(100% - 240px - 1%);}
}

@media screen and (max-width: 1024px) {

/* .blog_le {width: 100%; margin-bottom: 40px;}
h5.blog_le_t {display: none;}
.blog_le .accordion {grid-template-columns: repeat(auto-fill,minmax(200px, 1fr));}
.blog_le .accordion li {border: 1px solid #C8D6DE;}

.blog_ri {width: 100%;padding: 0;}
.blog_list_le {max-width: 250px;}
.i_blog_ri h5, .blog_list_ri h5 {font-size: var(--f22);}
.blog_list_ri p {letter-spacing: 1.5px;} */

/* 內 */
.blog_in_page .blog_ri {
    padding: 20px 25px;}
}


@media screen and (max-width: 768px) {
/* 外層 */
.blog_box {width: 95%;padding-top: 20px;}
.blog_le {margin-bottom: 30px;width: 100%;padding: 0;padding-bottom: 20px;border-bottom: 1px solid #e6e6e6;}
.blog_ri, .blog_back {width: 100%;}
.blog_list_ri p {font-size: 14px;}
.blog_le .accordion {grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));gap: 5px;}
.blog_le .accordion li .link, .blog_le .accordion li .link:last-child { border: 0}
.blog_le .accordion > li .link a {background: rgb(241 240 235 / 80%);}

/* 內層 */
.blog_in_page .blog_le .accordion > li.on_this_category .link a{background: transparent;}
.blog_in_page .blog_box {padding-bottom: 20px;}
.blog_in_page .edit { font-size: 15px;}





}

@media screen and (max-width: 600px) {
/* 外層 */
.blog_box {width: 95%;padding-top: 0;}
/* 內 */
.blog_in_page h4.blog_category_title {margin-bottom: 5px;}
.blog_in_page .blog_ri {padding: 20px;}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {border: 1px solid #999;padding: 5px 10px;min-width: 80px;}
a.article_btn_prev:before, a.article_btn_next:after {font-size: 10px;letter-spacing: .5px;font-weight: 500;padding: 0;}
}

@media screen and (max-width: 480px) {
/* 外 */
.blog_list_ri em {font-size: 11px;margin: 0 0 5px;}
/* 內 */
.blog_in_page .blog_box {width: 100%;}
.blog_in_page h4.blog_category_title {
        padding: 15px 0;
    }
    .blog_in_page .edit {
        font-size: 14px;
    }
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*促銷活動設定 -OFF = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/* 促銷首頁 */
.news_part {}

/* 內頁 */
/* 標 */
.promotion_title {}
.promotion_title * {}
.promotion_title span {}
.promotion_title em {}
.promotion_title h2 {}




/* = = = 分隔線 相本主分類= = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*相本分類全版面 ( 限制最寬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: 3 / 4;}
.show-list .item a .show_pic img {
transform: scale(1);
transition: all .8s;
}
.show-list .item a:hover .show_pic img {
transform: scale(1.05);
}










/* = = = 分隔線 相本分類= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*相本列表*/

/* 主分類相簿名 */
.subalbum-menu h2:before {

}
.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 .main_part {max-width: 1200px;}
.album_class_page .show_content, .album_info_page .show_content {width: 100%;}
.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 {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px auto 0;
    padding-top: 20px;
    max-width: 1000px;
}
.album_class_page .show-list:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 1px;
    height: 100%;
    margin: auto;
    border-left: 1px dashed #000;
}
.show-list .item {
    text-align: center;
    width: 100%;
    background: transparent;
    max-width: 440px;
    padding-bottom: 30px;
    position: relative;
}
.show-list .item:nth-child(n+3) {
    margin-top: 40px;
}
.show-list .item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #000;
}
.show-list .item a:hover p:after {
    border: 1px solid #be1327;
    color: #fff;
    background-color: #be1327;
}


/* 次分類相簿名 */
.other_subalbum li a p {
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    transition: color .1s linear;
    position: relative;
    margin-top: 23px;
    text-align: center;
    letter-spacing: 1px;    
    display: flex;
    flex-direction: column;
    font-family: var(--SFontEN);    
    order: 1;
}
.other_subalbum li a p::before {
    content: '( BOSS HAIRSTYLE )';
    position: relative;
    margin: auto;
    font-size: 10px;
    color: #aaa;
    font-weight: 500;
    line-height: 1.4;
    transition: color .1s linear;
    margin-top: 5px;
    order: 2;
}
.other_subalbum li a p:after {
    content: 'View More';
    position: relative;
    margin: auto;
    margin-top: 20px;
    padding: 0 14px;
    width: fit-content;
    height: 24px;
    display: inline-block;
    font-size: 12px;
    line-height: 21px;
    border: 1px solid #000;
    box-sizing: border-box;
    border-radius: 12px;
    transition: color .24s, background-color .24s 50ms, border .24s 50ms;
    order: 3;
}


/*相本內頁-.album_info_page*/
.album_info_page .main_part{max-width: 1300px;}
.album_descrip p {
    font-weight: 700;
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    color: #333;
    font-size: 20px;
    letter-spacing: 0.12em;
}
/*相簿瀑布流-OFF*/
.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));
    grid-gap: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.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: 3 / 4;
}
.pic-list .item h6 {
    padding: 0;
}






@media (max-width: 1200px){
/* 內 */
.album_info_page .show_content {width: 90%;}
.album_info_page .pic-list {grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));}
}



@media screen and (max-width: 1024px){
/* 外 */
.show-list .item { width: calc((100% - 50px) / 2);}
.show-list .item:nth-child(n+3) {margin-top: 20px;}
}



@media screen and (max-width: 980px){}



@media screen and (max-width: 768px){/* 外 */
.album_class_page .show-list:before {content: none;}
.show-list .item {width: 100%;max-width: 100%;padding-bottom: 35px;}
.show-list .item a .show_pic {filter: grayscale(1);width: 67vw;margin: auto;}
.show-list .item:nth-child(n+3),.show-list .item:nth-child(n+2) {margin-top: 30px;}
.other_subalbum li a p {margin-top: 25px;}
}

@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;}

/* 外 */
.subalbum-menu h2 {font-size: var(--f28);margin: 0;padding: 0;line-height: 1;}
.album_class_page .show-list {padding-top: 10px;gap: 15px;}
.show-list .item a .show_pic {width: 85%;}

}





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*聯絡我們 -OFF= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.contact_content {}
/* 聯絡資訊 */
.contact_content .information_left {}
.blank_letter {}




/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

@media screen and (min-width: 1700px) {}


/* @1200下方區域_平板版面1200px */
@media screen and (max-width: 1200px) {
/* footer*/
.footer .center {width: 100%;}
.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 0;}
#to_top {bottom: 50px;left: 15px;}

/* 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) {}