* {
  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 */
header .navList>li,
header .navList>li:before,
header .navList>li:after,
header .navList>li>a:before,
header .navList>li>a .subtitle,
header .navList>li .submenu li a,
.sideBtns li img,
footer .contentBox .leftBox .sitemap li a,
footer .contentBox .leftBox .join a,
footer .contentBox .leftBox .social a img,
.btnBox .btn,
.sideBox .sideMenu>li:before,
.pageList li,
.pageList li a,
.pageList a {
  transition: all 0.5s ease-in-out;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

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

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shine {
  to {
    opacity: 1;
  }
}

body {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
}

body a {
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1181px) {
  body a:hover {
    color: #3d6933;
  }
}

body.scroll-disabled,
body.isLoading {
  overflow: hidden;
}

body:not(.home) .outerWrap {
  background-image: url("../assets/images/ins_bg.png");
  background-position: left top;
  background-size: contain;
  background-repeat: no-repeat;
}

body:not(.home) .deco {
  position: absolute;
}

@media (max-width: 1480px) {
  body:not(.home) .deco {
    display: none;
  }
}

body:not(.home) .deco1 {
  left: 6vw;
  top: 26%;
}

body:not(.home) .deco2 {
  right: 4vw;
  top: 35%;
}

body:not(.home) .deco3 {
  left: 6vw;
  top: 50%;
}

.loading {
  align-items: center;
  background-color: #3d6933;
  display: flex;
  height: 100%;
  justify-content: center;
  opacity: 1;
  position: fixed;
  pointer-events: none;
  top: 0;
  transition: all 0.5s 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.5s ease-in-out;
  animation: slowShowLeft 1s ease-in-out forwards;
}

.loading-logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}

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

@media (max-width: 640px) {
  .outerWrap {
    padding: 80px 0 0;
  }
}

.outerWrap.show {
  opacity: 1;
}

.wrap {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 50px;
}

@media (max-width: 1280px) {
  .wrap {
    max-width: 90vw;
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .wrap {
    max-width: 95vw;
  }
}

header {
  position: fixed;
  top: 0;
  transform: translateX(-50%);
  left: 50%;
  height: 155px;  
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  z-index: 99;
  transition: all 0.5s ease-in-out;
}

header .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(255, 255, 255, 0.9);
  mask-image: url("../assets/images/header_mask.png");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}

header.hide {
  transform: translateX(-50%) translateY(-100%);
}

@media (max-width: 1180px) {
  header {
    display: none;
  }
}

header .wrap {
  max-width: 1150px;
  width: 100%;
  height: 100%;
  padding: 0 100px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

@media (max-width: 1440px) {
  header .wrap {
    width: 90vw;
    max-width: 90vw;
  }
}

header .logo {
  display: block;
  width: 120px;
}

header .topBox {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
}

header .navList {
  display: flex;
  transform: translateY(-30px);
}

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

header .navList>li {
  margin: 0 20px;
  padding: 20px 0 0;
  position: relative;
}

header .navList>li:before {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  background-color: #fff22b;
  border-radius: 50%;
  z-index: -1;
  left: -15px;
  top: 0;
  opacity: 0;
}

header .navList>li:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #3d6933;
  rotate: -45deg;
  left: -15px;
  bottom: 0;
  opacity: 0;
}

@media (min-width: 1181px) {
  header .navList>li:hover:before {
    content: "";
    position: absolute;
    opacity: 1;
  }

  header .navList>li:hover:after {
    content: "";
    position: absolute;
    opacity: 1;
  }

  header .navList>li:hover>a .subtitle {
    opacity: 1;
  }
}

header .navList>li.current:before {
  content: "";
  position: absolute;
  opacity: 1;
}

header .navList>li.current:after {
  content: "";
  position: absolute;
  opacity: 1;
}

header .navList>li.current a .subtitle {
  opacity: 1;
}

header .navList>li>a {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #3d6933;
  z-index: 2;
}

header .navList>li>a:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #3d6933;
  transform: rotate(-45deg);
  left: -25px;
  bottom: 5px;
  opacity: 0;
}

