@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&display=swap');

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
body{
    font-family:  "Zen Maru Gothic","微軟正黑體", "Bowlby One SC", sans-serif;
}
.path p, .path p a{ display: none;}

.edit{ padding: 0px 0;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*反白顏色*/
::-moz-selection{
    background-color: #6f1c1b;
    color: #e2e2e2;
  }
  ::selection{
    background-color: #6f1c1b;
    color: #e2e2e2;
  }
  
  body{
      overflow: overlay;
  }
  &::-webkit-scrollbar {
      background: #e2e2e2;
      width: 7px;
  }
  &::-webkit-scrollbar-button {
      display: none;
      background: #e2e2e2;
      border-radius: 0;
    }
  &::-webkit-scrollbar-track-piece {
      background: #e2e2e2;
    }
  
  &::-webkit-scrollbar-thumb {
      border-radius: 4px;
      background-color: #6f1c1b;
    }
  
  &::-webkit-scrollbar-track {
      box-shadow: transparent;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/* 1 */
/* 文字 */
.pageIndex .swiper-wrapper .swiper-slide:nth-child(1):before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/nottinghouse369/banner1-02.png);
    width: 100%;
    max-width: 100%;
    height: 101%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1000000;
    opacity: 0;
    animation: action-bottom 2.5s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 0.7s;
}

@keyframes action-bottom {
    0%,100% {
        top: 1000px;
        transform: scale(1.5);
        opacity: 0;
    }

    50% {
        top: 0;
        transform: scale(1.);
        opacity: 1;
    }

}


/* 牛排 */
.pageIndex .swiper-wrapper .swiper-slide:nth-child(1):after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/nottinghouse369/banner1-01.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1000000;
    transform-origin: 50% 00%;
    animation: steak-top  3s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 0.5s;
}

@keyframes steak-top {
    0% {
        top: -500px;
        opacity: 0;
    }

    30% {
        top: 0px;
        transform: scale(1) rotate(0);
        opacity: 1;
    }

    60% {
        transform: scale(1.1);
    }

    80% {
        transform: scale(0.9);
    }

    100% {
        top: 0px;
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

/* smoke */
.pageIndex .swiper-wrapper::before {
    content: "";
    display: block;
    display: block;
    position: absolute;
    /* top: 0; */
    background-image: url(https://pic03.eapple.com.tw/nottinghouse369/banner1-03.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1000;
    transform-origin: 0% 50%;
    opacity: 1;
    animation: run01 500s infinite forwards;
    animation-delay: 1.2s;
    transition: all 0.5s;
}

@keyframes run01 {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 1000%;
    }
}





/* 開場 */
/* 2 */

.pageIndex .swiper-wrapper .swiper-slide:nth-child(2)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/nottinghouse369/banner2-01.png);
    width: 100%;
    max-width: 100%;
    height: 101%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1000000;
    opacity: 0;
    animation: action-bottom 2.5s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 2.2s;
}

@keyframes action-bottom {
    0% {
        top: 1000px;
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        top: 0;
        transform: scale(1.);
        opacity: 1;
    }

}

/* steak */
.pageIndex .swiper-wrapper .swiper-slide:nth-child(2)::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/nottinghouse369/banner2-02.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1000000;
    transform-origin: 50% 00%;
    animation: jump 5s infinite cubic-bezier(0.65, 0.01, 0.28, 0.94);
    animation-delay: 2.5s;
}
/* 
@keyframes steak-top {
    0% {
        top: -200px;
        opacity: 0;
    }

    30% {
        top: 0px;
        transform: scale(1) rotate(0);
        opacity: 1;
    }

    60% {
        transform: scale(1.1);
    }

    80% {
        transform: scale(0.9);
    }

    100% {
        top: 0px;
        transform: scale(1) rotate(0);
        opacity: 1;
    }
} */
@keyframes jump {
    0% {
       top: 100px;
    }
    100% {
        top: 0px;
    }
}


