html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

html,
body {
  position: relative;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
    outline: 0;
}

img{
  max-width: 100%;
  height: auto;
}

a{
  color: #000;
}

a:hover{
  text-decoration: none;
  color: #000;
}

/*webfonts*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;600&display=swap');


@font-face {
    font-family: 'YesevaOne';
    src: url(../webfonts/YesevaOne-Regular.ttf);
}

@font-face {
    font-family: 'Libre';
    src: url(../webfonts/LibreBaskerville-Regular.ttf);
}

@font-face {
    font-family: 'NotoSerifTC-Regular';
    src: url(../webfonts/NotoSerifTC-Regular.otf);
}

@font-face {
    font-family: 'NotoSerifTC-SemiBold';
    src: url(../webfonts/NotoSerifTC-SemiBold.otf);
}

body{
  font-family: 'NotoSerifTC-Regular',serif;
}

.swiper-container {
  width: 100%;
  height: 100%;
  margin-top: 58px;
}

.header-wrap{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 990;
  border-bottom: 1px solid rgb(0 0 0 / 30%);
  background: #2c2c2c;
  transition: .3s ease;
}


.header-wrap.active{
  background: #272727;
  border-bottom:0px solid rgb(255 255 255 / 0);
  transition: .5s ease;
}

.header-wrap.active .header-menu {
  transition: .5s ease;
}

/* hamburger */

#hamburger {
  width: 30px;
  height: 30px;
  margin: 10px;
  margin-left: 0;
  margin-top: 16px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#hamburger span:nth-child(1) {
  top: 0px;
}

#hamburger span:nth-child(2),#hamburger span:nth-child(3) {
  top: 10px;
}

#hamburger span:nth-child(4) {
  top: 20px;
}

#hamburger.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#hamburger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#hamburger.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}


.header-menu{
  max-width: 100%;
  position: relative;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.header-menu ul{
  width: 100%;
  height: 100vh;
  padding: 80px 50px;
  background: #272727;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  right: -100%;
  transition: all .8s;
}

.header-wrap.open ul.open-mo-list{
  right: 0;
  transition: all .8s;
}


.header-menu ul li a{
  position: relative;
  display: block;
  padding: 20px 10px;
  color: #fff;
  letter-spacing: 2px;
  font-size: 18px;
  text-align: center;
  border-bottom: 1px solid #fff3;
}

@media (min-width: 768px) {
  .swiper-container{
    margin-top: 0;
  }

  .header-wrap{
    display: block;
    background: transparent;
    border-bottom: 1px solid rgb(255 255 255 / 30%);
  }

  #hamburger{
    display: none;
  }

  .header-menu ul{
    width: auto;
    height: auto;
    padding: 0;
    flex-direction: row;
    position: relative;
    top: 0;
    right: 0;
    background: transparent;
  }

  .header-menu ul li a{
      border-color: transparent;
      font-size: 16px;
  }

  .header-menu ul li a:after,
  .header-menu ul li a.active:after
  {
      content: '';
      width: 0%;
      height: 1px;
      margin: 0 auto;
      background-color: #fff;
      display: block;
      position: absolute;
      bottom: 10px;
      left: 0;
      right: 0;
      transition: .3s ease;
  }

  .header-menu ul li a:hover:after{
      content: '';
      width: 30%;
      transition: .3s ease;
  }

  .header-menu ul li a.active:after{
      width: 30%;
  }
  
}

@media (min-width: 1024px) {

  .header-menu ul li a{
    padding: 20px;
  }
  
}

/*about*/
.about_area {
  padding-top: 150px;
  padding-bottom: 150px;
}

/*about animation*/
.bg_move {
  overflow: hidden;
}

.bg_move:before {
    content: "";
    display: block;
    width: calc(100% + 1px);
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 2;
    transform: scaleX(1);
    transition-delay: 1s;
    transition: all 1s cubic-bezier(0.860, 0.000, 0.070, 1.000);    
}

.bg_black.bg_move:before,
.bg_white.bg_move:before
{
    background: #EDEDED;
    transform-origin: right;
    right: -1px;
}

.bg_white.bg_move:before{
    background: #fff;
}

.bg_black.bg_move.visible:before,
.bg_white.bg_move.visible:before
{
    transform: scaleX(0);
}

.bg_black,.bg_white{
  display: inline-block;
  background-color: transparent;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}