header .navList>li>a .title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.6px;
  position: relative;
  z-index: 2;
}

header .navList>li>a .subtitle {
  color: #3d6933;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.96px;
  position: absolute;
  left: -10px;
  top: -20px;
  z-index: 2;
  opacity: 0;
}

header .navList>li .submenu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 120px;
  top: 100%;
  left: 0%;
  transform: translateX(-25%) translateX(10px);
  background-color: #3d6933;
  border-radius: 36px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 12px 10px;
  transition: all 0.5s ease-in-out;
}

header .navList>li .submenu.open {
  opacity: 1;
  pointer-events: auto;
}

header .navList>li .submenu li {
  text-align: center;
  padding: 5px 5px;
  position: relative;
}

header .navList>li .submenu li.current a {
  color: #fff22b;
  border-bottom: 1px solid #fff22b;
}

@media (min-width: 1181px) {
  header .navList>li .submenu li:hover a {
    color: #fff22b;
    border-bottom: 1px solid #fff22b;
  }
}

header .navList>li .submenu li a {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1.68px;
}

.mobileHeader {
  background-color: #3d6933;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

@media (min-width: 1181px) {
  .mobileHeader {
    display: none;
  }
}

.mobileHeader .wrap {
  height: 100%;
}

.mobileHeader .logo {
  align-items: center;
  display: flex;
  max-width: 60px;
}

.mobileHeader .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.mobileHeader .mobileMenuTrigger {
  height: 30px;
  width: 30px;
  position: relative;
}

.mobileHeader .mobileMenuTrigger.open span {
  background-color: transparent;
}

.mobileHeader .mobileMenuTrigger.open span:before {
  content: "";
  position: absolute;
  top: 0;
  transform: rotate(45deg);
}

.mobileHeader .mobileMenuTrigger.open span:after {
  content: "";
  position: absolute;
  bottom: 0;
  transform: rotate(-45deg);
}

.mobileHeader .mobileMenuTrigger span {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateX(-50%);
  margin-top: -0.5px;
  width: 26px;
  height: 2px;
  background-color: #fff;
  transition: all 0.5s;
}

.mobileHeader .mobileMenuTrigger span:before,
.mobileHeader .mobileMenuTrigger span:after {
  background: #fff;
  left: 0;
  width: 100%;
  height: 2px;
  transition: all 0.5s;
}

.mobileHeader .mobileMenuTrigger span:before {
  content: "";
  position: absolute;
  top: -7px;
}

.mobileHeader .mobileMenuTrigger span:after {
  content: "";
  position: absolute;
  bottom: -7px;
}

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

.mobileHeader .mobileMenuList li {
  color: #fff;
  font-size: 18px;
  padding: 12px 0;
  position: relative;
  letter-spacing: 1.08px;
}

.mobileHeader .mobileMenuList li a {
  display: block;
}

.mobileHeader .mobileMenuList li.hasSubmenu>a {
  display: block;
  position: relative;
  width: 100%;
}

.mobileHeader .mobileMenuList li.hasSubmenu>a:after {
  content: "";
  position: absolute;
  color: #a5c48e;
  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;
}

.mobileHeader .mobileMenuList li.hasSubmenu.open>a:after {
  content: "";
  position: absolute;
  content: "-";
}

.mobileHeader .mobileMenuList .submenu {
  display: none;
  padding: 10px 0;
}

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

.mobileHeader .mobileMenuMask {
  background-color: rgba(61, 105, 51, 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;
}

.mobileHeader .mobileMenuMask.show {
  opacity: 1;
  pointer-events: auto;
}

.mobileHeader .mobileMenuFnc {
  align-items: center;
  display: flex;
  margin-bottom: 20px;
}

.mobileHeader .mobileMenuFnc .searchBox {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 5px;
  margin-right: 10px;
  border-bottom: 1px solid #fff;
}

.mobileHeader .mobileMenuFnc .searchBox input {
  background-color: transparent;
  border: none;
  margin-right: 50px;
  color: #fff;
}

.mobileHeader .mobileMenuFnc .searchBox input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.mobileHeader .mobileMenuFnc .searchBox input:focus {
  outline: none;
}

.mobileHeader .mobileMenuFnc .searchBox button {
  color: #fff;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1181px) {
  .mobileHeader .mobileMenuFnc .searchBox button:hover {
    color: #3d6933;
  }
}

.mobileHeader .mobileMenuFnc a {
  display: block;
  height: 20px;
  width: 20px;
  margin: 0 10px;
}

.mobileHeader .mobileMenuFnc svg {
  height: 20px;
  width: 20px;
  color: #fff;
  fill: #fff;
}

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

.mobileHeader .mobileLanguage {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.mobileHeader .mobileLanguage a {
  margin: 0 10px;
  color: #3d6933;
}

.modalBox {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 45px;
  background-color: #fff;
  padding: 45px;
  width: 100%;
  max-width: 900px;
  z-index: 101;
  transition: all 0.5s ease-in-out;
  display: none;
}

.modalBox.show {
  display: block;
}

.modalBox .btnBox {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.modalBox .btnBox .btn {
  padding: 5px 80px;
}

@media (max-width: 640px) {
  .modalBox {
    padding: 20px;
    width: calc(100% - 40px);
    max-width: none;
    border-radius: 0;
  }
}

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

.modalMask.show {
  opacity: 1;
  pointer-events: auto;
}

.sideBtns {
  position: fixed;
  right: 5%;
  bottom: 5%;
  z-index: 99;
}

@media (max-width: 640px) {
  .sideBtns {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 640px) {
  .sideBtns .apply {
    max-width: 120px;
  }
}

.sideBtns .socialList {
  transition: all 0.5s ease-in-out;
}

.sideBtns .socialList.open {
  opacity: 1;
  pointer-events: auto;
}

.sideBtns .socialList a {
  width: 42px;
  height: 42px;
  margin: 10px auto;
  display: block;
}

.sideBtns .sideSocial {
  transition: all 0.5s ease-in-out;
}

.sideBtns li {
  align-items: center;
  display: flex;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  margin: 10px 0;
  cursor: pointer;
}

@media (min-width: 1181px) {
  .sideBtns li:hover img {
    scale: 1.05;
  }
}

.sideBtns li a {
  align-items: center;
  display: flex;
  justify-content: center;
}

.sideBtns li.toTop {
  margin-top: 20px;
  background-color: transparent;
  opacity: 0;
  pointer-events: none;
}

.sideBtns li.show {
  opacity: 1;
  pointer-events: auto;
}

footer {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  background-color: #3c6934;
}

footer .contentBox {
  padding: 50px 0;
}

@media (max-width: 640px) {
  footer .contentBox {
    padding: 40px 0;
  }
}

footer .contentBox .wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 840px) {
  footer .contentBox .wrap {
    flex-direction: column;
  }
}

footer .contentBox .leftBox {
  flex-shrink: 0;
  display: grid;
  column-gap: 40px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "sitemap store"
    "join join"
    "social social";
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
}

@media (max-width: 640px) {
  footer .contentBox .leftBox {
    grid-template-columns: 1fr;
    grid-template-areas: "sitemap"
      "join"
      "store"
      "social";
  }
}

  footer .contentBox .leftBox .sitemap {
  list-style: none;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  grid-area: sitemap;
}

@media (max-width: 640px) {
  footer .contentBox .leftBox .sitemap {
    row-gap: 20px;
  }
}

footer .contentBox .leftBox .sitemap li a {
  color: #fff;
}

@media (min-width: 1181px) {
  footer .contentBox .leftBox .sitemap li:hover a {
    color: #ed7541;
  }
}

footer .contentBox .leftBox .join,
footer .contentBox .leftBox .store {
  color: #fff;
}

footer .contentBox .leftBox .join {
  grid-area: join;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

footer .contentBox .leftBox .join a {
  color: #fff;
}

@media (min-width: 1181px) {
  footer .contentBox .leftBox .join a:hover {
    color: #ed7541;
  }
}

footer .contentBox .leftBox .store {
  grid-area: store;
  display: flex;
  gap: 30px;
}

@media (max-width: 640px) {
  footer .contentBox .leftBox .store {
    margin-bottom: 20px;
  }
}

footer .contentBox .leftBox .store .valueBox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer .contentBox .leftBox .social {
  grid-area: social;
  display: flex;
  align-items: center;
  gap: 20px;
}

footer .contentBox .leftBox .social a {
  width: 30px;
  height: 30px;
  display: block;
}

@media (min-width: 1181px) {
  footer .contentBox .leftBox .social a:hover img {
    scale: 0.85;
  }
}

footer .contentBox .leftBox .social a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

footer .contentBox .rightBox {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  max-width: 510px;
}

@media (max-width: 1024px) {
  footer .contentBox .rightBox {
    max-width: 100%;
    align-items: center;
    margin-top: 40px;
  }
}

footer .contentBox .rightBox .logo {
  filter: brightness(0) invert(1);
  margin-bottom: 70px;
}

@media (max-width: 1560px) {
  footer .contentBox .rightBox .logo {
    max-width: 80px;
  }
}

@media (max-width: 840px) {
  footer .contentBox .rightBox .logo {
    margin-bottom: 30px;
  }
}

footer .contentBox .rightBox .copyright {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1.2px;
}

@media (max-width: 840px) {
  footer .contentBox .rightBox .copyright {
    align-items: center;
  }
}

.btnBox {
  align-items: center;
  display: flex;
}

.btnBox .btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ed7541;
}

@media (min-width: 1181px) {
  .btnBox .btn:hover {
    transform: translateX(10px);
  }
}

.btnBox .btn span {
  color: currentColor;
  font-size: 18px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 900;
  letter-spacing: 0px;
}

.btnBox .btn2 {
  color: #593f29;
}

@media (min-width: 1181px) {
  .btnBox .btn.btn2:hover {
    color: #ed7541;
  }
}


.bread {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin: 0 auto 50px;
  color: #3d6933;
  gap: 4px;
}

@media (max-width: 640px) {
  .bread{
    margin: 0 auto 20px;
     display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.bread li,
.bread a {
  font-size: 16px;
  color: #3d6933;
}

.bread a {
  transition: all 0.5s ease-in-out;
}

.bread a:has(img) {
  font-size: 0;
}

@media (min-width: 1181px) {
  .bread a:hover {
    color: #3d6933;
  }
}

.bread .divider {
  margin: 0 5px;
}

.breadBox {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.insBox {
  position: relative;
}

.insBanner {
  position: relative;
  margin-bottom: 100px;
  padding-top: 120px;
  height: 240px;
}

@media (max-width: 640px) {
  .insBanner {
    padding-top: 40px;
    margin-bottom: 40px;
  }
}

.insBanner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.insBanner .insTitleBox {
  background-image: url("../assets/images/titleBox-bg.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 190px;
  height: 190px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media (max-width: 640px) {
  .insBanner .insTitleBox {
    width: 146px;
    height: 160px;
  }
}

.insBanner .insTitleBox:before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background-image: url("../assets/images/ins_banner_deco.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  left: -250px;
  top: -150px;
  z-index: -1;
}

.insBanner .insTitleBox:after {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  background-image: url("../assets/images/titleBox-deco-about.png");
  left: 0px;
  top: 0px;
}

.insBanner .title {
  color: #3d6933;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 4.8px;
}

@media (max-width: 640px) {
  .insBanner .title {
    font-size: 20px;
    letter-spacing: 3.6px;
  }
}

.insBanner .subtitle {
  color: #ed7541;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

@media (max-width: 640px) {
  .insBanner .subtitle {
    font-size: 16px;
  }
}

.insContent {
  display: grid;
  grid-template-columns: 200px 1fr;
  column-gap: 80px;
  padding: 50px 0 220px;
  position: relative;
}

@media (max-width: 1536px) {
  .insContent {
    padding: 40px 0 200px;
    column-gap: 40px;
  }
}

@media (max-width: 1180px) {
  .insContent {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    padding: 40px 0 100px;
  }
}

@media (max-width: 640px) {
  .insContent {
    padding-top: 20px;
  }
}

.insContent.noSide {
  grid-template-columns: 100%;
}

@media (max-width: 640px) {
  .insContent .leftBox {
    padding-top: 40px;
  }
}

.blockTitleBox {
  text-align: center;
  background-color: #3d6933;
  position: relative;
}

.blockTitleBox.horizontal {
  display: flex;
  align-items: center;
  padding-left: 30px;
  height: 40px;
}

.blockTitleBox.horizontal .deco {
  width: 10px;
  height: 40px;
  background-color: #e06665;
  position: absolute;
  left: 0;
  top: 0;
}

.blockTitleBox.horizontal .blockTitle {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2.4px;
}

.viewBox {
  align-items: center;
  display: flex;
  color: #3d6933;
  font-size: 20px;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 700;
  margin: 20px 0;
  gap: 16px;
}

.viewBox svg {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.sideBox .titleBox {
  margin-left: 0;
  margin-right: auto;
}

.sideBox .titleBox .title {
  color: #3d6933;
  font-size: 24px;
  font-weight: 600;
  padding-left: 20px;
  letter-spacing: 2.4px;
  border-bottom: 2px dashed #3d6933;
  width: 100%;
  margin-bottom: 20px;
}

.sideBox .blockTitleBox {
  margin-top: 40px;
}

.sideBox .sideMenu {
  text-align: center;
}

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

.sideBox .sideMenu>li {
  color: #7b7b7b;
  font-size: 20px;
  padding: 5px 20px;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
}

.sideBox .sideMenu>li:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: url("../assets/images/small-logo.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: -40px;
  top: -5px;
  opacity: 0;
}

@media (max-width: 1180px) {
  .sideBox .sideMenu>li:before {
    left: 20px;
  }
}

.sideBox .sideMenu>li a {
  width: 100%;
  position: relative;
  color: currentColor;
  display: block;
  font-weight: 500;
  max-width: 90%;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}

@media (max-width: 1180px) {
  .sideBox .sideMenu>li a {
    max-width: 100%;
  }
}

@media (min-width: 1181px) {
  .sideBox .sideMenu>li a:hover {
    color: #3d6933;
  }
}

.sideBox .sideMenu>li.hasChild {
  background-color: #fff;
  color: #96775c;
  border-radius: 24px;
  text-align: left;
  font-weight: 700;
}

.sideBox .sideMenu>li.hasChild>a:before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #b5b5b5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "+";
  right: -12%;
  top: 50%;
  transform: translateY(-50%);
}

.sideBox .sideMenu>li.hasChild>a.open:before {
  content: "";
  position: absolute;
  content: "-";
}

.sideBox .sideMenu>li.current {
  color: #3d6933;
}

.sideBox .sideMenu>li.current:before {
  content: "";
  position: absolute;
  opacity: 1;
}

.sideBox .sideMenu .child {
  display: none;
  padding: 10px;
}

.sideBox .sideMenu .child a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  padding: 8px 30px;
  margin-bottom: 5px;
  width: fit-content;
  border-radius: 24px;
  position: relative;
  margin-left: auto;
  color: #3d6933;
  line-height: 1;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1181px) {
  .sideBox .sideMenu .child a:hover {
    background-color: #3d6933;
    color: #fff;
  }
}

.sideBox .sideMenu .child a.current {
  background-color: #3d6933;
  color: #fff;
}

.sideBox .sideMenuBtn {
  margin: 0 0 30px;
}

@media (min-width: 1181px) {
  .sideBox .sideMenuBtn {
    display: none;
  }
}

.sideBox .sideMenuBtn button {
  color: #fff;
  cursor: pointer;
  background-color: #3d6933;
  border: 2px solid #3d6933;
  padding: 7.5px 0;
}

@media (max-width: 1180px) {
  .sideBox .sideMenuBtn button {
    width: 100%;
  }
}

@media (max-width: 1180px) {
  .sideBox .sideMenuBtn+.sideMenu {
    margin-top: 30px;
  }
}

.sideBox .sideInputBox {
  margin-top: 20px;
  display: flex;
  padding: 5px 15px;
  background-color: #edebeb;
  justify-content: space-between;
}

.sideBox .sideInputBox button {
  background-color: transparent;
  border: none;
}

.sideBox .sideInput {
  border: none;
  background-color: transparent;
  display: flex;
  padding: 5px 15px;
  color: #ed7541;
  width: auto;
}

@media (max-width: 1180px) {
  .sideBox .sideInput {
    width: 100%;
  }
}

.sideBox .sideInput i {
  border-right: 1px solid #ed7541;
  padding-right: 10px;
}

.sideBox .sideInput input {
  border: none;
  padding: 0 5px;
  color: #ed7541;
  font-size: 14px;
  width: fit-content;
  max-width: 100%;
  letter-spacing: 1.68px;
}

.sideBox .sideInput input::-webkit-input-placeholder {
  color: #ed7541;
}

.sideBox .sideInput input:-moz-placeholder {
  color: #ed7541;
}

.sideBox .sideInput input::-moz-placeholder {
  color: #ed7541;
}

.sideBox .sideInput input:-ms-input-placeholder {
  color: #ed7541;
}

.sideBox .sideInput input:focus {
  outline: none;
}

.sideBox .sideFilter {
  border-bottom: 1px solid #3d6933;
  display: flex;
  padding: 5px 15px;
  color: #3d6933;
  margin-top: 30px;
  width: fit-content;
}

@media (max-width: 1024px) {
  .sideBox .sideFilter {
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
  }
}

.sideBox .sideFilter select {
  border: none;
  padding: 0 5px;
  color: #3d6933;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.68px;
}

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

.textEditor {
  color: #6e6e6e;
}

.textEditor p {
  font-size: 18px;
  line-height: calc(32 / 18);
  letter-spacing: 1.6px;
}

.textEditor p strong {
  font-weight: 500;
  font-size: 28px;
}

.textEditor img {
  height: auto;
  max-width: 100%;
}

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

.tabItem {
  border-radius: 20px;
  padding: 15px 30px;
  background-color: #ed7541;
  color: #fff;
  width: 100%;
}

.pageTitle {
  color: #ed7541;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pageList {
  align-items: baseline;
  display: flex;
  justify-content: flex-end;
  margin-top: 100px;
  gap: 5px;
}

@media (max-width: 640px) {
  .pageList {
    justify-content: center;
  }
}

.pageList li {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 0.5s ease-in-out;
  border-radius: 50%;
  font-weight: 600;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  background-color: #dcc9ac;
  color: #314d44;
  line-height: 1;
}

.pageList li a {
  color: currentColor;
  z-index: 2;
}

.pageList li a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.pageList li.current {
  background-color: #314d44;
}

.pageList li.current a {
  color: #ed7541;
}

@media (min-width: 1181px) {
  .pageList li:hover {
    background-color: #314d44;
  }

  .pageList li:hover a {
    color: #ed7541;
  }
}

.pageList a {
  font-size: 20px;
  font-weight: 700;
}

.formItem {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding: 15px 10px;
  border-bottom: 1px solid #c8c8c8;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 640px) {
  .formItem {
    padding: 10px;
  }
}

.formItem.textarea {
  align-items: flex-start;
}

.formItem label {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  margin-right: 30px;
  letter-spacing: 1.44px;
}

.formItem select {
  padding: 5px 30px;
  background-color: #f7f7f7;
  border: none;
  border-bottom: 1px solid #c8c8c8;
}

.formItem input[type="radio"] {
  width: auto;
  flex: initial;
  margin-right: 10px;
}

.formItem input[type="radio"]+label {
  margin-right: 10px;
}

.formItem input,
.formItem textarea {
  font-family: 'fgdc';
  font-size: 18px;
  letter-spacing: 1.44px;
  font-weight: 700;
  background-color: transparent;
  border: none;
  width: max-content;
  flex: 1;
  padding: 0 30px;
}

.formItem input:focus,
.formItem textarea:focus {
  outline: none;
}

.formItem textarea {
  border: 1px solid #c8c8c8;
}

.formItem2 {
  background-color: #f8f8f8;
  border-bottom: none;
  margin-bottom: 15px;
}

.formRadioBox {
  display: flex;
}

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

.formRadio.selected {
  background-color: #3d6933;
  color: #fff;
}

.rwdTable {
  max-width: 100%;
  overflow-x: scroll;
}

.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 tbody {
  padding: 10px 15px;
}

.table select {
  padding: 2.5px 10px;
  border: none;
  border-bottom: 1px solid #386934;
}

.table .productImg {
  height: 150px;
  width: 150px;
  object-fit: contain;
}

.table .iconBtn {
  cursor: pointer;
  color: #9c9c9c;
  border: none;
  background-color: transparent;
  margin-left: 5px;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 1181px) {
  .table .iconBtn:hover {
    color: #3d6933;
  }
}

.table.table2 {
  border-collapse: separate;
  border-spacing: 0 10px;
}

.table.table2 thead {
  background-color: #ed7541;
}

.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 {
  padding: 20px 0;
  margin-bottom: 40px;
}

@media (max-width: 640px) {
  .orderSteps {
    display: none;
  }
}

.orderSteps .topBox {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.orderSteps .orderStep {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 70px;
  border: 1px solid #7b7b7b;
  padding: 35px 0;
  position: relative;
}

.orderSteps .orderStep:after {
  content: "";
  position: absolute;
  height: 40px;
  width: 40px;
  background-image: url("../assets/images/stepArrow.png");
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.orderSteps .orderStep:last-child:after {
  content: "";
  position: absolute;
  display: none;
}

.orderSteps .orderStep.current {
  color: #fff;
  background-color: #fd8685;
  border: 5px solid #e46a69;
}

.orderSteps .orderStep.current .stepIcon img {
  filter: brightness(0) invert(1);
}

.orderSteps .orderStep.current .stepTxt {
  color: #fff;
}

.orderSteps .orderStep .stepIcon {
  margin-bottom: 20px;
}

.orderSteps .orderStep .stepIcon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.orderSteps .orderStep .stepTxt {
  color: #7b7b7b;
  font-weight: 500;
  letter-spacing: 1.92px;
}

.albumBox {
  display: none;
}

.bottomSocialBox {
  margin-top: 150px;
  position: relative;
}

@media (max-width: 768px) {
  .bottomSocialBox {
    margin-top: 50px;
  }
}

.bottomSocialBox .deco {
  position: absolute;
  left: -180px;
  bottom: -80px;
}

.bottomSocialBox:before {
  content: "";
  position: absolute;
  width: 140px;
  height: 160px;
  background-image: url("../assets/images/deco_bottom_social.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  right: -90px;
  bottom: -50px;
}

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

.bottomSocialBox:after {
  content: "";
  position: absolute;
  width: calc(100% + 140px);
  left: -70px;
  height: calc(85% + 25px);
  top: 65px;
  background-color: #eef6ec;
  border-radius: 60px;
  z-index: -1;
}

.bottomSocialBox .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .bottomSocialBox .wrap {
    grid-template-columns: 1fr;
  }
}

.bottomSocialBox .title {
  color: #386934;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1.08px;
  margin-bottom: 40px;
  position: relative;
}

.bottomSocialBox .title:after {
  content: "";
  position: absolute;
  width: 75px;
  height: 75px;
  background-image: url("../assets/images/deco_bottom_social_title.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  left: -45px;
  top: -20px;
}

.bottomSocialBox .item {
  display: flex;
  gap: 20px;
}

@media (max-width: 1180px) {
  .bottomSocialBox .item {
    flex-direction: column;
  }
}

.bottomSocialBox .account {
  color: #386934;
  font-size: 15px;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.45px;
}

.bottomSocialBox .text {
  letter-spacing: 0.96px;
  line-height: 1.5625;
  font-weight: 500;
  color: #386934;
}

.bottomSocialBox .btnBox {
  margin-top: 20px;
  display: flex;
  gap: 6px;
}

.bottomSocialBox .btnBox .btn {
  cursor: pointer;
}