/* 大圖黑底 */
/* .pageIndex .swiper-wrapper::after {
    content: "";
    display: block;
    display: block;
    position: absolute;
    top: 1px;
    left: 0;
    background: #000;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.9;
    z-index: 9999;
    transition: all 0.5s;
} */



/*預設解除背景輪播*/
#content_main {
    margin: 0;
    background: #000;
    z-index: 0;
}

.bannerindex {
    position: relative;
    height: auto;
    z-index: 0;
}

.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

.swiper-slide img {
    height: auto;
}

@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }
}


#content {
    width: 100%;
    min-height: 80vh;
    background-position: top center;
    background-size: 100% auto;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/*選單設定*/
.header_area{
    padding: 0;
    transition: 0.5s;
}
.nav-header{ padding-top: 16px; max-width: 190px;}

.header_area .main_header_area {
    position: fixed;
    background: transparent;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: all 0.5s;
}
.header_area.sticky .main_header_area {
    transition: all 0.5s;
}
.header_area.sticky .nav-header{ max-width: 150px; transition: 0.5s;}

.me_tp_features {
  display: none;
}


.main_header_area .container{ max-width: 100%;}
.pageIndex #page .main_header_area .container{ max-width: 1300px;}
.navigation{ justify-content: flex-end!important;right: 80px }
.pageIndex #page .navigation{ justify-content: center!important; right: 0px;}


.header_area .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
    display: block;
    position: fixed;
    top: 30px;
    left: 3.5%;
    transition: all 0.5s;
    pointer-events: all;
}
.header_area.sticky  .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
    top: 27px;
    transition: all 0.5s;
}


/* ham */
.stellarnav .menu-toggle{
    text-align: center;

}
.stellarnav .menu-toggle:after{
    content: "MENU";
    display: none;
    font-size: 12px;
    text-align: center;
    color: #43453D;
    font-family:  "Zen Maru Gothic","微軟正黑體", "Bowlby One SC", sans-serif;
    margin-top: 10px;
}


.stellarnav.desktop .menu-toggle span.bars span {
    display: block;
    position: relative;
    width: 50px;
    height: 3px;
    border-radius: 6px;
    background: #fff;
    margin: 0;
    margin-bottom: 8px;
    left: 0;
    transition: 0.5s;
}
.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(1) {
    transition: all  0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.stellarnav.desktop .menu-toggle span.bars span:nth-child(2) {
    opacity: 1;
    width: 25px;
    transition: all 1s;
}
.stellarnav.desktop .menu-toggle span.bars span:nth-child(3) {
    opacity: 1;
    width: 50px;
    transition: all 1s;
}
.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(2) {
    width: 50px;
    transition: all 1s;
}



/* 漢堡關 */

.stellarnav .menu-toggle span.bars {
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* 未開啟 */

.stellarnav.desktop > ul {
    display: none !important;
    margin: 0;
    padding: 0;
    text-align: center;
    background: transparent;
    position: relative;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: -5;
    transition: all 0.3s;
}
.stellarnav.desktop{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    pointer-events: none;
    transition: 1s;
}
.stellarnav.desktop::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%);
    opacity: 0;
    transition: 1s;
}



