* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-size: 16px;
  line-height: 1.5; }

a {
  color: inherit;
  text-decoration: none; }

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  margin: 0; }

ul {
  list-style: none; }

img,
svg {
  max-width: 100%;
  height: auto; }

/* color */
/* font */
/* transition */
@font-face {
  font-family: "athelas";
  src: url("../assets/athelas-regular-webfont.woff") format("woff"), url("../assets/athelas-regular-webfont.woff2") format("woff2"), url("../assets/athelas-regular-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@keyframes slowShowUp {
  0% {
    opacity: 0;
    transform: translateY(-50px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes slowShowLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

body {
  font-family: "Arial", Noto Serif TC, sans-serif;
  font-size: 16px; }
  body a {
    color: #000;
    transition: all 0.5s ease-in-out; }
    @media (min-width: 1281px) {
      body a:hover {
        color: #5c5248; } }
  body.scroll-disabled, body.isLoading {
    overflow: hidden; }

.loading {
  align-items: center;
  background-color: #5c5248;
  display: flex;
  height: 100%;
  justify-content: center;
  opacity: 1;
  position: fixed;
  pointer-events: initial;
  top: 0;
  transition: all 0.5s ease-in-out;
  left: 0;
  width: 100%;
  z-index: 9999; }
  .loading.show {
    opacity: 1;
    pointer-events: none; }
    .loading.show .loading-logo {
      animation: slowShowUp 1s ease-in-out forwards; }
  .loading-logo {
    margin: auto;
    max-width: 300px;
    opacity: 0;
    transition: all 0.5s ease-in-out; }
    .loading-logo img {
      width: 100%; }

.outWrap {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transition-delay: 0.5s; }
  .outWrap.show {
    opacity: 1; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px; }
  @media (max-width: 1024px) {
    .wrap {
      max-width: 95vw;
      padding: 0 20px; } }

header {
  background-color: #554a3f;
  padding: 20px 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99; }
  @media (max-width: 1024px) {
    header {
      display: none; } }
  header .logo {
    align-items: center;
    display: flex;
    margin: 0 30px; }
    header .logo img {
      width: 120px;
      max-width: 100%; }
  header nav {
    align-items: center;
    display: flex;
    justify-content: center; }
    header nav ul.main {
      align-items: center;
      display: flex; }
      header nav ul.main > li {
        margin: 0 30px;
        position: relative; }
        header nav ul.main > li > a {
          display: flex;
          flex-direction: column;
          color: #ecd8c4;
          position: relative; }
          header nav ul.main > li > a.current {
            color: #5c5248; }
            header nav ul.main > li > a.current::after {
              opacity: 1; }
          header nav ul.main > li > a:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 3px;
            background-image: linear-gradient(to right, #e9c79a 20%, #ffead4 50%, #e7bd88 100%);
            left: 0;
            bottom: -10px;
            transition: all 0.5s ease-in-out;
            transform: scaleX(0); }
          header nav ul.main > li > a:after {
            content: "";
            position: absolute;
            width: 30px;
            height: 30px;
            background-image: url("../assets/images/headerCurrent.svg");
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            left: -35px;
            top: 0;
            opacity: 0;
            transition: all 0.5s ease-in-out; }
          @media (min-width: 1281px) {
            header nav ul.main > li > a:hover {
              color: #5c5248; }
              header nav ul.main > li > a:hover::before {
                transform: scaleX(1); }
              header nav ul.main > li > a:hover::after {
                opacity: 1; } }
          header nav ul.main > li > a .title {
            color: #ecd8c4;
            font-size: 16px;
            font-weight: 500;
            word-break: keep-all;
            letter-spacing: 1.5px; }
          header nav ul.main > li > a .subtitle {
            color: rgba(236, 216, 196, 0.5);
            font-family: "Arial", Noto Serif TC, sans-serif;
            font-size: 12.5px;
            height: 40px;
            letter-spacing: 0.75px; }
        header nav ul.main > li .submenu {
          opacity: 0;
          pointer-events: none;
          position: absolute;
          display: flex;
          flex-direction: column;
          width: 150px;
          top: 100%;
          left: 0%;
          transform: translateX(-25%);
          background-color: rgba(92, 82, 72, 0.9);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          overflow: hidden;
          padding: 12px 10px;
          transition: all 0.5s ease-in-out; }
          header nav ul.main > li .submenu.open {
            opacity: 1;
            pointer-events: auto; }
          header nav ul.main > li .submenu li {
            text-align: center;
            padding: 5px 10px;
            position: relative; }
            @media (min-width: 1281px) {
              header nav ul.main > li .submenu li:hover a {
                color: #baab9d; } }
            header nav ul.main > li .submenu li a {
              color: #ecd8c4;
              font-size: 14px;
              transition: all 0.5s ease-in-out;
              letter-spacing: 1.68px; }
  header .cart {
    position: relative; }
    header .cartCnt {
      align-items: center;
      display: flex;
      justify-content: center;
      color: #fff;
      background-color: #5c5248;
      font-size: 14px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      position: absolute;
      right: -5px;
      bottom: 10px; }
    header .cartDropdown {
      background-color: rgba(203, 203, 203, 0.85);
      position: absolute;
      width: 250px;
      top: 100%;
      left: 0%;
      transform: translateX(-50%);
      opacity: 0;
      pointer-events: none;
      transition: all 0.5s ease-in-out; }
      header .cartDropdown.open {
        opacity: 1;
        pointer-events: auto; }
      header .cartDropdownBox {
        padding: 25px; }
      header .cartDropdown .cartItem {
        align-items: center;
        display: flex; }
        header .cartDropdown .cartItem .imgBox {
          height: 80px;
          width: 80px; }
          header .cartDropdown .cartItem .imgBox img {
            height: 100%;
            width: 100%;
            object-fit: contain; }
        header .cartDropdown .cartItem .title {
          font-size: 16px; }
    header .cartBtn {
      margin-top: 10px;
      text-align: center; }
  header .language {
    display: flex;
    position: absolute;
    right: 10%;
    top: 10px;
    border-radius: 5px;
    background-color: #ecd8c4;
    padding: 2px 10px; }
    @media (max-width: 1680px) {
      header .language {
        right: 5%; } }
    @media (max-width: 1440px) {
      header .language {
        right: 2%; } }
    header .language a {
      color: #fff;
      margin: 0 10px;
      transition: all 0.5s ease-in-out; }
      @media (max-width: 1440px) {
        header .language a {
          font-size: 12px;
          margin: 0 5px; } }
      @media (min-width: 1281px) {
        header .language a:hover {
          color: #5c5248; } }
    header .language .divider {
      color: #fff; }

.mobileHeader {
  background-color: #5c5248;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50; }
  @media (min-width: 1025px) {
    .mobileHeader {
      display: none; } }
  .mobileHeader .logo {
    align-items: center;
    display: flex;
    max-width: 80px; }
    .mobileHeader .logo img {
      width: 100%;
      height: 100%;
      object-fit: contain; }

.mobileMenuTrigger {
  height: 30px;
  width: 30px;
  position: relative; }
  .mobileMenuTrigger.open span {
    background-color: transparent; }
    .mobileMenuTrigger.open span:before {
      content: "";
      position: absolute;
      top: 0;
      transform: rotate(45deg); }
    .mobileMenuTrigger.open span:after {
      content: "";
      position: absolute;
      bottom: 0;
      transform: rotate(-45deg); }
  .mobileMenuTrigger span {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateX(-50%);
    margin-top: -0.5px;
    width: 26px;
    height: 2px;
    background-color: #baab9d;
    transition: all 0.5s; }
    .mobileMenuTrigger span:after {
      content: "";
      position: absolute;
      background: #baab9d;
      left: 0;
      width: 100%;
      height: 2px;
      transition: all 0.5s;
      bottom: -7px; }
    .mobileMenuTrigger span:before {
      content: "";
      position: absolute;
      top: -7px;
      background: #baab9d;
      left: 0;
      width: 100%;
      height: 2px;
      transition: all 0.5s; }

.mobileMenuBox {
  background-color: #baab9d;
  display: none;
  padding: 10px 0;
  position: absolute;
  top: 110px;
  left: 0;
  width: 100%;
  z-index: 50; }

.mobileMenuList li {
  color: #ecd8c4;
  font-size: 18px;
  padding: 12px 0;
  position: relative;
  letter-spacing: 1.08px; }
  .mobileMenuList li a {
    display: block; }
  .mobileMenuList li.hasSubmenu > a {
    display: block;
    position: relative;
    width: 100%; }
    .mobileMenuList li.hasSubmenu > a:after {
      content: "";
      position: absolute;
      color: #ecd8c4;
      content: "+";
      align-items: center;
      display: flex;
      justify-content: center;
      font-size: 20px;
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      height: 20px;
      width: 20px;
      object-fit: contain; }
  .mobileMenuList li.hasSubmenu.open > a:after {
    content: "";
    position: absolute;
    content: "-"; }

.mobileMenuList .submenu {
  display: none;
  padding: 10px 0; }
  .mobileMenuList .submenu li {
    font-size: 14px;
    padding: 5px 10px; }

.mobileMenuMask {
  background-color: rgba(0, 0, 0, 0.65);
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 49;
  transition: all 0.5s ease-in-out; }
  .mobileMenuMask.show {
    opacity: 1;
    pointer-events: auto; }

.mobileMenuFnc {
  display: flex;
  justify-content: center;
  margin-top: 20px; }
  .mobileMenuFnc li {
    margin: 0 10px;
    position: relative; }
    .mobileMenuFnc li .cartCnt {
      align-items: center;
      display: flex;
      justify-content: center;
      color: #fff;
      background-color: #5c5248;
      font-size: 14px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      position: absolute;
      right: -10px;
      bottom: 0; }

.mobileContent {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative; }

.mobileLanguage {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 30px 0; }
  .mobileLanguage a {
    margin: 0 10px;
    color: #5c5248; }

.sideBtns {
  position: fixed;
  right: 5%;
  bottom: 5%;
  z-index: 99; }
  @media (max-width: 1440px) {
    .sideBtns {
      right: 6%;
      bottom: 10%; } }
  @media (max-width: 1366px) {
    .sideBtns {
      right: 3%; } }
  @media (max-width: 640px) {
    .sideBtns {
      right: 20px;
      bottom: 100px; } }
  .sideBtns .socialList {
    display: none; }
    .sideBtns .socialList li {
      border: 3px solid #ecd8c4;
      background-color: transparent; }
  .sideBtns li {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 28px;
    transition: all 0.5s ease-in-out;
    margin: 10px 0; }
    .sideBtns li a {
      color: currentColor;
      align-items: center;
      display: flex;
      justify-content: center; }
    .sideBtns li img {
      width: 80px;
      height: 80px;
      object-fit: contain; }
    .sideBtns li.toTop {
      opacity: 0;
      pointer-events: none; }
    .sideBtns li.show {
      opacity: 1;
      pointer-events: auto; }

footer {
  color: #957654;
  background-image: url("../assets/images/footerBg.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative; }
  footer .toTop {
    position: absolute;
    right: 5%;
    bottom: 25%; }
    @media (max-width: 640px) {
      footer .toTop {
        display: none; } }
  footer .top {
    padding: 50px 0; }
    @media (max-width: 768px) {
      footer .top {
        padding: 25px 0; } }
  footer .wrap {
    align-items: center;
    display: flex;
    justify-content: space-between; }
    @media (max-width: 768px) {
      footer .wrap {
        flex-direction: column; } }
    footer .wrap .leftBox {
      width: 150px; }
      @media (max-width: 640px) {
        footer .wrap .leftBox {
          width: auto;
          margin-left: auto;
          margin-right: auto; } }
    footer .wrap .centerBox {
      padding-left: 80px; }
      @media (max-width: 640px) {
        footer .wrap .centerBox {
          padding-left: 0; } }
    footer .wrap .rightBox {
      display: flex; }
      @media (max-width: 640px) {
        footer .wrap .rightBox {
          flex-direction: column; } }
  footer .logo {
    width: 120px; }
    @media (max-width: 768px) {
      footer .logo {
        margin-bottom: 30px; } }
    @media (max-width: 640px) {
      footer .logo {
        margin-right: auto;
        margin-left: auto; } }
  footer .footerList {
    display: flex; }
    footer .footerList li {
      margin: 10px 5px; }
      @media (max-width: 640px) {
        footer .footerList li {
          margin: 10px 15px; } }
      @media (min-width: 1281px) {
        footer .footerList li:hover img {
          transform: scale(1.1); } }
    footer .footerList img {
      width: 30px;
      height: 30px;
      object-fit: contain;
      transition: all 0.5s ease-in-out; }
      @media (max-width: 640px) {
        footer .footerList img {
          min-width: 40px;
          width: 40px;
          height: 40px; } }
    @media (min-width: 641px) {
      footer .footerList .toTopMobile {
        display: none; } }
  footer .sitemap {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 30px; }
    @media (max-width: 640px) {
      footer .sitemap {
        margin-top: 20px;
        row-gap: 10px; } }
    footer .sitemap li {
      color: currentColor;
      font-size: 16px;
      font-weight: 500;
      text-align: left;
      flex: 1;
      letter-spacing: 1.6px; }
      footer .sitemap li a {
        color: currentColor; }
        @media (min-width: 1281px) {
          footer .sitemap li a:hover {
            color: #baab9d; } }
      @media (max-width: 640px) {
        footer .sitemap li {
          font-size: 14px;
          letter-spacing: 0.84px; } }
  footer .contacts {
    display: flex;
    flex-wrap: wrap; }
    @media (max-width: 768px) {
      footer .contacts {
        text-align: left; } }
    @media (max-width: 640px) {
      footer .contacts {
        row-gap: 0; } }
    footer .contacts li {
      color: currentColor;
      font-size: 16px;
      margin-bottom: 20px;
      font-family: "athelas", Arial, Noto Serif TC, sans-serif;
      font-weight: 500;
      letter-spacing: 1.6px; }
      footer .contacts li:nth-child(1), footer .contacts li:nth-child(2) {
        width: 100%; }
      footer .contacts li:nth-child(3), footer .contacts li:nth-child(4) {
        width: 50%; }
      @media (min-width: 1281px) {
        footer .contacts li:hover a {
          color: #baab9d; } }
      footer .contacts li a {
        color: currentColor; }
      @media (max-width: 640px) {
        footer .contacts li {
          font-size: 14px;
          letter-spacing: 0.84px; } }
      footer .contacts li img {
        height: 12px;
        width: 16px;
        object-fit: contain;
        margin-right: 10px; }
  footer .copyright {
    background-color: #ecd8c4;
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
    text-align: center;
    letter-spacing: 1.4px; }

.titleBox {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 50px;
  width: fit-content; }
  @media (max-width: 1024px) {
    .titleBox {
      padding-left: 70px; } }
  @media (max-width: 640px) {
    .titleBox {
      padding-left: 0; } }
  .titleBox.noPadding {
    padding: 0; }
  .titleBox.noPic .subtitle {
    font-weight: 500;
    padding-bottom: 5px; }
    .titleBox.noPic .subtitle:before {
      content: "";
      position: absolute;
      width: 120%;
      height: 1px;
      background-color: #ecd8c4;
      bottom: 0;
      left: -20%; }
  .titleBox.noPic:before {
    content: "";
    position: absolute;
    display: none; }
  .titleBox:before {
    content: "";
    position: absolute;
    content: url("../assets/images/decoTitle.png");
    top: 2.5px;
    left: -70px;
    z-index: -1; }
    @media (max-width: 1024px) {
      .titleBox:before {
        left: 0; } }
    @media (max-width: 640px) {
      .titleBox:before {
        left: -180px;
        opacity: 0.7; } }
  .titleBox.small .title {
    font-size: 40px;
    letter-spacing: 2px; }
  .titleBox .title {
    color: #ecd8c4;
    font-family: "Arial", Noto Serif TC, sans-serif;
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 3.68px; }
    .titleBox .title::first-letter {
      color: #5c5248; }
    @media (max-width: 768px) {
      .titleBox .title {
        font-size: 48px; } }
  .titleBox .subtitle {
    color: #ecd8c4;
    font-size: 24px;
    font-family: "Noto Serif TC", sans-serif;
    margin-top: 12px;
    position: relative;
    letter-spacing: 2.16px; }
    @media (max-width: 768px) {
      .titleBox .subtitle {
        font-size: 16px; } }
  .titleBox .deco {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    padding-left: 100px;
    font-weight: 700;
    font-size: 14px;
    font-family: "Arial", Noto Serif TC, sans-serif;
    width: 100%;
    letter-spacing: 1.4px; }
    @media (max-width: 640px) {
      .titleBox .deco {
        transform: none;
        margin-top: 40px;
        position: relative;
        top: auto;
        left: auto; } }
    .titleBox .deco:before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      width: 80px;
      height: 1px;
      background-color: #ecd8c4; }
    .titleBox .deco:has(p) {
      top: 80%;
      width: 150%; }
      @media (max-width: 1024px) {
        .titleBox .deco:has(p) {
          width: 100%; } }
      .titleBox .deco:has(p):before {
        content: "";
        position: absolute;
        top: 10px;
        transform: translateY(0); }
    .titleBox .deco p {
      font-size: 11px;
      color: #ecd8c4; }
      @media (max-width: 640px) {
        .titleBox .deco p {
          margin-left: -100px; } }

.bread {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: absolute;
  right: 0; }
  @media (max-width: 1024px) {
    .bread {
      right: 20px; } }
  @media (max-width: 640px) {
    .bread {
      position: relative;
      padding-right: 10px;
      right: 0;
      align-self: flex-end; } }
  .bread li,
  .bread a {
    font-size: 14px;
    color: #5c5248;
    font-weight: 700;
    letter-spacing: 1.4px; }
  .bread .divider {
    margin: 0 5px; }
  .breadBox {
    position: absolute;
    justify-content: space-between;
    align-items: center;
    display: flex;
    left: 50%;
    top: calc(50% + 40px);
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1100px; }
    @media (max-width: 640px) {
      .breadBox {
        flex-direction: column;
        top: calc(50% + 20px); } }
    .breadBox .pageTitle {
      color: #5c5248;
      font-family: "athelas", Arial, Noto Serif TC, sans-serif;
      font-size: 50px;
      line-height: 1;
      flex: 1;
      text-align: center;
      letter-spacing: 4px; }
      @media (max-width: 640px) {
        .breadBox .pageTitle {
          font-size: 32px;
          letter-spacing: 2.56px; } }

.insBanner {
  position: relative;
  font-size: 0;
  height: 350px; }
  @media (max-width: 640px) {
    .insBanner {
      height: 300px; } }
  .insBanner img {
    object-fit: cover;
    max-width: 100%;
    height: 100%; }

.insTitle {
  font-weight: 700;
  color: #ecd8c4;
  font-size: 24px;
  letter-spacing: 3px; }
  @media (max-width: 640px) {
    .insTitle {
      font-size: 20px;
      letter-spacing: 1px; } }
  .insTitleBox {
    display: flex;
    flex-direction: column;
    padding: 50px 30px;
    color: #ecd8c4;
    width: fit-content;
    position: relative; }
    .insTitleBox:after {
      content: "";
      position: absolute;
      width: calc(100% + 130px);
      height: 100%;
      left: -70%;
      top: 0;
      z-index: -1;
      background-size: cover;
      background-image: url("../assets/images/pageTitleBg.png");
      background-repeat: no-repeat; }
    .insTitleBox .en {
      font-size: 30px;
      font-family: "athelas", Arial, Noto Serif TC, sans-serif;
      letter-spacing: 1.8px; }
    .insTitleBox .tw {
      font-size: 18px;
      font-weight: 500;
      letter-spacing: 2.16px; }
    .insTitleBox + .sideMenu {
      margin-top: 40px; }

.insBox {
  position: relative;
  overflow: hidden; }
  @media (max-width: 640px) {
    .insBox {
      padding-bottom: 150px; } }
  .insBox:after {
    content: "";
    position: absolute;
    content: url("../assets/images/footerLine.png");
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none; }

.insContent {
  display: grid;
  grid-template-columns: 25% 75%;
  padding-top: 60px;
  padding-bottom: 250px;
  position: relative; }
  @media (max-width: 1180px) {
    .insContent {
      grid-template-columns: 100%; } }
  @media (max-width: 640px) {
    .insContent {
      padding-top: 20px;
      padding-bottom: 80px; } }
  .insContent.noSide {
    grid-template-columns: 100%; }

.funBox {
  align-items: center;
  display: flex;
  margin-top: 30px; }
  .funBox > div {
    margin-right: 20px; }

.viewBox {
  align-items: center;
  display: flex;
  color: #5c5248;
  font-size: 16px; }
  .viewBox i {
    margin-right: 10px; }

.attachmentBox {
  align-items: center;
  display: flex; }
  .attachmentBox i {
    color: #5c5248; }
  .attachmentBox span {
    margin-left: 5px; }

@media (max-width: 640px) {
  .sideBox {
    text-align: center; } }

.sideBox .titleBox {
  padding: 0; }
  .sideBox .titleBox:before {
    content: "";
    position: absolute;
    content: url("../assets/images/decoTitle.png");
    left: -220px; }
  .sideBox .titleBox .title {
    font-size: 46px; }
    @media (max-width: 1536px) {
      .sideBox .titleBox .title {
        font-size: 40px; } }

@media (max-width: 1180px) {
  .sideBox .sideMenu {
    display: none; } }

.sideBox .sideMenu li {
  margin-bottom: 15px;
  position: relative;
  width: 100%;
  max-width: 200px;
  text-align: center;
  transition: all 0.5s ease-in-out; }
  @media (max-width: 640px) {
    .sideBox .sideMenu li {
      max-width: 100%; } }
  .sideBox .sideMenu li a {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1.08px; }
  .sideBox .sideMenu li.current, .sideBox .sideMenu li.open {
    color: #5c5248; }
  @media (min-width: 1281px) {
    .sideBox .sideMenu li:hover a {
      color: #5c5248; } }
  .sideBox .sideMenu li.hasSubmenu:before {
    content: "";
    position: absolute;
    content: "+";
    right: 10px; }
  .sideBox .sideMenu li.hasSubmenu.open:before {
    content: "";
    position: absolute;
    content: "-"; }

.sideBox .sideMenu .submenu {
  display: none; }
  .sideBox .sideMenu .submenu li {
    background-color: transparent;
    padding: 5px 30px;
    margin-bottom: 0; }
    .sideBox .sideMenu .submenu li a {
      font-size: 14px; }
    .sideBox .sideMenu .submenu li:after {
      content: "";
      position: absolute;
      display: none; }
  .sideBox .sideMenu .submenu + li {
    margin-top: 10px; }

.sideBox .sideMenuBtn {
  margin: 10px 0; }
  @media (min-width: 1181px) {
    .sideBox .sideMenuBtn {
      display: none; } }
  .sideBox .sideMenuBtn button {
    cursor: pointer; }
  .sideBox .sideMenuBtn + .sideMenu {
    margin-top: 30px; }

.sideBox .sideInputBox {
  margin-top: 20px; }

.sideBox .sideInput {
  border-bottom: 1px solid #ecd8c4;
  display: flex;
  padding: 5px 15px;
  color: #ecd8c4;
  width: fit-content;
  max-width: 150px; }
  @media (max-width: 640px) {
    .sideBox .sideInput {
      max-width: 100%;
      width: 100%; } }
  .sideBox .sideInput i {
    border-right: 1px solid #ecd8c4;
    padding-right: 10px; }
  .sideBox .sideInput input {
    border: none;
    padding: 0 5px;
    color: #ecd8c4;
    font-size: 14px;
    width: fit-content;
    max-width: 100%;
    letter-spacing: 1.68px; }
    .sideBox .sideInput input::-webkit-input-placeholder {
      color: #ecd8c4; }
    .sideBox .sideInput input:-moz-placeholder {
      color: #ecd8c4; }
    .sideBox .sideInput input::-moz-placeholder {
      color: #ecd8c4; }
    .sideBox .sideInput input:-ms-input-placeholder {
      color: #ecd8c4; }
    .sideBox .sideInput input:focus {
      outline: none; }

.sideFilter {
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  margin-bottom: 20px;
  padding: 5px 15px;
  color: #5c5248;
  background-color: rgba(236, 216, 196, 0.65);
  width: fit-content;
  max-width: 200px; }
  @media (max-width: 640px) {
    .sideFilter {
      width: 100%;
      max-width: 100%;
      margin-top: 40px;
      margin-bottom: 40px;
      padding: 10px 15px; } }
  .sideFilter i {
    border-right: 1px solid #5c5248;
    padding-right: 10px; }
  .sideFilter select {
    border: none;
    padding: 0 5px;
    color: #5c5248;
    background-color: transparent;
    font-size: 14px;
    letter-spacing: 1.68px; }
    @media (max-width: 640px) {
      .sideFilter select {
        width: 100%; } }

.backBox {
  display: flex;
  justify-content: flex-end;
  margin: 100px 0; }

.textEditor {
  color: #96887a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625;
  font-family: "Noto Serif TC", sans-serif;
  letter-spacing: 1.28px; }
  .textEditor p {
    color: #96887a;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.625;
    letter-spacing: 1.28px; }
    .textEditor p.black {
      color: #000; }
    .textEditor p.Large {
      font-size: 24px;
      color: #5c5248;
      font-weight: 700;
      letter-spacing: 1.92px; }
    .textEditor p.Middle {
      font-size: 20px;
      font-weight: 600;
      color: #806846;
      letter-spacing: 2px; }
  .textEditor ul {
    padding-left: 15px;
    list-style: disc; }
  .textEditor img {
    height: auto;
    max-width: 100%; }

.cardTitle {
  font-size: 18px;
  font-weight: 700;
  line-height: calc(26 / 18);
  letter-spacing: 0.96px; }

.cardDesc {
  margin-top: 15px;
  font-size: 14px;
  transition: all 0.5s ease-in-out;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 1.12px; }

.date {
  color: #2a7ca4;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px; }

.contentTitle {
  font-size: 20px;
  font-weight: 700;
  line-height: calc(27 / 20);
  letter-spacing: 1.2px; }

.tabList {
  display: flex;
  margin-bottom: 30px;
  width: 100%; }

.tabItem {
  padding: 5px 30px;
  background-image: linear-gradient(270deg, #5c5248, #ecd8c4);
  color: #fff;
  width: 100%; }
  .tabItem a {
    color: currentColor; }

.tabContent {
  padding: 0 20px; }

.pageBox {
  margin-top: 30px; }
  .pageBox .pageList {
    align-items: baseline;
    display: flex;
    justify-content: center;
    padding: 5px 10px;
    border-bottom: 3px solid #ecd8c4;
    width: fit-content;
    margin: 0 auto; }
    .pageBox .pageList li.current a {
      color: #5c5248;
      position: relative; }
      .pageBox .pageList li.current a::after {
        opacity: 1; }
    @media (min-width: 1281px) {
      .pageBox .pageList li:hover a {
        color: #5c5248;
        position: relative; }
        .pageBox .pageList li:hover a::after {
          opacity: 1; } }
    .pageBox .pageList a {
      color: #baab9d;
      font-family: "athelas", Arial, Noto Serif TC, sans-serif;
      font-size: 24px;
      font-weight: 700;
      margin: 0 5px;
      position: relative;
      letter-spacing: 3.24px; }
      .pageBox .pageList a:after {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        background-image: url("../assets/images/pageRing.png");
        background-size: contain;
        left: 0;
        bottom: -12px;
        transition: all 0.5s ease-in-out;
        opacity: 0; }

.formItem {
  display: flex;
  padding: 10px 25px;
  border-bottom: 1px solid #000;
  transition: all 0.5s ease-in-out; }
  @media (max-width: 640px) {
    .formItem {
      padding: 10px; } }
  .formItem:focus-within {
    border-color: #ecd8c4; }
  .formItem.textarea {
    border: 1px solid #000;
    margin-top: 20px; }
  .formItem label {
    font-size: 15px;
    margin-right: 15px;
    letter-spacing: 1.8px; }
  .formItem input,
  .formItem textarea {
    color: #bdbdbd;
    font-size: 14px;
    font-weight: 700;
    background-color: transparent;
    border: none;
    width: max-content;
    flex: 1; }
    .formItem input::-webkit-input-placeholder,
    .formItem textarea::-webkit-input-placeholder {
      color: #bdbdbd;
      font-size: 14px; }
    .formItem input:-moz-placeholder,
    .formItem textarea:-moz-placeholder {
      color: #bdbdbd;
      font-size: 14px; }
    .formItem input::-moz-placeholder,
    .formItem textarea::-moz-placeholder {
      color: #bdbdbd;
      font-size: 14px; }
    .formItem input:-ms-input-placeholder,
    .formItem textarea:-ms-input-placeholder {
      color: #bdbdbd;
      font-size: 14px; }
    .formItem input:focus,
    .formItem textarea:focus {
      outline: none; }
  .formItem2 {
    background-color: #f8f8f8;
    border-bottom: none;
    margin-bottom: 15px; }

.formRadioBox {
  display: flex; }

.formRadio {
  cursor: pointer;
  padding: 5px 15px;
  border: 1px solid #ecd8c4;
  color: #ecd8c4;
  background-color: #fff;
  margin-right: 10px; }
  .formRadio.selected {
    background-color: #ecd8c4;
    color: #fff; }

.rwdTable {
  max-width: 100%;
  overflow-x: auto; }
  .rwdTable table * {
    word-break: keep-all; }
  @media (max-width: 640px) {
    .rwdTable table th {
      min-width: 150px;
      width: 100% !important; } }

.table {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%; }
  .table th {
    color: #ecd8c4;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 10px;
    letter-spacing: 0.48px; }
  .table td {
    text-align: center;
    position: relative; }
  .table tbody {
    padding: 10px 15px; }
    .table tbody tr {
      position: relative; }
      .table tbody tr:nth-child(odd):after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 25px;
        background-color: #f3f3f3;
        z-index: -1;
        pointer-events: none; }
  .table .productImg {
    height: 150px;
    width: 150px;
    object-fit: contain; }
  .table .iconBtn {
    cursor: pointer;
    color: #5c5248;
    border: none;
    background-color: transparent; }
  .table.table2 {
    border-collapse: separate;
    border-spacing: 0 10px; }
    .table.table2 thead {
      background-color: #ecd8c4; }
    .table.table2 tbody {
      background-color: #fff; }
    .table.table2 th {
      color: #fff;
      padding: 5px; }
    .table.table2 tr:nth-child(odd) {
      background-color: transparent; }
    .table.table2 tr:nth-child(even) {
      background-color: #e9e9e9; }
    .table.table2 td {
      color: #797a7a;
      padding: 10px 0; }
      .table.table2 td:after {
        content: "";
        position: absolute;
        display: none; }

.orderSteps {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-bottom: 40px; }
  @media (max-width: 640px) {
    .orderSteps {
      display: none; } }

.orderStep {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .orderStep .stepIcon {
    margin-bottom: 15px; }
  .orderStep .stepTxt {
    color: #ecd8c4;
    font-weight: 500; }

.productNum {
  align-items: center;
  display: flex;
  padding: 5px 0;
  color: #fff;
  background-color: #000;
  margin: auto;
  justify-content: space-evenly; }
  .productNum button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 14px; }
  .productNum input {
    background-color: transparent;
    border: none;
    border-left: 1px solid #ecd8c4;
    border-right: 1px solid #ecd8c4;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    max-width: 50px; }
    @media (max-width: 640px) {
      .productNum input {
        max-width: 40px; } }
    .productNum input:focus {
      outline: none; }
  .productNum.disabled {
    max-width: 120px;
    background-color: transparent; }
    .productNum.disabled input {
      padding: 2.5px 10px;
      background-color: #000;
      border: none; }

.relationBox .slick-slide {
  padding: 0 10px; }

.relationBox .slick-next, .relationBox .slick-prev {
  width: 30px;
  height: 30px; }
  .relationBox .slick-next::before, .relationBox .slick-prev::before {
    opacity: 0.65;
    font-size: 26px;
    color: #000; }

.relationTitleBox {
  padding: 5px 30px;
  background-image: linear-gradient(270deg, #5c5248, #ecd8c4);
  color: #fff;
  width: 100%; }
  .relationTitleBox h2 {
    font-size: 16px;
    font-weight: 400; }

.relationItem h3 {
  font-size: 15px;
  font-weight: 500;
  max-width: 85%;
  margin: auto;
  letter-spacing: 1.8px; }

#svg {
  display: none; }
