* {
  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 */
.btnBox .btn, .titleBox .subtitle {
  font-family: "Arial", "Noto Sans TC", sans-serif; }

header nav ul.main > li > a .title, header nav ul.main > li .submenu li a, footer .sitemap li, footer .contactList li, footer .copyright, .insContent .contentNav li, .insTitle, .textEditor p, .contentTitle, .albumBox .title {
  font-family: "Noto Sans TC", "Noto Sans TC", sans-serif; }

header, header nav ul.main > li > a .title, header nav ul.main > li .submenu li, .sideBtns .toTop, footer .sitemap li a, footer .contactList li a, .insContent .contentNav li, .insContent .contentNav li:before, .insContent .contentNav li:after, .insContent .contentNav li > a:after, .sideBox .sideMenu li:before, .albumBox .imgBox:before, .albumBox .imgBox:after, .albumBox .imgBox img {
  transition: all 0.65s ease-in-out; }

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

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

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

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

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

header {
  background-image: linear-gradient(to right, #cdcdcd 35%, #fff 35%);
  padding: 20px 0;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99; }
  header.scrolled {
    background-color: #fff; }
  @media (max-width: 1024px) {
    header {
      display: none; } }
  header .wrap {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px; }
  header .logo {
    display: block;
    font-size: 0;
    width: 270px; }
    header .logo img {
      width: 100%; }
    @media (max-width: 1280px) {
      header .logo {
        max-width: 150px;
        margin-right: 30px; } }
  header nav {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    width: 100%; }
    header nav ul.main {
      display: flex;
      justify-content: space-between;
      position: relative; }
      header nav ul.main > li {
        margin: 0 22.5px;
        position: relative; }
        @media (min-width: 1281px) {
          header nav ul.main > li:hover .deco {
            opacity: 1; }
          header nav ul.main > li:hover > a {
            color: #a15e3d; }
            header nav ul.main > li:hover > a .title {
              color: #a15e3d;
              font-weight: 500; }
            header nav ul.main > li:hover > a .subtitle {
              color: #a15e3d;
              font-size: 14px;
              font-weight: 500; }
          header nav ul.main > li:hover:has(.submenu):after {
            content: "";
            position: absolute;
            border-right: 2px solid #a15e3d;
            border-bottom: 2px solid #a15e3d; } }
        header nav ul.main > li.current .deco {
          opacity: 1; }
        header nav ul.main > li.current > a {
          color: #a15e3d; }
          header nav ul.main > li.current > a .title {
            color: #a15e3d;
            font-weight: 500; }
          header nav ul.main > li.current > a .subtitle {
            color: #a15e3d;
            font-size: 14px;
            font-weight: 500; }
        header nav ul.main > li:has(.current) .deco {
          opacity: 1; }
        header nav ul.main > li:has(.current) > a .title {
          color: #a15e3d;
          font-weight: 500; }
        header nav ul.main > li:has(.current) > a .subtitle {
          color: #a15e3d;
          font-size: 14px;
          font-weight: 500; }
        header nav ul.main > li:has(.current):has(.submenu):after {
          content: "";
          position: absolute;
          border-right: 2px solid #a15e3d;
          border-bottom: 2px solid #a15e3d; }
        header nav ul.main > li:has(.submenu):after {
          content: "";
          position: absolute;
          width: 6px;
          height: 6px;
          right: 0;
          bottom: 0;
          border-right: 2px solid #000;
          border-bottom: 2px solid #000; }
        header nav ul.main > li .deco {
          position: absolute;
          z-index: 1;
          bottom: 0;
          right: 0;
          opacity: 0;
          transform: translateX(25px);
          transition: all 0.65s ease-in-out; }
        header nav ul.main > li > a {
          display: flex;
          flex-direction: column;
          position: relative;
          z-index: 2; }
          header nav ul.main > li > a .title {
            color: #000;
            font-size: 18px;
            font-weight: 500;
            line-height: 1;
            word-break: keep-all;
            margin-bottom: 12px;
            letter-spacing: 2px; }
          header nav ul.main > li > a .subtitle {
            color: #000;
            font-size: 16px;
            font-family: 'Arial', sans-serif;
            line-height: 1;
            word-break: keep-all;
            transition: all 0.65s ease-in-out;
            letter-spacing: 0.42px; }
        header nav ul.main > li .submenu {
          opacity: 0;
          pointer-events: none;
          position: absolute;
          display: flex;
          flex-direction: column;
          width: 140px;
          top: 100%;
          left: 0%;
          transform: translateX(-25%);
          background-color: rgba(205, 174, 130, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          overflow: hidden;
          padding: 12px 0;
          transition: all 0.65s 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 {
                background-color: rgba(205, 174, 130, 0.9); } }
            header nav ul.main > li .submenu li a {
              color: #fff;
              font-size: 15px;
              font-weight: 500;
              transition: all 0.65s ease-in-out;
              letter-spacing: 1.8px; }

.mobileHeader {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 10px 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: 120px; }
    .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: #f18e00;
    transition: all 0.5s; }
    .mobileMenuTrigger span:before, .mobileMenuTrigger span:after {
      background: #f18e00;
      left: 0;
      width: 100%;
      height: 2px;
      transition: all 0.5s; }
    .mobileMenuTrigger span:before {
      content: "";
      position: absolute;
      top: -7px; }
    .mobileMenuTrigger span:after {
      content: "";
      position: absolute;
      bottom: -7px; }

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

.mobileMenuList li {
  color: #000;
  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: #b2953f;
      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.65s ease-in-out; }
  .mobileMenuMask.show {
    opacity: 1;
    pointer-events: auto; }

.mobileMenuFnc {
  display: flex;
  justify-content: center;
  margin-top: 20px; }
  .mobileMenuFnc li {
    margin: 0 10px; }

.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: #f18e00; }

.sideBtns {
  position: fixed;
  right: 5%;
  bottom: 5%;
  z-index: 99; }
  @media (max-width: 640px) {
    .sideBtns {
      right: 20px;
      bottom: 100px; } }
  .sideBtns .socialList {
    display: none; }
    .sideBtns .socialList li {
      border: 3px solid #b2953f;
      background-color: transparent; }
  .sideBtns .toTop {
    opacity: 0;
    pointer-events: none; }
    .sideBtns .toTop.show {
      opacity: 1;
      pointer-events: auto; }
    .sideBtns .toTop a {
      background-color: #868686;
      align-items: center;
      display: flex;
      justify-content: center;
      width: 50px;
      height: 50px; }
    .sideBtns .toTop svg {
      height: 40px;
      width: 40px; }

footer {
  background-color: #000;
  color: #fff;
  padding-top: 80px; }
  @media (max-width: 820px) {
    footer .wrap {
      padding: 0 30px; } }
  footer .topBox {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px; }
    @media (max-width: 820px) {
      footer .topBox {
        gap: 15px; } }
    @media (max-width: 768px) {
      footer .topBox {
        flex-direction: column; } }
  footer .logo {
    flex: 1;
    max-width: 200px;
    text-align: center;
    filter: brightness(0) invert(1); }
    footer .logo img {
      width: 100%;
      height: 100%;
      object-fit: contain; }
    @media (max-width: 820px) {
      footer .logo {
        max-width: 250px; } }
    @media (max-width: 768px) {
      footer .logo {
        margin-right: 0; } }
    @media (max-width: 768px) {
      footer .logo {
        order: 1; } }
  footer .footerTitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px; }
  footer .sitemap {
    display: flex;
    flex-wrap: wrap;
    flex: 0.5;
    margin-bottom: 10px; }
    @media (max-width: 768px) {
      footer .sitemap {
        flex: 1;
        order: 2; } }
    footer .sitemap li {
      color: #fff;
      margin-bottom: 15px;
      width: calc(100% / 3);
      letter-spacing: 2.25px; }
      @media (max-width: 768px) {
        footer .sitemap li {
          text-align: center; } }
      @media (min-width: 1281px) {
        footer .sitemap li a:hover {
          color: #b2953f; } }
  footer .contactList li {
    display: flex;
    flex-direction: column;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 2.25px; }
    @media (min-width: 1281px) {
      footer .contactList li a:hover {
        color: #b2953f; } }
  footer .socialList {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-top: 20px; }
    footer .socialList img {
      height: 24px;
      width: 24px; }
  footer .bottomBox {
    padding-bottom: 80px; }
    @media (max-width: 1180px) {
      footer .bottomBox {
        padding-bottom: 40px; } }
  footer .copyright {
    font-size: 12px;
    padding: 15px 0;
    text-align: center;
    letter-spacing: 1.5px; }

.btnBox {
  display: flex;
  align-items: center; }
  .btnBox .btn {
    position: relative;
    color: #000000;
    border: 2px solid #d3b891;
    font-size: 16px;
    font-weight: 700;
    padding: 4px 15px;
    min-width: 95px;
    letter-spacing: 1.08px; }
    @media (min-width: 1281px) {
      .btnBox .btn:hover {
        color: #fff;
        background-color: #d3b891; } }

.titleBox {
  display: flex;
  flex-direction: column;
  position: relative;
  width: fit-content; }
  .titleBox.center {
    margin: 0 auto; }
  .titleBox .title {
    color: #000;
    font-weight: 500;
    font-size: 26px;
    text-align: right;
    letter-spacing: 1.3px; }
    @media (max-width: 640px) {
      .titleBox .title {
        font-size: 30px; } }
  .titleBox .subtitle {
    color: #f18e00;
    font-size: 78px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    filter: drop-shadow(-10px 0 0 #000);
    letter-spacing: 0px; }
    @media (max-width: 640px) {
      .titleBox .subtitle {
        font-size: 60px; } }

.breadBox {
  align-items: flex-end;
  display: flex;
  justify-content: space-between; }
  @media (max-width: 640px) {
    .breadBox {
      flex-direction: column;
      align-items: center; } }
  .breadBox .titleBox {
    margin-bottom: 0; }
  .breadBox .bread {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    @media (max-width: 640px) {
      .breadBox .bread {
        margin-top: 20px; } }
    .breadBox .bread li,
    .breadBox .bread a {
      font-size: 14px;
      color: #fff;
      font-weight: 500;
      letter-spacing: 1.28px; }
    .breadBox .bread .divider {
      margin: 0 5px; }

.insBox {
  position: relative;
  padding: 100px 0;
  background-image: url("../assets/images/insBg.png");
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat; }
  .insBox .wrap {
    padding: 0 100px; }
    @media (max-width: 1024px) {
      .insBox .wrap {
        padding: 0 50px; } }
    @media (max-width: 768px) {
      .insBox .wrap {
        padding: 0 20px; } }
  @media (max-width: 1024px) {
    .insBox {
      padding: 50px 0; } }
  .insBox:after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background-image: url("../assets/images/pageDeco.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    right: 100px;
    bottom: 50px;
    pointer-events: none; }
    @media (max-width: 640px) {
      .insBox:after {
        width: 200px;
        height: 200px;
        right: 5%;
        bottom: 5%; } }

.insBanner {
  position: relative; }
  @media (max-width: 1024px) {
    .insBanner {
      height: 200px; } }
  @media (max-width: 640px) {
    .insBanner {
      height: 250px; } }
  @media (max-width: 1024px) {
    .insBanner img {
      height: 100%;
      object-fit: cover;
      width: 100%; } }
  .insBanner .insBannerText {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 50px; }
  .insBanner .wrap {
    width: 100%; }
  .insBanner .breadBox {
    width: 100%; }
  .insBanner .titleBox {
    flex: 1;
    align-items: flex-start; }
    .insBanner .titleBox .subtitle {
      color: #fff;
      text-shadow: none;
      filter: none;
      font-size: 50px;
      font-weight: 700;
      letter-spacing: 2px; }
    .insBanner .titleBox .title {
      color: #fff;
      font-size: 28px;
      font-weight: 500;
      letter-spacing: 1.4px; }

.insContent {
  display: grid;
  grid-template-columns: 20% 1fr;
  column-gap: 50px;
  padding-top: 80px; }
  @media (max-width: 1180px) {
    .insContent {
      grid-template-columns: 100%; } }
  @media (max-width: 640px) {
    .insContent {
      padding-top: 40px; } }
  .insContent.noSide {
    padding-top: 0;
    grid-template-columns: 100%; }
  .insContent:not(.noSide) {
    padding: 120px 0 50px; }
    @media (max-width: 1024px) {
      .insContent:not(.noSide) {
        padding: 40px 0; } }
    .insContent:not(.noSide) .contentBox {
      padding: 0; }
      @media (max-width: 640px) {
        .insContent:not(.noSide) .contentBox {
          padding: 40px 0; } }
  .insContent .contentNav {
    display: flex;
    align-items: center;
    gap: 50px; }
    @media (max-width: 640px) {
      .insContent .contentNav {
        flex-wrap: wrap;
        gap: 20px; } }
    .insContent .contentNav li {
      font-size: 18px;
      font-weight: 500;
      color: #284124;
      text-align: center;
      position: relative;
      letter-spacing: 1.8px; }
      @media (max-width: 640px) {
        .insContent .contentNav li {
          font-size: 16px;
          letter-spacing: 0.96px; } }
      @media (min-width: 1281px) {
        .insContent .contentNav li:hover {
          background-color: #ececec; }
          .insContent .contentNav li:hover:before {
            content: "";
            position: absolute;
            opacity: 1; }
          .insContent .contentNav li:hover:after {
            content: "";
            position: absolute;
            opacity: 1; }
          .insContent .contentNav li:hover a:after {
            content: "";
            position: absolute;
            opacity: 1; } }
      .insContent .contentNav li:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #6d6d6d;
        opacity: 0; }
      .insContent .contentNav li:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #6d6d6d;
        opacity: 0; }
      .insContent .contentNav li > a {
        color: currentColor;
        font-weight: 400;
        font-size: 20px;
        padding: 10px 30px;
        transition: all 0.65s ease-in-out;
        position: relative;
        display: block;
        width: 100%;
        letter-spacing: 0.96px; }
        @media (min-width: 1281px) {
          .insContent .contentNav li > a:hover {
            color: #b2953f; } }
        .insContent .contentNav li > a:after {
          content: "";
          position: absolute;
          width: 20px;
          height: 40px;
          background-image: url("../assets/images/newsDeco.svg");
          background-position: center;
          background-repeat: no-repeat;
          left: 0;
          top: 50%;
          transform: translate(-50%, -50%);
          opacity: 0; }
      .insContent .contentNav li.current > a {
        background-color: #ececec; }
        .insContent .contentNav li.current > a:before {
          content: "";
          position: absolute;
          opacity: 1; }
        .insContent .contentNav li.current > a:after {
          content: "";
          position: absolute;
          opacity: 1; }
        .insContent .contentNav li.current > a a:after {
          content: "";
          position: absolute;
          opacity: 1; }
  .insContent .contentBox {
    padding: 80px 0; }
    @media (max-width: 1180px) {
      .insContent .contentBox {
        padding: 40px 0; } }
  .insContent .pageTitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1.6px; }

.insTitle {
  color: #f18e00;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 50px;
  padding-left: 30px;
  position: relative;
  width: fit-content;
  letter-spacing: 2.88px; }
  .insTitle:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 1px;
    background-color: #6d0c0c;
    rotate: -45deg;
    right: -35px;
    top: 70%; }
  .insTitle:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: #b2953f;
    rotate: -45deg;
    right: -28px;
    top: 100%; }

.viewBox {
  align-items: center;
  display: flex;
  font-size: 16px;
  margin-top: 10px;
  line-height: 1;
  color: #a15e3d;
  font-weight: 900;
  font-family: "Arial", "Noto Sans TC", sans-serif; }
  @media (max-width: 640px) {
    .viewBox {
      margin-top: 0; } }
  .viewBox i {
    color: #a15e3d;
    margin-right: 10px; }

.sideBox .sideMenu {
  position: relative; }
  .sideBox .sideMenu:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    background-color: #7d7d7d;
    left: -1px;
    top: 0;
    z-index: 2; }
    @media (max-width: 640px) {
      .sideBox .sideMenu:before {
        display: none; } }
  @media (max-width: 1180px) {
    .sideBox .sideMenu {
      display: none; } }
  .sideBox .sideMenu li {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-align: left;
    padding: 5px 32px 5px 16px;
    position: relative;
    width: fit-content;
    letter-spacing: 1.08px; }
    .sideBox .sideMenu li:after {
      content: "";
      position: absolute;
      width: 8px;
      height: 8px;
      background-color: #7d7d7d;
      border-radius: 50%;
      left: -4px;
      top: 50%;
      transform: translateY(-50%); }
      @media (max-width: 640px) {
        .sideBox .sideMenu li:after {
          display: none; } }
    .sideBox .sideMenu li:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      box-shadow: 0px 2px 1.96px 0.04px rgba(77, 77, 77, 0.19);
      background-color: #e5e5e5;
      opacity: 0; }
      @media (max-width: 640px) {
        .sideBox .sideMenu li:before {
          display: none; } }
    @media (min-width: 1281px) {
      .sideBox .sideMenu li:hover {
        color: #f18e00; }
        .sideBox .sideMenu li:hover:before {
          content: "";
          position: absolute;
          opacity: 1; } }
    .sideBox .sideMenu li > a {
      color: currentColor;
      font-weight: 400;
      font-size: 20px;
      transition: all 0.65s ease-in-out;
      position: relative;
      display: block;
      width: 100%;
      letter-spacing: 0.96px; }
      @media (min-width: 1281px) {
        .sideBox .sideMenu li > a:hover {
          color: #b2953f; } }
    .sideBox .sideMenu li.current:before {
      content: "";
      position: absolute;
      opacity: 1; }
    .sideBox .sideMenu li.current > a {
      color: #f18e00; }
      .sideBox .sideMenu li.current > a:before {
        content: "";
        position: absolute;
        opacity: 1; }
    .sideBox .sideMenu li.hasMenu > a {
      position: relative; }
      .sideBox .sideMenu li.hasMenu > a:before {
        content: "";
        position: absolute;
        background-image: url("../assets/images/arrowup.svg");
        background-size: contain;
        background-position: center;
        position: absolute;
        width: 36px;
        height: 36px;
        right: -50px;
        top: -10px;
        transition: all 0.65s ease-in-out; }
    .sideBox .sideMenu li.hasMenu.current > a::before {
      transform: rotate(180deg); }
    .sideBox .sideMenu li .submenu {
      padding: 5px; }
  .sideBox .sideMenuBtn {
    margin: 30px 0; }
    @media (min-width: 1181px) {
      .sideBox .sideMenuBtn {
        display: none; } }
    .sideBox .sideMenuBtn button {
      position: relative;
      color: #000000;
      border: 2px solid #d3b891;
      font-size: 16px;
      font-weight: 700;
      padding: 4px 15px;
      min-width: 95px;
      width: 100%; }
      .sideBox .sideMenuBtn button:after {
        content: "";
        position: absolute;
        display: none; }
    @media (max-width: 1181px) {
      .sideBox .sideMenuBtn + .sideMenu {
        margin-top: 30px;
        padding-left: 40px; } }
    @media (max-width: 1180px) {
      .sideBox .sideMenuBtn + .sideMenu {
        padding-left: 0; } }
  .sideBox .sideMenu .submenu li {
    transition: all 0.65s ease-in-out; }
    @media (min-width: 1281px) {
      .sideBox .sideMenu .submenu li:hover {
        background-color: #d8d8d8; } }
    .sideBox .sideMenu .submenu li a:after {
      content: "";
      position: absolute;
      display: none; }

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

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

.sideBox .sideFilter {
  border-bottom: 1px solid #b2953f;
  display: flex;
  padding: 5px 15px;
  color: #b2953f;
  width: fit-content;
  max-width: 150px; }
  .sideBox .sideFilter i {
    border-right: 1px solid #b2953f;
    padding-right: 10px; }
  .sideBox .sideFilter select {
    border: none;
    padding: 0 5px;
    color: #b2953f;
    font-size: 14px;
    letter-spacing: 1.68px; }

.backBox {
  display: flex;
  justify-content: center;
  margin: 50px 0; }

.textEditor {
  color: #000; }
  .textEditor p {
    color: #000;
    font-size: 16px;
    line-height: calc(32 / 18);
    letter-spacing: 1.28px; }
  .textEditor img {
    height: auto;
    max-width: 100%; }

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

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

.contentTitle {
  color: #f18e00;
  font-size: 26px;
  font-weight: 700;
  line-height: calc(27 / 27);
  margin: 20px 0;
  letter-spacing: 2.6px; }

.tabList {
  display: flex;
  margin-bottom: 30px;
  width: 100%;
  position: relative; }
  .tabList:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #d3d3d3;
    left: 0;
    bottom: 0;
    z-index: 1; }

.tabItem {
  border: 1px solid #d3d3d3;
  border-bottom: 1px solid #fff;
  background-color: #fff;
  color: #000;
  font-size: 18px;
  padding: 5px 25px;
  width: fit-content;
  position: relative;
  z-index: 2; }

.pageList {
  align-items: baseline;
  display: flex;
  justify-content: center;
  margin-top: 60px;
  gap: 8px; }
  .pageList li.current {
    background-color: #bea37c; }
  .pageList li {
    width: 30px;
    height: 30px;
    border: 1.5px solid #c9c9c9;
    display: flex;
    align-items: center;
    justify-content: center; }
  .pageList a {
    color: #000;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.72px; }

.albumBox .titleBox {
  margin-bottom: 40px; }
  .albumBox .titleBox:before {
    content: "";
    position: absolute;
    display: none; }
  .albumBox .titleBox:after {
    content: "";
    position: absolute;
    display: none; }

.albumBox .title {
  background-color: #284124;
  padding: 10px 50px;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  margin-left: -30px;
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  letter-spacing: 3.3px; }

.albumBox .albumList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 40px; }
  @media (max-width: 1180px) {
    .albumBox .albumList {
      grid-template-columns: repeat(2, 1fr);
      row-gap: 20px; } }

@media (min-width: 1281px) {
  .albumBox .albumItem:hover .imgBox img {
    transform: scale(1.1); }
  .albumBox .albumItem:hover .imgBox:before {
    content: "";
    position: absolute;
    opacity: 1; }
  .albumBox .albumItem:hover .imgBox:after {
    content: "";
    position: absolute;
    opacity: 1; } }

.albumBox .imgBox {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-size: 0; }
  .albumBox .imgBox:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(40, 65, 36, 0.5);
    z-index: 5;
    opacity: 0; }
  .albumBox .imgBox:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    background-image: url("../assets/images/iconZoomIn.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 6; }
  .albumBox .imgBox img {
    width: 100%;
    height: 100%; }

.albumBox .textBox {
  padding: 15px 25px;
  font-size: 18px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 2.7px; }
  @media (max-width: 640px) {
    .albumBox .textBox {
      padding: 0;
      margin: 10px 0;
      font-size: 16px; } }

.formItem {
  display: flex;
  padding: 10px 0;
  margin: 0 20px;
  border-bottom: 1px solid #bea37c;
  transition: all 0.65s ease-in-out; }
  @media (max-width: 768px) {
    .formItem {
      margin: 10px 0; } }
  .formItem:has(textarea) {
    border: 1px solid #bea37c;
    height: 100%; }
  @media (max-width: 640px) {
    .formItem {
      padding: 10px; } }
  .formItem:focus-within {
    border-color: #b2953f; }
  .formItem label {
    font-size: 15px;
    margin-right: 15px;
    letter-spacing: 1.8px; }
  .formItem input,
  .formItem textarea {
    font-size: 14px;
    font-weight: 700;
    background-color: transparent;
    border: none;
    width: max-content;
    flex: 1; }
    .formItem input:focus,
    .formItem textarea:focus {
      outline: none; }
  .formItem textarea {
    height: 250px; }
  .formItem2 {
    background-color: #f8f8f8;
    border-bottom: none;
    margin-bottom: 15px; }

.formRadioBox {
  display: flex; }

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

.formBtn {
  align-items: center;
  display: flex;
  font-weight: 700;
  margin-top: 80px;
  padding: 2.5px 50px;
  transition: all 0.65s ease-in-out;
  background-color: rgba(213, 213, 213, 0.5);
  z-index: 2;
  width: 200px;
  margin-left: auto;
  position: relative; }
  .formBtn:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0; }
  .formBtn span {
    font-size: 24px;
    font-weight: 900;
    color: #f18e00;
    letter-spacing: 1.6px; }
  .formBtn img {
    height: 16px;
    width: 16px;
    margin-left: 10px; }

.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: #000;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    padding-bottom: 10px;
    letter-spacing: 0.48px; }
  .table td {
    text-align: center;
    position: relative; }
    .table td:not(:first-child) {
      color: #fff; }
      .table td:not(:first-child) > * {
        position: relative;
        z-index: 2; }
      .table td:not(:first-child):after {
        content: "";
        position: absolute;
        position: absolute;
        width: 100%;
        top: 15%;
        left: 0;
        height: 70%;
        background-color: #b2953f;
        z-index: 1; }
    .table td:last-child:after {
      content: "";
      position: absolute;
      width: 80%; }
  .table tbody {
    background-color: #edfaff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 10px 15px; }
  .table .productImg {
    height: 150px;
    width: 150px;
    object-fit: contain; }
  .table .iconBtn {
    cursor: pointer;
    color: #fff;
    border: none;
    background-color: transparent; }
  .table.table2 {
    border-collapse: separate;
    border-spacing: 0 10px; }
    .table.table2 thead {
      background-color: #b2953f; }
    .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: #f5f5f5; }
    .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: #b2953f;
    font-weight: 500; }

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