/* 開啟 */
.stellarnav.desktop.active > ul {
    display: flex !important;
    transition: all 0.3s;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    pointer-events: all;
    width: 20%;
    height: 100%;
    background: transparent;
    padding: 200px 4% 60px;
    padding-top: 130px;
    align-items: center;
    position: fixed;
    left: 0px;
   animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.stellarnav.desktop.active > ul::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0!important;
    background-color: #000000d1;
    backdrop-filter:blur(8px);
    animation: nav-left 0.5s forwards;
   animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.stellarnav.desktop.active{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-content: flex-end;
}
.stellarnav.desktop.active::before{
    content: "";
    width: 100%;
    height: 100%;
    /* background-color: #fff; */
    border-radius: 0;
    backdrop-filter: blur(5px);
    opacity: 1;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}


@keyframes nav-left {
    0%{
        width:  0;
    }
    100%{
        width:  100%;
    }
    
}

@keyframes line-up {
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}



/* ham close */

.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(1) {
    transform: rotate(-49deg);
    left:0px;
    top: 20px;
    transition: all 1s;
    background: #fff;
}
.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(3) {
    transform: rotate(225deg);
    transition: all 1s;
    background: #fff;
}
.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(2) {
    opacity: 0;
    transition: all 1s;
}


/* 選項 */
.stellarnav > ul > li > a {
    margin: 0 20px;
    padding-left: 0;
    color: #fff;
    border-bottom: 1px solid #fff;
    display: flex;
    text-transform: uppercase;
    position: relative;
    font-size: 17px;
    line-height: 20px;
    height: auto;
    margin: 0;
    overflow: visible;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    opacity: 1;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    letter-spacing: 5px;
    transform-origin: 0 0;
    font-family:  "Zen Maru Gothic","微軟正黑體", "Bowlby One SC", sans-serif;
    transition: 0.3s;
}
.stellarnav > ul > li{
    margin-bottom: 20px;
    padding-left: 0px;
}
.stellarnav > ul > li > a:hover{
    color: #ff8d00;
    border-bottom: 1px solid #ff8d00;
}
.stellarnav > ul > li > a:before{
    content: "";
    width: 9px;
    height: 9px;
    background: #ff8d00;
    display: block;
    position: absolute;
    bottom: -4px;
    left: -1px;
    transition: all .5s;
    transition-timing-function: ease-in-out;
    border-radius: 50%;
}
.stellarnav > ul > li > a:hover:before {
    left: calc(100% - 9px);
}
.stellarnav > ul > li > a b {
    line-height: 15px;
    height: 20px;
}
.stellarnav > ul > li > a b:nth-child(1) {font-weight: 800;margin-bottom: 5px;}
.stellarnav > ul > li > a b:nth-child(2) {
    font-size: 20px;
    color: #931101;
    margin-bottom: 12px;
    word-break: keep-all;
    font-family:  "Bowlby One SC","微軟正黑體",  sans-serif;
    display: block!important;
    transition: 0.5s;
}

.stellarnav li {
    opacity: 1;
    width: 100%;
}
.stellarnav > ul > li::before {
    content: "";
    display: none;
    width: 0%;
    height: 1px;
    margin: 15px 0;
    background-color: #43453d21;
    animation: line-left-right 1s forwards linear;
}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: flex;
    justify-content: center;
    z-index: 0;
}

.stellarnav > ul > li > a:hover b {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
}

/* animate word */
.stellarnav > ul > li{
    opacity: 0;
    animation: slideInUp 1.5s forwards;
    animation-delay: 0.2s;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 0;
}

.stellarnav > ul > li:nth-child(2) {
    animation: slideInUp 1s forwards;
    animation-delay: 0.2s;
}
.stellarnav > ul > li:nth-child(3) {
    animation: slideInUp 1s forwards;
    animation-delay: 0.4s;
}
.stellarnav > ul > li:nth-child(4) {
    animation: slideInUp 1s forwards;
    animation-delay: 0.6s;
}
.stellarnav > ul > li:nth-child(5) {
    animation: slideInUp 1s forwards;
    animation-delay:0.8s;
}
.stellarnav > ul > li:nth-child(6) {
    animation: slideInUp 1s forwards;
    animation-delay: 1s;
}
.stellarnav > ul > li:nth-child(7) {
    animation: slideInUp 1s forwards;
    animation-delay: 1.2s;
}


@keyframes slideInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
  
    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
  }
