@charset "UTF-8";
/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * ALL
 * HEADER
 * BANNER
 * FOOTER
 * MAIN
 * ABOUT
 * NEWS
 * PRODUCT
 * BLOG
 * CONTACT
 * LINKS
 **/
/*------------------------------------*\
    ALL
\*------------------------------------*/
html,
body {
  overflow-x: hidden;
  min-height: 1000px;
}

body {
  background: url(../images/bg.jpg) center center repeat;
  color: #666666;
  font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif;
  padding-top: 80px;
}

@media (min-width: 992px) {
  body {
    padding-top: 200px;
  }
}

@media (min-width: 1440px) {
  body {
    padding-top: 325px;
  }
}

a {
  color: #666666;
  display: inline-block;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
       -o-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}

a:hover, a:focus {
  color: #9fc445;
  outline: 0;
  text-decoration: none;
}

span {
  display: inline-block;
}

img {
  max-width: 100%;
  width: auto\9;
  /* ie8 */
}

.container {
  max-width: 100%;
}

@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
    padding: 0;
  }
}

#scrollUp {
  right: 5%;
  bottom: 25%;
  z-index: 1000 !important;
}

/*------------------------------------*\
    HEADER
\*------------------------------------*/
.header {
  background: url(../images/bg-02.jpg) center center repeat;
  height: 80px;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
       -o-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}

@media (min-width: 992px) {
  .header {
    height: 200px;
    padding: 1rem 0;
  }
}

@media (min-width: 1440px) {
  .header {
    height: 325px;
    padding: 3.75rem 0;
  }
}

.navbar {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0.5rem 0;
}

@media (min-width: 992px) {
  .navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.5rem 0;
  }
}

.navbar-subnav {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 992px) {
  .navbar-subnav {
    width: 100%;
  }
}