@media (max-width: 767px) {
   .about_area {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about_area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .about_area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.section_title h3{
    font-size: 2rem;
    font-weight: 400;
    color: #222222;
    font-family: "YesevaOne", serif;
    margin-bottom: 21px; 
}

.section_title p {
    color: #575757;
    line-height: 1.5;
    font-size: 1rem;
    letter-spacing: 1px;
}

@media (min-width: 1024px) {
  .section_title h3{
    font-size: 3rem;
  }

  .section_title p {
    font-size: 1.05rem;
  }
  
}

.about_area .about_info {
  padding-left: 68px;
}

@media (max-width: 767px) {
  .about_area .about_info {
    padding-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about_area .about_info {
    padding-left: 0;
  }
}

.about_area .about_info .opening_hour {
  font-family: "YesevaOne", cursive;
  font-size: 30px;
  font-weight: 400;
  color: #252219;
  margin-bottom: 55px;
  margin-top: 37px;
}

.about_area .about_info .opening_hour span {
  color: #252219;
  font-size: 20px;
  margin-left: 6px;
  display: inline-block;
}

@media (max-width: 767px) {
  .about_area .about_info .opening_hour span {
    margin-left: 0;
  }
}

.about_area .about_thumbs {
  position: relative;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}

@media (min-width: 768px) and (max-width: 991px) {
  .about_area .about_thumbs {
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .about_area .about_thumbs {
    margin-bottom: 30px;
  }
}

.about_area .about_thumbs img {
  width: 100%;
}

.about_area .about_thumbs .large_img_1 {
  padding-right: 156px;
}

@media (max-width: 767px) {
  .about_area .about_thumbs .large_img_1 {
    padding-right: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about_area .about_thumbs .large_img_1 {
    padding-right: 0px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .about_area .about_thumbs .large_img_1 {
    padding-right: 100px;
  }
}

.about_area .about_thumbs .small_img_1 {
  position: absolute;
  right: 0;
  bottom: 0;
  border-top: 15px solid #ffffff;
  border-left: 15px solid #ffffff;
  top: 80px;
}

@media (max-width: 767px) {

  .about_area .about_thumbs .small_img_1 {
    position: absolute;
    right: 0;
    bottom: 0;
    border-top: 15px solid #ffffff;
    border-left: 15px solid #ffffff;
    top: auto;
    width: 50%;
    height: 60%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about_area .about_thumbs .small_img_1 {
    bottom: -30px;
  }
}

.about_area .about_thumbs .small_img_1 img {
  width: 100%;
  height: 100%;
}

/*view more btn - 使用max-width*/
.btn--primary {
    border: 1px solid #111;
    text-align: left;
    letter-spacing: 1px;
    font-size: .9rem;
    position: relative;
    padding: 0;
    background-color: transparent
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0);
}

.btn--primary-w{
    border: 1px solid #fff;
}

.btn--primary:before,.btn--primary-w:before {
    content: "";
    position: absolute;
    width: 50px;
    border-top: 1px solid #111;
    right: -30px;
    top: 22px;
    -webkit-transition: all .4s cubic-bezier(.165, .84, .44, 1);
    transition: all .4s cubic-bezier(.165, .84, .44, 1);
    -webkit-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transition-timing-function: cubic-bezier(.165, .84, .44, 1)
}

.btn--primary-w:before{
  border-top: 1px solid #fff;
}

.btn--primary:after,.btn--primary-w:after {
    content: "";
    position: absolute;
    width: 0;
    border-top: 1px solid #666;
    left: 65%;
    top: 22px;
    -webkit-transition: all .4s cubic-bezier(.165, .84, .44, 1);
    transition: all .4s cubic-bezier(.165, .84, .44, 1);
    -webkit-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transition-timing-function: cubic-bezier(.165, .84, .44, 1)
}

.btn--primary-w:after{
  border-top: 1px solid #fff;
}
.btn--primary span,.btn--primary-w span {
    position: relative;
    color: #111;
    background-color: transparent;
    display: block;
    min-width: 150px;
    padding: 12px 20px;
    -webkit-transition: all .4s cubic-bezier(.165, .84, .44, 1);
    transition: all .4s cubic-bezier(.165, .84, .44, 1);
    -webkit-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transition-timing-function: cubic-bezier(.165, .84, .44, 1)
}

.btn--primary-w span{
  color: #fff;
}

.btn--primary:hover:before {
    width: 0
}

.btn--primary:hover:after {
    width: 50px;
    left: calc(100% - 20px);
    -webkit-transition-delay: .1s;
    transition-delay: .1s
}

.btn--primary:hover span {
    color: #666;
    background-color: #fafafa
}


@media (max-width:767px) {
    .btn--primary:before {
        top: 23px
    }

    .btn--primary:after {
        top: 20px
    }
}

@media (max-width:575px) {
    .btn--primary:hover:after {
        width: 35px;
        left: calc(100% - 25px)
    }

    .btn--primary:before {
        width: 40px;
        right: -10px
    }
}



/*mobile menu*/

.min-header{display: none;}

@media (max-width: 767px) {
.min-header {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  height: 50px;
  width: 50px;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  transition: all 0.5s ease-out, background 1s ease-out;
  transition-delay: 0.2s;
  z-index: 1030;
}
.min-header .burger-container {
  position: relative;
  display: inline-block;
  height: 50px;
  width: 50px;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.min-header .burger-container #burger {
  width: 18px;
  height: 8px;
  position: relative;
  display: block;
  margin: -4px auto 0;
  top: 50%;
}
.min-header .burger-container #burger .bar {
  width: 100%;
  height: 1px;
  display: block;
  position: relative;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0s;
}
.min-header .burger-container #burger .bar.topBar {
  -webkit-transform: translateY(0px) rotate(0deg);
          transform: translateY(0px) rotate(0deg);
}
.min-header .burger-container #burger .bar.btmBar {
  -webkit-transform: translateY(6px) rotate(0deg);
          transform: translateY(6px) rotate(0deg);
}
.min-header .icon {
  display: inline-block;
  position: absolute;
  height: 100%;
  line-height: 50px;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #fff;
  font-size: 22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.min-header .icon.icon-bag {
  right: 0;
  top: 0;
  left: auto;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  transition: -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.65s;
}
.min-header ul.menu {
  position: relative;
  display: block;
  padding: 0px 48px 0;
  list-style: none;
}
.min-header ul.menu li.menu-item {
  border-bottom: 1px solid #333;
  margin-top: 5px;
  -webkit-transform: scale(1.15) translateY(-30px);
          transform: scale(1.15) translateY(-30px);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}
.min-header ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.49s;
}
.min-header ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0.42s;
}
.min-header ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.35s;
}
.min-header ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.28s;
}
.min-header ul.menu li.menu-item:nth-child(5) {
  transition-delay: 0.21s;
}
.min-header ul.menu li.menu-item:nth-child(6) {
  transition-delay: 0.14s;
}
.min-header ul.menu li.menu-item:nth-child(7) {
  transition-delay: 0.07s;
}

.min-header ul.menu li.menu-item:nth-child(8) {
  transition-delay: 0.03s;
}

.min-header ul.menu li.menu-item a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
  line-height: 2;
  width: 100%;
  text-align: center;
}
.min-header.menu-opened {
  width: 100%;
  height: 100vh;
  background-color: #000;
  transition: all 0.3s ease-in, background 0.5s ease-in;
  transition-delay: 0.25s;
}
.min-header.menu-opened .burger-container {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.min-header.menu-opened .burger-container #burger .bar {
  transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.2s;
}
.min-header.menu-opened .burger-container #burger .bar.topBar {
  -webkit-transform: translateY(4px) rotate(45deg);
          transform: translateY(4px) rotate(45deg);
}
.min-header.menu-opened .burger-container #burger .bar.btmBar {
  -webkit-transform: translateY(3px) rotate(-45deg);
          transform: translateY(3px) rotate(-45deg);
}
.min-header.menu-opened ul.menu li.menu-item {
  -webkit-transform: scale(1) translateY(0px);
          transform: scale(1) translateY(0px);
  opacity: 1;
}
.min-header.menu-opened ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.27s;
}
.min-header.menu-opened ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0.34s;
}
.min-header.menu-opened ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.41s;
}
.min-header.menu-opened ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.48s;
}
.min-header.menu-opened ul.menu li.menu-item:nth-child(5) {
  transition-delay: 0.55s;
}
.min-header.menu-opened ul.menu li.menu-item:nth-child(6) {
  transition-delay: 0.62s;
}
.min-header.menu-opened ul.menu li.menu-item:nth-child(7) {
  transition-delay: 0.69s;
}