/* @keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
  
    from {
      opacity: 0;
      transform: translate3d(3000px, 0, 0) scaleX(3);
    }
  
    60% {
      opacity: 1;
      transform: translate3d(-25px, 0, 0) scaleX(1);
    }
  
    75% {
      transform: translate3d(10px, 0, 0) scaleX(0.98);
    }
  
    90% {
      transform: translate3d(-5px, 0, 0) scaleX(0.995);
    }
  
    100% {
    opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  } */


/* 下拉 */
.stellarnav ul ul {
    border-radius: 5px;
    left: -155px;
    top: 0;
    background: #2c383d;
    box-shadow: 1px 1px 5px #000000b3;
    display: none!important;
}
.stellarnav li li {
    display: block;
    border: 0;
    margin-bottom: -1px;
    background: transparent;
    transition: all 0.3s;
}


.stellarnav li li:nth-child(1) {
}
.stellarnav li li:nth-last-child(1) {
    border-radius: 0 0 5px 5px;
}
.stellarnav li li:hover {
    background: rgba(0, 0, 0, 0.551);
    z-index: 100000;
    transition: all 0.3s;
}

.stellarnav li li a {
    padding: 15px 10px;
    display: block;
    color: #EAE3CE;
    font-size: 14px;
    transition: all 0.3s;
}
.stellarnav li li:hover > a {
    color: #fff;
    letter-spacing: 1.1px;
    transition: all 0.3s;
}


/* 下拉二層 */

.stellarnav ul ul ul {
    top: 0;
    left: 240px;
}
.stellarnav li.has-sub > a:after{
    display: none;
}