.navbar-brand {
  padding: 0;
  margin-right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-brand p {
  color: #999999;
  font-family: "Noto Serif TC", serif;
  font-size: 0.875rem;
  margin-left: 1rem;
  margin-bottom: 0;
  display: none;
}

@media (min-width: 576px) {
  .navbar-brand p {
    display: block;
  }
}

.navbar-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-link a {
  display: block;
  color: #4f4f4f;
  font-size: 0.875rem;
  letter-spacing: 0.2rem;
}

.navbar-link a svg {
  color: #231815;
  font-size: 1.125rem;
}

.navbar-link a:last-child {
  margin-left: 1rem;
}

.navbar-link a:hover, .navbar-link a:focus, .navbar-link a.active {
  color: #9fc445;
}

.navbar-link a:hover svg, .navbar-link a:focus svg, .navbar-link a.active svg {
  color: #9fc445;
}

.navbar-link span {
  margin: 0 1rem;
}

.navbar-toggler {
  border: none;
  width: 50px;
  height: 50px;
  padding: 5px;
  margin: 0;
  position: relative;
  top: 0;
  z-index: 1050;
}

.navbar-toggler:hover, .navbar-toggler:focus {
  outline: none;
}

.navbar-toggler .icon-bar {
  display: block;
  background: #5c480c;
  text-align: center;
  width: 30px;
  height: 2px;
  position: absolute;
  right: 10px;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
       -o-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}

.navbar-toggler .icon-bar:nth-of-type(1) {
  top: 15px;
}

.navbar-toggler .icon-bar:nth-of-type(2) {
  top: 24px;
  opacity: 1;
}

.navbar-toggler .icon-bar:nth-of-type(3) {
  top: 33px;
}

.navbar-toggler.open .icon-bar {
  right: 6px;
}

.navbar-toggler.open .icon-bar:nth-of-type(1) {
  -webkit-transform-origin: 10% 10%;
      -ms-transform-origin: 10% 10%;
          transform-origin: 10% 10%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar-toggler.open .icon-bar:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.open .icon-bar:nth-of-type(3) {
  top: 32px;
  -webkit-transform-origin: 10% 90%;
      -ms-transform-origin: 10% 90%;
          transform-origin: 10% 90%;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.navbar-collapse {
  width: 100%;
}

@media (min-width: 992px) {
  .navbar-collapse {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1.5rem;
  }
}

@media (min-width: 1440px) {
  .navbar-collapse {
    margin-top: 4.75rem;
  }
}

.navbar-nav {
  background-color: #ffffff;
  padding: 1rem;
  width: 80%;
  height: calc(100%-80px);
  overflow-y: auto;
  position: fixed;
  top: 80px;
  right: -100%;
  bottom: 0;
  visibility: hidden;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
       -o-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}

.navbar-nav.open {
  right: 0;
  visibility: visible;
}

@media (min-width: 992px) {
  .navbar-nav {
    background-color: transparent;
    padding: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    height: auto;
    overflow-y: visible;
    position: relative;
    top: 0;
    right: 0;
    visibility: visible;
  }
}

.navbar-nav .nav-item {
  padding: 0 0.25rem;
}

.navbar-nav .nav-link {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
}

.navbar-nav .nav-link::before, .navbar-nav .nav-link::after {
  content: '';
  width: 1px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
}

.navbar-nav .nav-link::before {
  left: 0;
}

.navbar-nav .nav-link::after {
  right: 0;
}

.navbar-nav .nav-link span {
  display: block;
}

.navbar-nav .nav-link span.ch {
  color: #231815;
  font-family: "Noto Serif TC", serif;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.35rem;
  padding-bottom: 0.125rem;
}

.navbar-nav .nav-link span.en {
  color: #898989;
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus, .navbar-nav .nav-link.active {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.navbar-nav .nav-link:hover::before, .navbar-nav .nav-link:hover::after, .navbar-nav .nav-link:focus::before, .navbar-nav .nav-link:focus::after, .navbar-nav .nav-link.active::before, .navbar-nav .nav-link.active::after {
  background-color: rgba(0, 0, 0, 0.5);
}

.navbar-nav .nav-link:hover span.en, .navbar-nav .nav-link:focus span.en, .navbar-nav .nav-link.active span.en {
  color: #9fc445;
}

@media (min-width: 992px) {
  .navbar-nav .nav-item:first-child .nav-link::before {
    height: auto;
    bottom: 0;
  }
  .navbar-nav .nav-item:nth-child(7) .nav-link::after {
    height: auto;
    bottom: 0;
  }
  .navbar-nav .nav-link {
    width: 130px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-nav .nav-link {
    width: 160px;
  }
}

@media (min-width: 1440px) {
  .navbar-nav .nav-link {
    width: 195px;
  }
}

.header-active {
  height: 80px;
}

@media (min-width: 992px) {
  .header-active {
    height: 200px;
    padding: 1rem 0;
  }
}

@media (min-width: 1440px) {
  .header-active {
    height: 235px;
    padding: 1rem 0;
  }
  .header-active .navbar-collapse {
    margin-top: 2rem;
  }
}

/*------------------------------------*\
    BANNER
\*------------------------------------*/
.banner {
  position: relative;
}

.banner::before {
  content: '';
  width: auto;
  height: 65px;
  background: url(../images/bg-02.jpg) center top repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.banner > .container {
  position: relative;
  max-width: 150%;
  width: 150%;
  margin: 0 -25%;
  padding: 0;
  text-align: center;
}

@media (min-width: 992px) {
  .banner > .container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/
.footer {
  background-color: #2b220c;
  color: #ffffff;
  font-size: 0.8125rem;
  padding: 3rem 0;
}

.footer > .container {
  position: relative;
}

.footer > .container > .row {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer a {
  color: #ffffff;
  font-size: 0.8125rem;
}

.footer a:hover, .footer a:focus {
  color: #9fc445;
}

.footer p {
  margin-bottom: 0;
}

.footer-logo {
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 1200px) {
  .footer-logo {
    text-align: left;
    margin-bottom: 0;
  }
}

.footer-nav {
  text-align: center;
}

.footer-nav .nav {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-nav .nav li {
  margin-bottom: 0.5rem;
}

.footer-nav > a {
  margin-top: 1rem;
}

.footer-nav > a svg {
  font-size: 1.3125rem;
}

@media (min-width: 1200px) {
  .footer-nav {
    text-align: left;
    padding-left: 0;
  }
  .footer-nav .nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .footer-nav .nav li {
    margin-bottom: 0;
  }
  .footer-nav .nav li + li {
    position: relative;
    padding-left: 1rem;
    margin-left: 1rem;
  }
  .footer-nav > a {
    margin-top: 0;
    position: absolute;
    right: 15px;
    bottom: 0;
  }
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
main > .container {
  background: url(../images/main-bg.svg) right bottom no-repeat;
  padding: 5rem 15px;
}

@media (min-width: 992px) {
  main > .container {
    padding: 5rem 0;
  }
}

main.view > .container {
  padding-top: 0 !important;
}

/* MAIN */
.main {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  .main {
    padding: 3rem;
  }
}

@media (min-width: 1440px) {
  .main {
    padding: 4rem 6rem;
  }
}

/* PAGE-HEADER */
.page-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-header h1 {
  font-family: "Noto Serif TC", serif;
  color: #000000;
  font-size: 2rem;
  letter-spacing: 0.5rem;
  padding: 1rem 0;
  margin-left: -2rem;
  margin-right: -2rem;
  position: relative;
}

.page-header h1::before, .page-header h1::after {
  content: '';
  width: auto;
  height: 3px;
  border-top: 1px solid #231815;
  border-bottom: 1px solid #231815;
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
}

.page-header h1::before {
  top: 0;
}

.page-header h1::after {
  bottom: 0;
}

.page-header p {
  color: #231815;
  font-family: "Noto Serif TC", serif;
  font-size: 1.25rem;
}

@media (min-width: 576px) {
  .page-header h1 {
    font-size: 3rem;
  }
  .page-header h1::before, .page-header h1::after {
    left: 2rem;
    right: 2rem;
  }
  .page-header p {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .page-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .page-header h1 {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
        writing-mode: vertical-lr;
    margin-top: -1.5rem;
    margin-bottom: 2.5rem;
    margin-left: 0;
    margin-right: 0;
    padding: 0 1rem;
  }
  .page-header h1::before, .page-header h1::after {
    content: '';
    width: 3px;
    height: auto;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid #231815;
    border-right: 1px solid #231815;
    position: absolute;
    top: 2rem;
    bottom: 2rem;
  }
  .page-header h1::before {
    right: auto;
    left: 0;
  }
  .page-header h1::after {
    left: auto;
    right: 0;
  }
  .page-header p {
    letter-spacing: 0.2rem;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
        writing-mode: vertical-lr;
  }
}

/* BREADCRUMB */
.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 1.5rem;
}

.breadcrumb-item {
  color: #9e9e9e;
  font-size: 0.9375rem;
  letter-spacing: 0.1rem;
}

.breadcrumb-item a {
  color: #9e9e9e;
}

.breadcrumb-item a:hover, .breadcrumb-item a:focus {
  color: #9fc445;
}

.breadcrumb-item.active {
  color: #9e9e9e;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '>';
  color: #9e9e9e;
}

/* SIDEMENU */
.sidemenu {
  margin-bottom: 2rem;
}

.sidemenu .nav li {
  padding-left: 3rem;
}

.sidemenu .nav li a {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.0625rem;
  letter-spacing: 0.1rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.sidemenu .nav li a::before {
  content: '';
  width: 25px;
  height: 2px;
  background-color: transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -3rem;
}

.sidemenu .nav li a:hover, .sidemenu .nav li a:focus, .sidemenu .nav li a.active {
  color: #000000;
  font-weight: bold;
}

.sidemenu .nav li a:hover::before, .sidemenu .nav li a:focus::before, .sidemenu .nav li a.active::before {
  background-color: #9fc445;
}

@media (min-width: 992px) {
  .sidemenu {
    margin-bottom: 0;
  }
  .sidemenu .nav li {
    padding-left: 0;
  }
}

/* CONTENT */
@media (min-width: 992px) {
  .content {
    padding-left: 2.5rem;
  }
}

/* PICTURE */
.pic a {
  background-color: #9fc445;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.pic a::before {
  content: '';
  width: 90px;
  height: 90px;
  background: url(../images/more.svg) center center no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  opacity: 0;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
       -o-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}

.pic a img {
  width: 100%;
  opacity: 1;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
       -o-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}

.pic a:hover img, .pic a:focus img {
  opacity: 0.2;
}

.pic a:hover::before, .pic a:focus::before {
  opacity: 1;
}

/* PAGINATION */
.pagination {
  margin-bottom: 0;
}

.pagination .page-item {
  padding: 0 0.125rem;
}

.pagination .page-link {
  border-radius: 50%;
  border: 1px solid #9fc445;
  background-color: transparent;
  color: #9fc445;
  text-align: center;
  line-height: 35px;
  width: 35px;
  height: 35px;
  padding: 0;
}

.pagination .page-link:hover, .pagination .page-link:focus, .pagination .page-link.active {
  background-color: #9fc445;
  color: #ffffff;
}

.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
  background: url(../images/arrow.svg) center center no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  border: none;
  border-radius: 0;
}

.pagination .page-item:first-child .page-link:hover, .pagination .page-item:first-child .page-link:focus, .pagination .page-item:last-child .page-link:hover, .pagination .page-item:last-child .page-link:focus {
  background: url(../images/arrow-green.svg) center center no-repeat;
}

.pagination .page-item:last-child .page-link {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 576px) {
  .pagination .page-item {
    padding: 0 0.5rem;
  }
  .pagination .page-item:first-child {
    padding-right: 2rem;
  }
  .pagination .page-item:last-child {
    padding-left: 2rem;
  }
}

/* FROM */
.form .form-group {
  margin-bottom: 1.5rem;
}

.form .form-control {
  border-radius: 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  height: 45px;
  padding-left: 0;
  padding-right: 0;
}

.form .form-control:hover, .form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid #9fc445;
}

.form textarea.form-control {
  height: auto;
}

/* BUTTON */
.btn-wrap {
  text-align: center;
  margin-top: 2rem;
}

.btn-primary {
  border: none;
  border-radius: 0;
  background-color: #5c480c;
  color: #ffffff;
  font-family: "Noto Serif TC", serif;
  width: 100%;
  height: 45px;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #9fc445;
}

.btn-back {
  color: #5c480c;
  font-family: "Noto Serif TC", serif;
  font-size: 1.3125rem;
  letter-spacing: 0.2rem;
}

.btn-back:hover, .btn-back:focus {
  color: #9fc445;
}

.btn-product {
  background-color: #5c480c;
  color: #ffffff;
  font-size: 1.0625rem;
  letter-spacing: 0.25rem;
  width: 220px;
  height: 60px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-product span {
  background: url(../images/arrow-white.svg);
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

.btn-product:hover, .btn-product:focus {
  background-color: #9fc445;
  color: #ffffff;
}

@media (min-width: 1440px) {
  .btn-product {
    width: 60px;
    height: 220px;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
        writing-mode: vertical-lr;
  }
  .btn-product span {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

/*------------------------------------*\
    ABOUT
\*------------------------------------*/
.about {
  background-position: center bottom;
}

.about > .container {
  padding-bottom: 250px;
}

.about .main {
  background-color: transparent;
}

.about-content h3 {
  color: #5c480c;
  font-family: "Noto Serif TC", serif;
  font-size: 1.6875rem;
  line-height: 2.5rem;
  letter-spacing: 0.25rem;
  margin-bottom: 1rem;
}

.about-content p {
  line-height: 1.8rem;
}

/*------------------------------------*\
    NEWS
\*------------------------------------*/
.news-list-item {
  border-bottom: 1px dashed #808080;
  font-size: 1.0625rem;
  position: relative;
  margin-bottom: 2rem;
}

.news-list-item:last-child {
  margin-bottom: 2.5rem;
}

.news-list-date {
  color: #5c480c;
  font-family: "Noto Serif TC", serif;
  padding-bottom: 0.5rem;
  position: relative;
  bottom: -1px;
  z-index: 2;
}

@media (min-width: 992px) {
  .news-list-date {
    border-bottom: 1px solid #808080;
    text-align: center;
    padding-bottom: 0;
  }
}

.news-list-txt {
  color: #4f4f4f;
  font-size: 1.0625rem;
  letter-spacing: 0.05rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .news-list-txt {
    padding-bottom: 1rem;
  }
}

@media (min-width: 1200px) {
  .news-list-txt {
    padding-left: 3rem;
  }
}

.news-list-more {
  color: #5c480c;
  font-size: 0.8125rem;
  letter-spacing: 0.1rem;
  padding-bottom: 1rem;
}

@media (min-width: 992px) {
  .news-list-more {
    padding-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .news-list-more {
    text-align: center;
  }
}

.news-view-tit {
  border-bottom: 1px dashed #808080;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.news-view-tit::before {
  content: '';
  width: 105px;
  height: 1px;
  background-color: #808080;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 2;
}

.news-view-tit h2 {
  color: #000000;
  font-size: 1.5rem;
  letter-spacing: 0.125rem;
  margin-bottom: 1rem;
}

.news-view-tit span {
  color: #5c480c;
  font-family: "Noto Serif TC", serif;
  font-size: 1.0625rem;
}

.news-view-content {
  border-bottom: 4px double #808080;
}

.news-view-content p {
  letter-spacing: 0.125rem;
  line-height: 1.8rem;
  margin-bottom: 2rem;
}

/*------------------------------------*\
    PRODUCT
\*------------------------------------*/
@media (min-width: 992px) {
  .product > .container {
    padding: 7rem 0;
  }
}

.product .main {
  position: relative;
}

.product .main .btn-wrap {
  text-align: center;
}

@media (min-width: 992px) {
  .product .main .btn-wrap {
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
  }
}

@media (min-width: 1600px) {
  .product .main .btn-wrap {
    right: -60px;
  }
}

.product-map-pic {
  text-align: center;
  position: relative;
}

.product-map-pic-tit {
  position: absolute;
  top: -3.5%;
  left: 15%;
}

.product-map-pic a {
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
       -o-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}

.product-map-pic a:hover [fill="#5F4800"],
.product-map-pic a:focus [fill="#5F4800"] {
  fill: #9fc445;
}

.product-map-pic svg {
  position: relative;
  z-index: 2;
}

@media (min-width: 1200px) {
  .product-map-pic-tit {
    left: 28%;
  }
}

.product-map-select {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 3rem;
}

.product-map-select .form {
  width: 80%;
  margin-left: 1rem;
}

.product-txt {
  margin-bottom: 3rem;
}

.product-txt h2 {
  color: #5c480c;
  font-family: "Noto Serif TC", serif;
  font-size: 1.6875rem;
  letter-spacing: 0.25rem;
  margin-bottom: 1rem;
}

.product-txt p {
  letter-spacing: 0.1rem;
  line-height: 1.8rem;
  margin-bottom: 1.5rem;
}

.product-list h2 {
  border-bottom: 1px dashed #808080;
  color: #5c480c;
  font-family: "Noto Serif TC", serif;
  font-size: 1.25rem;
  letter-spacing: 0.125rem;
  padding-bottom: 0;
  margin-bottom: 3.5rem;
}

.product-list h2 span {
  border-bottom: 2px solid #808080;
  padding-bottom: 1.25rem;
  position: relative;
  bottom: -2px;
  z-index: 2;
}

.product-list h2 b {
  font-size: 1.125rem;
  margin-left: 1rem;
}

.product-list-item {
  margin-bottom: 3rem;
}

.product-list-pic {
  margin-bottom: 0.5rem;
}

.product-list-txt h3 {
  color: #5c480c;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  margin-bottom: 0.75rem;
  height: 20px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.product-list-txt p {
  font-size: 0.875rem;
  margin-bottom: 0;
  height: 65px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.product-list-txt span {
  font-size: 0.8125rem;
  letter-spacing: 0.05rem;
  margin-bottom: 0.3rem;
  height: 20px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.product-links-item {
  border-bottom: 1px dashed #808080;
  margin-bottom: 2rem;
}

.product-links-tit {
  border-bottom: 1px solid #808080;
  color: #5c480c;
  font-family: "Noto Serif TC", serif;
  font-size: 1.1875rem;
  letter-spacing: 0.25rem;
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  position: relative;
  bottom: -1px;
}

.product-links-tit::after {
  content: '';
  width: 1px;
  height: 20px;
  background-color: #808080;
  position: absolute;
  top: 5px;
  right: 0;
  display: none;
}

@media (min-width: 992px) {
  .product-links-tit {
    margin-bottom: 0;
  }
  .product-links-tit::after {
    display: block;
  }
}

.product-links-txt {
  padding-left: 2rem;
}

.product-links-txt a {
  border: 1px solid #8e8e8e;
  background-color: #ffffff;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  margin: 0 0.125rem;
}

.product-links-txt a.fb {
  background-image: url(../images/icon-fb.svg);
}

.product-links-txt a.line {
  background-image: url(../images/icon-line.svg);
}

.product-links-txt a.home {
  background-image: url(../images/icon-home.svg);
}

.product-links-txt a:hover, .product-links-txt a:focus {
  border: 1px solid #9fc445;
  background-color: #9fc445;
}

.product-links-txt a:hover.fb, .product-links-txt a:focus.fb {
  background-image: url(../images/icon-fb-white.svg);
}

.product-links-txt a:hover.line, .product-links-txt a:focus.line {
  background-image: url(../images/icon-line-white.svg);
}

.product-links-txt a:hover.home, .product-links-txt a:focus.home {
  background-image: url(../images/icon-home-white.svg);
}

.product-links-txt p {
  letter-spacing: 0.075rem;
  text-align: center;
}

@media (min-width: 992px) {
  .product-links-txt p {
    text-align: left;
  }
}

.product-links-icon {
  white-space: nowrap;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .product-links-icon {
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .product-links-phone {
    padding-left: 0;
  }
}

/*------------------------------------*\
    BLOG
\*------------------------------------*/
.blog .main {
  background-color: transparent;
}

.blog .btn-back{
  letter-spacing: normal;
}

@media (min-width: 576px) {
  .blog .btn-back{
    letter-spacing: 0.2rem;
  }
}

.blog-list-item {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .blog-list-item {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.blog-list-pic {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 992px) {
  .blog-list-pic {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.blog-list-txt {
  padding-left: 0;
  padding-right: 0;
}

.blog-list-txt span {
  color: #99b5c4;
  font-family: "Noto Serif TC", serif;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.blog-list-txt h3 {
  color: #000000;
  font-family: "Noto Serif TC", serif;
  font-size: 1.125rem;
  line-height: 1.8rem;
  letter-spacing: 0.05rem;
  margin-bottom: 1rem;
  height: 55px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-list-txt p {
  color: #4f4f4f;
  font-size: 0.8125rem;
  letter-spacing: 0.1rem;
  height: 40px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-list-txt a {
  color: #5c480c;
  font-size: 0.8125rem;
  letter-spacing: 0.1rem;
}

.blog-list-txt a:hover, .blog-list-txt a:focus {
  color: #9fc445;
}

@media (min-width: 992px) {
  .blog-list-txt {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.blog-view-tit {
  border-top: 1px solid #000000;
  border-bottom: 2px solid #000000;
  padding: 1.5rem 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3.5rem;
}

.blog-view-tit .title h2 {
  color: #000000;
  font-family: "Noto Serif TC", serif;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  line-height: 2rem;
  text-align: center;
}

.blog-view-tit .subtitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.5rem;
}

.blog-view-tit .subtitle p {
  color: #000000;
  font-family: "Noto Serif TC", serif;
  font-size: 1.0625rem;
  margin-bottom: 0;
}

.blog-view-tit .subtitle span {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  font-size: 0.875rem;
  letter-spacing: 0.1rem;
  padding: 0 0.25rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .blog-view-tit {
    padding: 1.5rem;
  }
  .blog-view-tit .title h2 {
    text-align: left;
  }
  .blog-view-tit .subtitle {
    border-left: 1px dashed #828282;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 0;
  }
}

.blog-view-content {
  border-bottom: 3px double #000000;
  padding-bottom: 3rem;
}

.blog-view-content p {
  line-height: 1.8rem;
  margin-bottom: 2rem;
}

.blog-view .btn-wrap {
  position: relative;
}

.blog-view-page a {
  color: #5c480c;
  font-size: 1.125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-view-page a span {
  background-color: #5c480c;
  width: 40px;
  height: 1px;
  display: none;
}

.blog-view-page a:hover, .blog-view-page a:focus {
  color: #9fc445;
}

.blog-view-page a:hover span, .blog-view-page a:focus span {
  background-color: #9fc445;
}

.blog-view-page a.prev {
  left: 0;
}

.blog-view-page a.prev span {
  margin-right: 1rem;
}

.blog-view-page a.next {
  right: 0;
}

.blog-view-page a.next span {
  margin-left: 1rem;
}

@media (min-width: 576px) {
  .blog-view-page a span {
    display: inline-block;
  }
}

/*------------------------------------*\
    CONTACT
\*------------------------------------*/
.contact {
  background-size: cover;
}

.contact > .container {
  max-width: 100%;
  padding: 5rem 15px;
}

@media (min-width: 992px) {
  .contact > .container {
    padding: 8rem 0;
  }
}

@media (min-width: 1200px) {
  .contact > .container {
    max-width: 1170px;
  }
}

.contact .main {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  .contact .main {
    padding: 3rem;
  }
}

@media (min-width: 1440px) {
  .contact .main {
    padding: 8rem 9rem;
  }
}

.contact-info .nav li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.0625rem;
  padding-left: 0;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-info .nav li:last-child {
  border-bottom: none;
}

.contact-info .nav li span {
  position: relative;
  padding-right: 0.5rem;
  margin-right: 1rem;
}

.contact-info .nav li span::before {
  content: '';
  width: 1px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

.contact-info .nav li a {
  border-bottom: none;
  font-size: 1.0625rem;
  letter-spacing: normal;
  display: inline-block;
  padding-bottom: 0;
  margin-bottom: 0;
}

.contact-info .nav li a::before {
  display: none;
}

.contact-form h2 {
  color: #5c480c;
  font-family: "Noto Serif TC", serif;
  font-size: 1.4375rem;
  margin-bottom: 2rem;
}

@media (min-width: 1200px) {
  .contact-form {
    padding-left: 3.5rem;
  }
}

/*------------------------------------*\
    LINKS
\*------------------------------------*/
.links .main {
  background-color: transparent;
}

.links-list-item {
  margin-bottom: 2.5rem;
}

.links-list-pic img {
  border: 1px solid #5c480c;
}

.links-list-txt {
  margin-top: 1rem;
}

.links-list-txt h3 {
  color: #5c480c;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