.min-header.menu-opened ul.menu li.menu-item:nth-child(8) {
  transition-delay: 0.73s;
}

.min-header.menu-opened .icon.icon-bag {
  -webkit-transform: translateX(75px);
          transform: translateX(75px);
  transition-delay: 0.3s;
}

.min-header ul.menu li.menu-item .mo-logo-fit{
  padding-bottom: 1em;
}

}
/*mobile menu end*/

.bg-cover{
  background-repeat: no-repeat;
  background-position: center;
    background-size: cover;
}

/*scale*/
.image-scale {
    -webkit-animation: image-scale 3s;
    animation: image-scale 3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes image-scale
{
    0%
    {
        -webkit-transform: scale(1.2, 1.2);
    }
    100%
    {
        -webkit-transform: scale(1, 1);
    }
}
@keyframes image-scale
{
    0%
    {
        transform: scale(1.2, 1.2);
    }
    100%
    {
        transform: scale(1, 1);
    }
}

/*scroll down*/
#scrollDown-wrap{
  position: absolute;
  bottom: -5%;
  right: 10%;
  width: auto;
}

#scrollDown-wrap a {
    padding-bottom: 25px;
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
    font: normal 12px/1 'Libre',serif;
    letter-spacing: 1px;
    text-decoration: none;
    transition: opacity .3s;
    -webkit-writing-mode: vertical-rl;
    writing-mode: tb-rl;
    direction: rtl;
}