@keyframes ul-show {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
    
}


  /* 漢堡條 */
  .stellarnav .menu-toggle span.bars span {background: #fff; width: 32px; height: 2.5px;}
  .stellarnav .menu-toggle:after { color: #fff;}
  
  /* close menu 拉出來 */
  .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu{
      background: #000;
      color: #fff;
    }
    .stellarnav .icon-close:before{
      border-bottom: solid 3px #fff;
    }
    .stellarnav .icon-close:after{
      border-bottom: solid 3px #fff;
    }
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{
      background:#000000d1;
      backdrop-filter:blur(8px);
    }
    .stellarnav a.dd-toggle .icon-plus:before{
      border-bottom: solid 3px #B8B8B8;
      display: none;
    }
    .stellarnav a.dd-toggle .icon-plus:after{
      border-bottom: solid 3px #B8B8B8;
      display: none;
    }
    .stellarnav.mobile > ul > li > a.dd-toggle{
      padding: 11px;
      top: 14px;
    }
    .stellarnav.mobile > ul > li > a.dd-toggle:before{
        display: none;
    }
    .stellarnav.mobile li.open{
      background: #384a53d5;
    }
    .stellarnav.mobile ul ul{
      width: 100%;
      position: relative;
      left: 0;
    }
    .stellarnav.mobile > ul > li{
      border-bottom: 0px;
    }
  
    .stellarnav.mobile li a{ border-bottom: 0px;}
  
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{max-width: 100%;}


@media screen and (max-width:1400px) {
    .stellarnav.desktop.active > ul{
        width: 26%;
    }
}
@media screen and (max-width:1024px) {
    .stellarnav.desktop.active > ul{
        width: 32%;
    }
    .navigation{ align-items:flex-end}
    .pageIndex #page .navigation{ align-items: center;}   
}

@media screen and (max-width:768px) {
    .stellarnav > ul > li{
        padding-bottom: 10px;
        padding-top: 10px;
    }
    .nav-header{
        max-width: 120px;
    }
    .stellarnav > ul > li > a:before{ display: none;}
    .stellarnav > ul > li{ padding-left: 0px;}
    .stellarnav.mobile > ul > li > a{padding: 10px 43px 10px 30px;}
    .navigation{ right: 32px;}
}

@media screen and (max-width:620px) {
    .nav-brand{ display: none;}
}

@media screen and (max-width:570px) {
    .header_area .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
        top: 26px;
    }
    
}
@media screen and (max-width:380px) {
    .header_area .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
        top: 20px;
    }
    
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/
.footer {    background: #0d0d0d;    padding-top: 50px; overflow: hidden;}


.footer:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: auto;
    bottom: -50px;
    z-index: 999;
    opacity: 1;
    pointer-events: none;
    mix-blend-mode: multiply;
    /* aspect-ratio: 444/279; */
    width: 100%;
    background: url(https://pic03.eapple.com.tw/nottinghouse369/footer-fire.png) 0px 0px repeat;
    animation: flameEffect 4s infinite ease-in-out;
    transform-origin: bottom center;
    filter: drop-shadow(0 0 10px orange) brightness(1.2);
    opacity: 0.2;
    background-repeat: no-repeat;
    background-repeat: repeat-x;

}

@keyframes flameEffect {
    0% {
      transform: scale(1) rotate(0deg);
      filter: drop-shadow(0 0 8px orange) brightness(1.2);
      opacity: 0.95;
    }
    25% {
      transform: scale(1.03, 0.97) rotate(-1deg);
      filter: drop-shadow(0 0 12px red) brightness(1.3);
      opacity: 0.85;
    }
    50% {
      transform: scale(0.98, 1.05) rotate(1deg);
      filter: drop-shadow(0 0 10px yellow) brightness(1.4);
      opacity: 0.9;
    }
    75% {
      transform: scale(1.02) rotate(-0.5deg);
      filter: drop-shadow(0 0 14px orange) brightness(1.5);
      opacity: 0.88;
    }
    100% {
      transform: scale(1) rotate(0deg);
      filter: drop-shadow(0 0 10px red) brightness(1.2);
      opacity: 0.95;
    }
  }

.footer .center {    max-width: 1500px; z-index: 999999;}

.footer_info {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.footer_logo {
    max-width: 15%;
    text-align: center;
    z-index: 1;
}

.footer_info ul {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 70px;
    align-items: center;
}
.footer_info li p, .footer_info li p a {    color:#fff;     letter-spacing: 2px; margin-bottom: 5px; font-size: 15px;}

.footer_info li p.mail:before{ content:'Email：' ;}
.footer_info li p.add2:before{ content:'營業時間：' ;}

.footer_info li:nth-child(1) {
    display: flex;
    flex-direction: column;
    z-index: 2;
}
.footer_info li:nth-child(2) {    z-index: 2;}

.footer_menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 22px;
}
.footer_menu a {
    color: #ff8d00;
    border: none;
    position: relative;
    padding: 12px 14px;
    text-align: center;
    background:none;
    border-bottom: 1px solid #ff8d00;
    position: relative;
}
.footer_menu a:before {
    content: "";
    width: 7px;
    height: 7px;
    background: #ff8d00;
    display: block;
    position: absolute;
    bottom: -4px;
    left: -1px;
    transition: all .5s;
    transition-timing-function: ease-in-out;
    border-radius: 50%;
}
.footer_menu a:hover:before {
    left: calc(100% - 9px);
}
.footer_menu a:hover {
   letter-spacing: 3px;
   background: transparent;
}


.footer_menu a:first-child {    display: none;}
.box_link {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 100%;
    bottom: 0;
    position: relative;
    right: 0;
    z-index: 9;
}
.box_link a {
    height: 40px;
    border-radius: 56px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border: none;
    margin: 5px;
    backdrop-filter: blur(4px);
    transition: all .5s;
    color: #b91b21;
    font-size: 15px;
}

.fa-phone-volume::before {    font-size: 17px;}
.box_link a:hover {    background: #ff8d00;  }
.box_link a:hover i {   }

/*版權*/
.copy {
  font-size: 12px;
  color: #efefef;
  border-top: 0px;
  background: transparent;
  letter-spacing: 3px;
  margin-top: 12px;
}
.copy a {  color: #efefef;}
.copy a:hover {  color: #efefef;}

#to_top {bottom: 16px; color: #ee9c25; background: #b91b21; box-shadow: 0px 0px 0 rgba(0, 0, 0, 0.1);  border-radius: 0; animation: pulseGlow 1.5s infinite; left: unset;right: 37px;}
#to_top i:before, #to_top i:after { background: #ee9c25;}
@keyframes pulseGlow {
    0%, 100% {
      box-shadow: 0 0 0px #332a28;
      transform: scale(1);
    }
    50% {
      box-shadow: 0 0 10px #332a28;
      transform: scale(1.1);
    }
  }

@media screen and (max-width: 1100px) {
.box_link {  /* order: 3; */  justify-content: center;}
.footer_info ul {  /* flex-direction: column; */  position: relative;  align-items: center;}
.footer_logo {  max-width: 20%;}
.footer_info li:nth-child(2) {  margin-top: 0;}
}
@media (max-width:768px) {
  .footer_info ul {      flex-direction: column;      padding: 0 20px;      align-items: center;  }
  .footer_info li:nth-child(1) {      align-items: center;  }  
  .footer_info li:nth-child(2) {      margin-top: 13px;  }
  .footer_menu {       grid-template-columns: 1fr 1fr 1fr;  }
  .footer_logo {max-width: 180px;}
  .box_link {      order: 3;  }
}
@media (max-width:480px) {
    .footer_menu {       grid-template-columns: 1fr 1fr ;  }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #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_menu_list { 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;}
@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) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
/* .banner {height: 600px; display: flex; align-items: center; justify-content: center ;position: relative; background-attachment: fixed; background-size: cover; background-position:center; background-repeat: no-repeat;}
.banner:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: linear-gradient(to top, #000 0, rgba(12, 12, 12, 0.4) 50%, transparent 80%) 0 0 no-repeat;
}
.banner h5 { font-family:  "Zen Maru Gothic","微軟正黑體",  sans-serif;font-size: 32px; color: #c0965f; display: flex; flex-wrap: wrap; justify-content: center ; width: 500px; z-index: 12;} */



/*Banner/＝＝＝＝＝*/
.banner {
    background: url(https://pic03.eapple.com.tw/nottinghouse369/ban-bg.jpg) no-repeat;
    background-position: top center;
    padding: 300px 60px 215px;
    position: relative;
    overflow: hidden;
}
.banner:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: linear-gradient(to top, #000 0, rgba(12, 12, 12, 0.4) 50%, transparent 80%) 0 0 no-repeat;
}
.banner:after {
    position: absolute;
    content: "";
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 53%;
    /* border-radius: 50%; */
    /* border: 2px dotted #fac02ca3; */
    background-color: #ffffff66;
    -webkit-animation: udanimate 50s;
    -moz-animation: udanimate 50s;
    -ms-animation: udanimate 50s;
    -o-animation: udanimate 50s;
    animation-iteration-count: infinite;
    background: url(https://pic03.eapple.com.tw/nottinghouse369/ban-dish.png) no-repeat;
    background-size: contain;
    z-index: 0;
    animation: udanimate 50s;

}

.banner h5 {
    font-size: 36px;
    color: #fff;
    letter-spacing: 8px;
    position: relative;
    top: -40px;
    width: fit-content;
    margin: auto;
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    background-clip: text;
    text-shadow: 5px 5px 10px #391911;
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    z-index: 9999;
    /* opacity: 0;
    -webkit-animation: bannerTxtAnimation 0.8s ease-in-out forwards, textclip 3.5s linear infinite;
    animation: bannerTxtAnimation 0.8s ease-in-out forwards, textclip 3.5s linear infinite; */
    padding-top: 25px
}
.banner h5::before {
    content: "";
    background: url(https://pic03.eapple.com.tw/nottinghouse369/ban-beef.png) no-repeat;
    width: 200px;
    height: 330px;
    background-size: contain;
    position: absolute;
    margin: auto;
    z-index: 5;
    transform: translateX(-50%);
    left: -145%;
    top: 20%;
    animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px); /* 向上移動 */
    }
    100% {
      transform: translateY(0px);
    }
  }

@-webkit-keyframes bannerTxtAnimation {
    0% {
      opacity: 0;
      -webkit-transform: translateY(10px);
              transform: translateY(10px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  
  @keyframes bannerTxtAnimation {
    0% {
      opacity: 0;
      -webkit-transform: translateY(10px);
              transform: translateY(10px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }

@-webkit-keyframes textclip {
  to {
    background-position: -200% center;
  }
}
@keyframes textclip {
  to {
    background-position: -200% center;
  }
}

@keyframes wave-reveal {
    0% {
        clip-path: inset(0  0 100% 0);
        opacity: .8;
    }

    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes udanimate {
    0%  {     transform: translate(-50%,-50%) rotate3d(0, 0, 1, 0deg);     }
    100%{     transform: translate(-50%,-50%) rotate3d(0, 0, 1, 360deg);     }
}
@-webkit-keyframes moving-balloon {
    0% {
      transform: translate(-50%);
    }
    50% {
      transform: translate(50%, -10%) ;
    }

  }
  @keyframes moving-balloon {
    0% {
      transform: translate(-50%);
    }
    50% {
      transform: translate(50%, -10%) ;
    }

}
@-webkit-keyframes itemAni1 {
    50% {
      -webkit-transform: translate(10%, 10px);
              transform: translate(10%, 10px);
    }
  }
  @keyframes itemAni1 {
    50% {
      -webkit-transform: translate(10%, 10px);
              transform: translate(10%, 10px);
    }
  }

  
@media screen and (max-width:600px){
    .banner:after{
        width: 280px;
        height: 280px;
    }
    .banner{ padding:88px 60px 160px ;}
    .banner h5{ font-size: 28px; top: 28px;}
    .banner h5::before{ width: 120px;height: 180px;left: -90%; }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
.blog_page #content,.blog_in_page #content{
    background-image: url(https://pic03.eapple.com.tw/nottinghouse369/in-bg.jpg);
    background-size: cover;
    background-position: top;
}


.blog_page h4.blog_category_title {
    display: none;
}

.blog_box {
    padding: 0;
    margin-top: 20px;
}

.blog_le {
    padding: 0;
}

.blog_ri {
    padding: 0 0 0 60px;
}

.blog_le,
.blog_ri {
    margin-bottom: 1vw;
}

.blog_subbox {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 24px;
}

.blog_subbox:before {
    content: none;
}

.subbox_item {
    width: 100%;
    margin: 0;
    background: white;
    border-bottom: none;
}

.subbox_item:hover {
    transform: translateY(-6px);
}

.subbox_item a {
    display: flex;
    flex-flow: row wrap;
    gap: 0;
}

.blog_list_le {
    width: 260px;
    padding: 0;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

.blog_list_le img {
    min-width: 100%;
    display: block;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog_list_ri {
    display: flex;
    flex-flow: column wrap;
    padding: 44px 36px 44px 44px;
    width: calc(100% - 275px);
    position: relative;
    justify-content: center;
}

.blog_list_ri h5 {
    font-weight: bold;
    color: #a31b21;
}

.blog_list_ri em {
    order: 1;
    font-weight: 400;
    margin: 0;
    position: relative;
}

.blog_list_ri p {
    line-height: 165%;
    margin: 16px 0 20px;
    -webkit-line-clamp: 2;
    letter-spacing: 0.5px;
    color: #000;
}

.blog_list_ri em:after {
    content: '閱讀更多 ●';
    letter-spacing: 0.4px;
    color: #ff8d00;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
}

.subbox_item a:before,
.subbox_item a:after {
    content: none;
}

h5.blog_le_t {
    display: none;
}

.blog_le .accordion {
    border-radius: 0;
    background: #fff;
}

.accordion li .link a {
    color: #444;
    font-weight: 400;
    font-size: 15px;
    padding: 12px;
}

.accordion li .link {
    border-bottom: none;
}

.accordion li {
    transition: all 0.2s ease;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.open:hover,
.blog_le .accordion>li.on_this_category:hover {
    background: #ff8d00 !important;
}

.blog_le .accordion>li.open,
.blog_le .accordion>li.on_this_category {
    background: #ff8d00 !important;
}

.blog_le .accordion>li.open .link a,
.blog_le .accordion>li.open .link i {
    color: #fff !important;
}

.submenu {
    background: #fff;
    font-size: 14px;
}

.submenu a {
    font-family: 'Noto Serif TC', serif;
    color: #444;
    letter-spacing: 0px;
    font-weight: 400;
    padding: 12px 12px 12px 36px;
    border-left: #fff 0 solid;
    transition: all .15s;
}

.submenu li.on_this_category a,
.submenu a:hover {
    background: #fcf9f4;
    color: #222;
}

.submenu a i {
    left: 12px;
    font-weight: 900;
}

.submenu a:hover {
    border-left: #fcf9f4 4px solid;
}

.blog_search input[type=search] {
    background: #fff;
    font-size: 13px;
    border-radius: 0;
    padding: 12px 36px 12px 12px;
}

.blog_search input[type=submit] {
    filter: grayscale(20);
}

.blog_le .accordion li .link i {
    transition: none;
}

/*內頁*/
.articel_mainPic,
.blog_shareData {
    display: none;
}

h4.blog_category_title {
    padding: 0;
    margin-bottom: 20px;
    font-size: 30px;
    color: #d88625;
    letter-spacing: 2px;
}

.blog_box_edit {
    color: #fff;
    font-size: 16px;
}

.blog_box_edit * {
    line-height: 165%;
}

.blog_back {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    justify-content: center;
}

.blog_back a {
    width: 100%;
    font-weight: 500 !important;
}

.blog_back a:hover {
    background: #801101 !important;
}

.blog_back a.article_btn_next,
.blog_back a.article_btn_prev,
.blog_back a.article_btn_back {
    background: transparent;
    border: 1px solid #802123;
    transition: all .3s ease;
}

.news_related {
    padding: 48px 0;
    background: rgba(0, 0, 0, .1);
}

.news_related_list {
    max-width: 1400px;
    width: 90%;
    display: flex;
    justify-content: center;
}

.lastPage {
    background: transparent;
    border: 1px solid #802123;
    margin: 40px auto 20px;
    transition: 0.3s;
}

.lastPage:hover{
    background: #801101;
}


.news_related h6 span:before {
    color: #fff;
}

.news_related_list li a p {
    margin-top: 4px;
    color: rgba(240, 237, 237, 0.941)
}
.news_related_list li a{
    background: unset;
}

.news_related_list li {
    width: calc((100% - 60px) / 4);
}

@media screen and (max-width: 1024px) {

    .subbox_item a {
        flex-direction: column;
    }

    .blog_list_le,
    .blog_list_ri {
        width: 100%;
    }

    .blog_list_ri {
        padding: 24px;
    }

    .blog_list_ri p {
        margin: 10px 0 14px;
    }

    .news_related_list li {
        width: calc((100% - 20px) / 2);
    }

    .news_related_list {
        grid-gap: 20px;
    }
}

@media screen and (max-width: 768px) {

    .blog_ri {
        padding: 0;
    }

    .blog_search {
        margin-bottom: 20px;
    }

    h4.blog_category_title {
        font-size: 26px;
    }

    .news_related_list li a p {
        -webkit-line-clamp: 1;
        word-break: break-all;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }


}
  

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





.car_page .information_left {
    display: block;
}
body.car_page .footer_info li p:before{
    position: initial;
    display: inline;
}
.contact_le_map a{background: #2a93d8; }




@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
.footer.with_shopping_mode { padding:30px 0 55px; }
#to_top { bottom:22px;}
}

@media screen and (max-width: 600px) { 
}