#scrollDown-wrap a span {
    position: absolute;
    bottom: -40px;
    right: 40%;
    content: '';
    width: 1px;
    height: 60px;
    border: 1px solid #fff;
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


@media (min-width: 768px) {
  #scrollDown-wrap{
    bottom: 5%;
    right: 5%;
  }

  #scrollDown-wrap a{
    padding-bottom: 55px;
  }

  #scrollDown-wrap a span {
    height: 85px;
  }
}

@media (min-width: 1024px){
  #scrollDown-wrap {
    bottom: 2%;}
}


/*首頁輪播圖*/

.swiper-pagination-bullet-active{
  outline: none;
}

.index-slider .swiper-container .swiper-slide{
  height: 45vh;
  width: 100vw!important;
  position: relative;
  display: flex;
  align-items: center;
}

.index-slider .swiper-container .swiper-slide:before{
  content: '';
  background: #0003;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}


.index-slider .swiper-container .swiper-slide .title{
  position: relative;
  z-index: 99;
  color: #fff;
  font-size: 1.3rem;
  text-transform:uppercase;
  font-family: 'YesevaOne','NotoSerifTC-Regular',serif;
  letter-spacing: 2px;
  line-height: 1.5;
}

.index-slider .swiper-container .swiper-pagination{
  z-index: 99;
}

.logo{
  display: block;
  padding-top: 0;
}


/*index-product*/

.swiper-container-sm {
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
}

.swiper-container-sm .swiper-slide {
  text-align: center;
  font-size: 18px;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-container-sm .swiper-pagination{
  position: relative;
  z-index: 8;
  bottom: -40px;
}

.swiper-container-sm .swiper-pagination-bullet-active {
    outline: none;
    background: #000;
}

.index-product-wrap{
  background: #ededed;
  padding: 40px 0;
}

.products-content h4{
  font-size: 1.1rem;
  font-weight: bold;
  font-family: 'NotoSerifTC-SemiBold',serif;
  letter-spacing: 2px;
  padding: 15px;
}

.products-content p {
    color: #575757;
    line-height: 1.5;
    font-size: .9rem;
    letter-spacing: 1px;
}

@media (min-width: 568px) {
  .index-slider .swiper-container .swiper-slide{
    height: 70vh;
  }
}

@media (min-width: 768px) {

  .index-product-wrap{
    padding: 150px 0;
  }

  .index-slider .swiper-container .swiper-slide .title{
    font-size: 1.5rem;
  }

  .products-content p {
      font-size: 1rem;
  }

  .swiper-container .swiper-slide .title{
      font-size: 2rem;
  } 
}

@media (min-width: 812px) {
  .index-slider .swiper-container .swiper-slide{
    height: 100vh;
  }  
}



/*news layout*/
.service_area {
  padding-top: 150px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {  
  .service_area {
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .service_area .col-6:nth-child(odd),
  .project-wrap .col-6:nth-child(odd){
    padding-right: 5px;
  }

  .service_area .col-6:nth-child(even),
  .project-wrap .col-6:nth-child(even){
    padding-left: 5px;
  }
}

.service_area .single_service .service_thumb {
  overflow: hidden;
}

@media (min-width: 1300px) {
  .service_area .single_service .service_thumb {
    height: 360px;
  }
  
}

.service_area .single_service .service_thumb img {
  width: 100%;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.service_area .single_service .service_content {
  display: block;
  position: relative;
  padding: 15px;
  border: 1px solid rgba(0,0,0,.1);
  border-top: none;
  margin-bottom: 30px;
}

.service_area .single_service .service_content .date{
  line-height: 1.5;
  font-size: 14px;
  padding-bottom: 5px;
  letter-spacing: 1px;
}


@media (min-width: 992px) and (max-width: 1200px) {
  .service_area .single_service .service_content {
    padding: 40px 30px 30px 30px;
  }
}

.service_area .single_service .service_content .icon {
  width: 55px;
  height: 55px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.28);
  box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.28);
  color: #eb592d;
  text-align: center;
  line-height: 55px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -25px;
  z-index: 0;
  background: #fff;
  top: 0;
  font-size: 25px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.service_area .single_service .service_content h3{
  display: block;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 10px;
  color: #141419;
  transition: .3s ease;
}

.service_area .single_service .service_content:hover h3{
  color: #C9A063;
  transition: .3s ease;
}

.service_area .single_service .service_content p {
  font-size: 16px;
  line-height: 1.3;
  color: #575757;
  font-weight: 400;
  margin-bottom: 0;
  transition: .3s ease;
}

.service_area .single_service .service_content:hover p{
  opacity: .5;
  transition: .3s ease;
}

.service_area .single_service:hover .service_thumb img {
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.service_area .single_service:hover .service_content .icon {
  -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
}






.footer{
  background: #272727;
}

.footer-box{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 15px 0;
  font-size: 14px;
  letter-spacing: 1px;
}

.menu_links{
  display: none;
}

.menu_links ul{
  display: flex;  
  flex-direction: column;
}

.menu_links ul li{
  
}

.menu_links ul li a{
  display: inline-block;
  color: #fff;
  transition: .3s ease; 
}

.menu_links ul li a:hover{
  opacity: .6;
  transition: .3s ease;
}

.menu_links ul li a:last-child{
  padding-right: 0;
}

.social_links{
  display: flex;
  color: #fff;

}

.social_links span{
  display: inline-block;
  padding-right: 15px;
  margin-right: 15px;
  margin: 15px 0;
  border-right: 1px solid #434343;
}

.social_links ul{
  display: flex;
  padding-left: 15px;
  align-items: center;
}

.social_links ul li{
  margin: 0 5px;
}

.social_links a{
  display: inline-block;
  color: #fff;
  transition: .3s ease;
}

.social_links a:hover{
  opacity: .6;
  transition: .3s ease;
}

.copyright{
  color: #808080;
  line-height: 1.5;
}

.copyright a{
  color: #808080;
}

.copyright a:hover{
  color: #fff;
}

.border-top{
  border-color: #434343!important;
}

.footer-contact{
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  padding-left: 10px;
}

.footer-contact li{
  display: block;
  color: #fff;
  margin-bottom: 15px;
}

@media (min-width: 1024px) {

  .footer-box,.menu_links ul{
    flex-direction: row;
    align-items: center;
  }

  .menu_links{
    display: block;
  }

  .menu_links li+li:before {
      margin: 0 1.5rem;
      font-size: 1.1rem;
      color: #999;
      content: "/";
  }

  .copyright{
    line-height: 3;
  }

  .footer-contact{
    display: none;
  }
}

@media (min-width: 1200px){
  .container{
      max-width: 1300px;
  }

  .container-s{
      max-width: 1100px;
  }
}

/*---------------------
  Gallery Section
-----------------------*/
.gallery-section {
  padding-bottom: 80px;
}
.gallery-section .section-title {
  margin-bottom: 38px;
}
.gallery-item {
  position: relative;
  width: 100%;
  height: 279px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.gallery-item:hover:after {
  opacity: 1;
}
.gallery-item:hover .gi-text {
  opacity: 1;
}
.gallery-item:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 25, 26, 0.3);
  content: "";
  z-index: -1;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
.gallery-item.large-item {
  height: 576px;
}
.gallery-item .gi-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
.gallery-item .gi-text h3 {
  color: #ffffff;
}

.banner {
  height: 18rem;
  overflow:hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner:after{
  content: '';
  background: #0004;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
}

.banner h2{
  color: #fff;
  position: relative;
  z-index: 3;
  font-family: 'YesevaOne',serif;
  font-size: 1.8rem;
  letter-spacing: 3px;
  margin-top: 35px;
}

.banner .image-scale{
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.banner .image-scale img {
    min-width: 500px;
    position: absolute;
    right: 0;
    bottom: 0;  
}

.product-banner-custom img{
  right: -100px;
}

@media (min-width: 450px){
  .product-banner-custom img{
    right: 0;
  }
}

@media (min-width: 1024px){
  .banner {
    height: 30rem;
  }
}

@media (min-width: 1140px) {
  .banner .image-scale img {
    width: 100%;
    min-width: 1900px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;    
  }
}



.about-section p{
  margin-bottom: 20px;
  color: #000;
}

.about-section span{
    display: inline-block;
    margin-top: 15px;
    color: #000;
    line-height: 1.5;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgb(189 189 189 / 50%);
}

.about-section ul{
  display: block;
}

.about-section ul li{
  padding-left: 15px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #575757;
}

.about-section ul li:before{
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 100%;
  display: block;
  background: #cc9a2a;
  position: absolute;
  left: 0;
  top: 10px;
}

/*project*/
.project-wrap,.project-in-wrap,.contact-big-wrap{
  padding-top: 150px;
  padding-bottom: 150px;
}

.news-wrap{
  padding-top: 60px;
  padding-bottom: 80px;
}

@media (max-width: 768px){
  .project-wrap,.project-in-wrap,.news-wrap,.contact-big-wrap {
      padding-top: 40px;
      padding-bottom: 40px;
  }
}

.project-in-wrap .swiper-container .swiper-slide{
  width: auto;
}

.project-img{
  width: 100%;
  display: block;
  overflow:hidden;
  position: relative;
}

.project-img:before{
  content: url(../images/viewmore.png);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  z-index: 2;
  width: 45px;
  height: 45px;
  opacity: 0;
  transition: .3s ease;
}

.project-img:after{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #0005;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: .3s ease;
}

.project-img:hover:before{
  opacity: 1;
  transition: .3s ease;
}

.project-img:hover:after{
  opacity: 1;
  transition: .3s ease;
}

.project-img img{
  width: 100%;
  transform: scale(1.1);
  transition: 3s ease;
}

.project-img:hover img{
  transform: scale(1.3);
  transition: 3s ease;
}

.project-title{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 15px 0 50px 0;
}

.project-title h3{
  margin: 0;
  text-align: left;
}

.project-title span{
  font-family: Jomolhari,serif;
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;  
  letter-spacing: 2px;
  color: #c9caca;
}

.project-title h3 a{
  font-family: 'NotoSerifTC-SemiBold',serif;
  font-size: 1rem;
  margin: 0;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #000;
  transition: .3s ease-out;
}

.project-title h3 a:hover{
  color: #C9A063;
  transition: .3s ease-out;
}

.project-title p{
  display: block;
  margin-top: 7px;
  line-height: 1.5;
  font-size: .9rem;
  text-align: left;
}

@media (min-width: 768px) {

  .project-title{
    flex-direction: column;
  }

  .project-title h3 a {
    font-size: 1.1rem;
    letter-spacing: 2px;
    line-height: 1.5;
  }
  
}

@media (min-width: 1024px) {

  .project-title{
    flex-direction: row;
    align-items: flex-end;
  }
  
}


.more-btn{
  display: none;
  font-size: 1rem;
  width: 45px;
  height: 20px;
  color:#565656;
  position: relative;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 15px;
}

.more-btn:before{
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 104%;
    height: 1px;
    background-color: #e8caa4ad;
    transform: scale(1, 1);
    transform-origin: left top;
    transition: -webkit-transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
    transition: transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
    transition: transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1),
    -webkit-transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
}

.more-btn:hover:before{
    transform-origin: right top;
    transform: scale(0, 1);
}

@media (min-width: 768px) {
  .more-btn{
    display: inline-block;
    margin-bottom: 0;
  }
  
}

/*分頁*/
.page-wrap ul{
  justify-content: center;
  flex-wrap: wrap;
}

.page-wrap li{
  margin: 10px;
}

.page-link{
  font-size: .8rem;
  color: #000;
  border: 1px solid #fff;
}

.page-item.active .page-link{
  font-size: .8rem;
  color: #fff;
  border-color: #fff;
  background: #ced4da;
  transition: .3s ease;
}

.page-link:hover {
    color:  #fff;
    text-decoration: none;
    background-color: #ced4da;
    border-color: #ced4da;
    transition: .3s ease;
}

.page-link span{
  color: #6c757d;
}

.page-link:hover span{
  color: #fff;
}

.project-list ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.project-list ul li{
  color: #000;  
  letter-spacing: 2px;
  position: relative;
  padding-left: 20px;
  margin: 10px 5px;
}

.project-list ul li:before{
  content: '';
  display: inline-block;
  opacity: .5;
  width: 8px;
  height: 1px;
  background: #000;
  position: absolute;
  left: 7px;
  top: 10px;
}

.project-list ul li a{
  font-size: 18px;
  letter-spacing: 2px;
  opacity: .5;
}

.project-list ul li a.current{
  opacity: 1;
}

.project-list ul li a:hover{
  opacity: 1;
  transition: .3s ease;
}

.project-list ul li:hover:before{
  opacity: 1;
  transition: .3s ease;
}

.project-in-img img{
  width: 100%;
}


.project-in-wrap .swiper-button-next,
.project-in-wrap .swiper-button-prev {
  color: #000;
  outline: 0;
}

.swiper-button-next{
    left: 45px;
}

.project-in-wrap .swiper-button-next:after,
.project-in-wrap .swiper-button-prev:after {
    font-size: 10px;
    color: #a5a5a5;
}

.project-in-wrap .swiper-arrow-position{
  position: relative;
}

.project-in-wrap .swiper-button-next,.project-in-wrap .swiper-button-prev {
    position: absolute;
    bottom: 0;
    top: 35px;
    left: auto;
    border: 1px solid #c3c3c3;
    width: 30px;
    height: 30px;
}

.swiper-button-prev{
    right: 40px;
}

.swiper-button-next{
    right: 0px;
}

.project-in-wrap .col-md-4{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 768px) {

  .project-list ul li{
    margin: 25px;
  }

  .project-in-wrap .swiper-button-next,.project-in-wrap .swiper-button-prev {
    position: absolute;
    top: 50%;
    border: 1px solid #c3c3c3;
    width: 41px;
    height: 41px;
    margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #fff;
  }

  .project-in-wrap .swiper-arrow-position {
      position: absolute;
      right: 15px;
      bottom: 19px;
  }
  
}

.gallery-top {
  width: 100%;
}

.gallery-thumbs {
  display: none;
  height: 25%;
  box-sizing: border-box;
}

.gallery-thumbs .swiper-slide {
  height: 100%;
  opacity: 0.5;
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}




.project_info{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 65px;
  word-break: break-all;
}

.project_info .section_title h3{
    font-size: 2rem;
    font-weight: 400;
    color: #222222;
    font-family: 'YesevaOne','NotoSerifTC-Regular',serif;;
    margin-bottom: -0px;
}

.project_info .section_title p {
    color: #575757;
    line-height: 1.5;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 20px;
}

@media (min-width: 768px) {
  .gallery-thumbs{
    display: block;
  }

  .project_info{
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .project_info .section_title h3{
    font-size: 3rem;
  }

  .project_info .section_title p {
    font-size: 1.05rem;
  }  
}

.project_info .section_title h4 {
  font-size: 22px;
  margin-top: 10px;
}

.section_info {
  display: flex;
}

.project_img{
  width: 220px;
}

.project_img img{
  width: 100%;
}

.project-in-wrap .btn-wrap{
  margin-top: 3em;
}

.project-etc{
  position: relative;
  margin-top: 8em;
  border-top: 1px solid #aaa5;
}

.project-etc-txt{
  position: absolute;
  top: -50px;
  left: 0;
  padding: 15px;
  font-size: 18px;
  letter-spacing: 2px;
  display: inline-block;
  border-bottom: 2px solid #C9A063;
}

.project-content img{
  width: 100%;
}

.project-content p{
  line-height: 1.8;
  letter-spacing: 1px;
  margin: 20px 0;
}

.project-content h3{
  font-size: 22px;
  line-height: 1.3;
  color: #000;
  font-weight: bold;
  margin-top: 20px;
}

.breadcrumb{
  font-size: 14px;
  padding: 1em 0;
  background-color: #fff;
}

.breadcrumb.inside{
  padding: 0;
}

@media (min-width: 1024px) {
  .breadcrumb.inside{
    padding: 1em 0;
  }

  .project-in-wrap .btn-wrap{
    margin-top: 6em;
  }

  .project_info .section_title h4{
    margin-top: 0;
  }
}


.news-title span{
  display: block;
  color: #aaa;
  margin: 20px 0;
  font-size: 14px;
  letter-spacing: 2px;
}

.news-title h2{
  font-weight: bold;
  font-size: 25px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.news-info img{
  width: 100%;
}

.news-info p{
  line-height: 1.8;
  letter-spacing: 1px;
  margin: 20px 0;
}

.news-info h3{
  font-size: 22px;
  line-height: 1.3;
  color: #000;
  font-weight: bold;
  margin-top: 20px;
}


/*contact 聯絡我們*/
.contact-box{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info{
  padding: 30px;
  padding-left: 0;
  margin-top: 15px;
}

.contact-info a{
  display: inline-block;
  vertical-align: middle;
  width: 150px;
  height: 150px;
  margin: 0 15px;
}

.contact-info .info-text{
  display: inline-block;
  vertical-align: middle;
  color: #000;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-info .info-text span{
  color: #767676;
  font-size: 13px;
  display: block;
  letter-spacing: 1px;
  margin-top: 20px;
}

.contact-info .info-text span:first-child{
  margin-top: 0;
}

.contact-info .info-text b{
  letter-spacing: 1px;
}

.contact-item{
  margin: 15px 0;
  height: 400px;
}

.contact-title{
  margin-top: 40px;
  border-top: 1px solid #aaa5;
}

.contact-title h2{
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 40px;
}

.contact-title p{
  line-height: 1.8;
  letter-spacing: 1px;
  margin: 20px 0;
}

.form-row .robotbtn{
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.form-row .robotbtn .btn{
  height: 40px;
}

.form-row .robotbtn img{
  width: 100%;
  height: 100%;
}

.contact-form{
  justify-content: space-between;
}

.contact-form button{
  color: #fff;
  margin: 20px 0;
}

.contact-form label{
  margin-bottom: 10px;
  font-size: 16px;
  letter-spacing: 1px;
}

.contact-form .btn-purple{
  background: #000;
  margin-bottom: 0;
  transition: .5s ease;
}

.contact-form .btn-violet{
  background: #C9A063;
  transition: .5s ease;
}

.contact-form .btn:hover {
    color: #fff;
    letter-spacing: 6px;
    text-decoration: none;
    transition: .5s ease;
}

.contact-form .btn-purple:hover {
    opacity: .8;
    transition: .5s ease;
}

.contact-form .btn-violet:hover {
    opacity: .8;
    transition: .5s ease;
}

@media (min-width: 768px) {
  .form-row .robotbtn{
    justify-content: flex-start;
    align-items: flex-end;
  }

  .contact-form .btn-purple{
    margin-bottom: 20px;
  }
  .contact-info a{
    width: 120px;
    height: 120px;
  }

  .contact-title{
    border-top: 0px solid transparent;
  }

  .contact-title h2 {
    margin-top: 0px;
  }

}

@media (min-width: 1200px) {
    .contact-info a{
      width: 150px;
      height: 150px;
    }
}



/*類別*/
.m_classLink{
  display:none;
  text-align: center;
  margin-bottom: 30px;
}

.classLink{
  display: block;
}  


/*640*/
@media (max-width: 640px){

  ul.classLink{
    display:none;
  }

  .m_classLink{
    display:block;
    position:relative;
  }

  .m_classLink a.main{
    display:block;
    font-size:18px;
    text-align:center;  
    color:#b79355;
    border:1px solid #b79355;
    position:relative;
    padding:10px;
    background: #fff; /* Old browsers */

  }

  .m_classLink a.main i{
    display:block;
    font-size:15px;  
    position:absolute;
    right:10px;
    top:50%;
    margin-top:-6px;
  }

  .m_classLink ul{
    padding:0;
    list-style:none;  
    display:none;
    width:100%;
    background:#FFF;
    border:1px solid #d1d1d1;
    position:absolute;
    left:0;
    top:100%;
    z-index:999;  
    box-sizing:border-box;
  }

  .m_classLink ul li{
    padding:0;
  }

  .m_classLink ul li a{
    display:block;
    color:#000;
    padding: 15px;
    border-top:1px solid #d1d1d1;
    opacity: 1;
  }

  .m_classLink ul li:first-child a{
    border:none;
  }
  .m_classLink ul li:hover a{
    color:#fff;
    background: #b79355;
  }

  .project-list ul li a {
    font-size: 16px;
  }

  .project-list ul li{
    margin: 0;
  }

  .project-list ul li:before{
    display: block;
  }

  .project-list ul li:before{
    display: none;
  }

}

/*album*/
.modal-dialog{
  width: 100% !important;
}

.modal-header .close {
    outline: 0;
}

.project-title.projects-album{
  margin-top: 0;
  padding: 5px 8px;
  border: 1px solid #aaa5;
  border-top: 0;
}

@media (min-width: 768px) {
  .project-title.projects-album {
    padding: 10px;
  }
  
}