@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
[data-sal]:not(.sal-animate) {
  opacity: 0;
}

[data-sal].sal-animate {
  opacity: 1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

h2 {
  font-weight: 500;
}

h3 {
  font-weight: 500;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans TC", sans-serif;
}

main {
  margin-top: 70px;
}
@media (min-width: 768px) {
  main {
    margin-top: 90px;
  }
}

.relative {
  position: relative;
}

.showInPC {
  display: block !important;
}

.showInSP {
  display: none !important;
}

@media (max-width: 768px) {
  .showInPC {
    display: none !important;
  }
  .showInSP {
    display: block !important;
  }
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.innerWrap {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
}

.header {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
  background-color: #e8e8e8;
  height: clamp(70px, 60px + 3dvw, 110px);
}
.header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 70px;
}
.header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
}
.header .header-logo a {
  display: block;
}
.header .header-logo img {
  max-height: 50px;
}
@media (max-width: 480px) {
  .header .header-logo img {
    max-height: 35px;
  }
}
.header .dropdown-menu {
  background-color: #e8e8e8;
}
.header.scrolled .dropdown-menu {
  top: 100%;
}

.header-nav {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
.header-nav > ul {
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
  height: inherit;
  align-items: center;
}
.header-nav > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  height: inherit;
}
.header-nav a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s;
  letter-spacing: 0.15rem;
}
.header-nav a:hover {
  color: rgb(183, 183, 183);
}
.header-nav a:hover::after {
  width: 100%;
}
.header-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: rgb(183, 183, 183);
  transition: width 0.3s ease;
}
.header-nav .dropdown-trigger {
  cursor: pointer;
}
.header-nav .dropdown-trigger:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: all 0.3s ease;
}
.header-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 100%;
  transform: translateX(-50%) translateY(-10px);
  opacity: 0;
  visibility: hidden;
  background-color: #e8e8e8;
  border-radius: 0 0 4px 4px;
  z-index: 1000;
  list-style: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}
.header-nav .dropdown-menu li {
  height: auto;
  display: block;
}
.header-nav .dropdown-menu a {
  display: block;
  padding: 1rem 2rem;
  text-align: center;
  white-space: nowrap;
  color: #333;
}
.header-nav .dropdown-menu a:hover {
  color: rgb(183, 183, 183);
}
.header-nav .dropdown-menu a::after {
  display: none;
}

.sp-menu-toggle {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1100;
}
.sp-menu-toggle span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}
.sp-menu-toggle span:nth-child(1) {
  top: 0;
}
.sp-menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.sp-menu-toggle span:nth-child(3) {
  bottom: 0;
}
@media (max-width: 768px) {
  .sp-menu-toggle {
    display: block;
  }
}

.sp-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
.sp-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.sp-nav-overlay .sp-nav-logo img {
  max-height: 40px;
  margin-bottom: 30px;
}
.sp-nav-overlay img.spLogo {
  width: 100%;
  max-width: 200px;
  margin: 2rem 0;
}
.sp-nav-overlay .sp-nav-menu {
  width: 100%;
}
.sp-nav-overlay .sp-nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sp-nav-overlay .sp-nav-menu li {
  width: 80%;
  border-bottom: 1px solid #eee;
}
.sp-nav-overlay .sp-nav-menu a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  padding: 20px 0;
  text-align: left;
  margin: auto;
  max-width: 200px;
}
.sp-nav-overlay .sp-nav-close {
  position: absolute;
  top: 25px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.sp-nav-overlay .sp-nav-close::before,
.sp-nav-overlay .sp-nav-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
}
.sp-nav-overlay .sp-nav-close::before {
  transform: rotate(45deg);
}
.sp-nav-overlay .sp-nav-close::after {
  transform: rotate(-45deg);
}

.sp-dropdown-trigger.is-open .icon-minus {
  display: block;
}
.sp-dropdown-trigger.is-open .icon-plus {
  display: none;
}
.sp-dropdown-trigger.is-open .sp-dropdown-box {
  display: block;
}
.sp-dropdown-trigger:not(.is-open) .sp-dropdown-box {
  display: none;
}
.sp-dropdown-trigger .sp-dropdown-head {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 20px 0;
}
.sp-dropdown-trigger .sp-dropdown-head a {
  padding: 0;
  pointer-events: none;
}
.sp-dropdown-trigger .drop-down-icons {
  position: absolute;
  right: 10px;
  top: 0;
  transform: translateY(100%);
  width: 24px;
  height: 24px;
  color: #999;
}
.sp-dropdown-trigger .icon-minus {
  display: none;
}
.sp-dropdown-trigger .sp-dropdown-box {
  display: none;
  background-color: #f9f9f9;
  width: 100%;
}
.sp-dropdown-trigger .sp-dropdown-box li {
  margin: 0 auto;
}
.sp-dropdown-trigger .sp-dropdown-box .sp-dropdown-item {
  font-size: 16px;
  color: #666;
  padding: 15px 0;
  text-align: center;
  display: block;
}
.sp-dropdown-trigger .sp-dropdown-box a {
  padding: 0;
  border-bottom: none;
}
.sp-dropdown-trigger .sp-dropdown-box a:last-child .sp-dropdown-item {
  padding-bottom: 20px;
}

md-footer-b {
  display: block;
}
md-footer-b f-contact,
md-footer-b f-copyright {
  display: none;
}
md-footer-b .footer_area {
  margin-top: 10rem;
  background-color: #7c99a8;
  padding: 60px 0;
  color: #333;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.15rem;
}
md-footer-b .footer_area .innerWrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  md-footer-b .footer_area .innerWrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
}
md-footer-b .footer_logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
md-footer-b .footer_logo img {
  max-width: 200px;
  margin-right: 10px;
  width: auto;
}
md-footer-b .footer_logo span {
  font-size: 18px;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  md-footer-b .footer_logo {
    justify-content: center;
  }
}
md-footer-b .contact_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
md-footer-b .contact_list li {
  margin-bottom: 5px;
  letter-spacing: 1px;
}
md-footer-b .footer_right {
  text-align: right;
  letter-spacing: 2px;
}
md-footer-b .footer_right p {
  margin: 0;
}
@media (max-width: 768px) {
  md-footer-b .footer_right {
    text-align: center;
  }
}

blockquote {
  display: none;
}

#ecf_header_section {
  display: none !important;
}

.l-container {
  padding: 0 !important;
  margin: 0 !important;
}

.l-container__row {
  margin: 0 !important;
}

.p-page_content {
  padding: 0 !important;
}

.p-page_content__inner {
  max-width: 100% !important;
}

#ecf_footer_section {
  display: none !important;
}

.p-page_content__inner a {
  text-decoration: none;
}

.u-text--body {
  font-size: 16px !important;
}

.p-page_content__inner h2.qaHead {
  font-size: 24px;
  font-weight: 800;
}

.p-page_content__inner p {
  margin: 16px 0;
}

/*全域設定*/
body {
  margin: 0;
  font-size: 16px;
  letter-spacing: 4px;
  line-height: 1.8;
  font-family: "Noto Sans TC", serif;
  font-optical-sizing: auto;
  font-size-adjust: 0.5;
  color: #333;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  width: 100%;
  display: block;
}

@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}
/*選單*/
.headerBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: 0.5s;
}

.headerBg.active {
  background-color: rgba(255, 255, 255, 0.7);
  transition: 0.5s;
}

.headerBg .headerArea {
  width: calc(100% - 40px);
  max-width: 1200px;
  padding: 28px 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.headerBg .logoBox .logo {
  width: 118px;
  margin: 0;
}

.headerBg .menuBox ul {
  display: flex;
  gap: 40px;
}

.headerBg .menuBox ul li {
  list-style-type: none;
}

.headerBg .menuBox ul li a:hover {
  opacity: 0.7;
}

.headerBg .spMenuBox {
  display: none;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
}

.headerBg .spMenuBox span {
  width: 30px;
  height: 1px;
  background-color: #333;
  display: grid;
}

.headerBg .spMenuBox span:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #333;
  transform: translate(0, 7px);
}

.headerBg .spMenuBox span:after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #333;
  transform: translate(0, -7px);
}

.spMenuPopupBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transform: translate(-40px, 0);
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
}

.spMenuPopupBg .spMenuCloseBtn {
  position: absolute;
  top: 10px;
  right: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spMenuPopupBg .spMenuCloseBtn span {
  display: grid;
}

.spMenuPopupBg .spMenuCloseBtn span:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #333;
  transform: rotate(-45deg);
}

.spMenuPopupBg .spMenuCloseBtn span:after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #333;
  transform: rotate(45deg);
}

.spMenuPopupBg .spMenuBg {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translate(0, -50%);
}

.spMenuPopupBg .spMenuBg ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spMenuPopupBg .spMenuBg ul li {
  list-style-type: none;
}

.spMenuPopupBg .spMenuBg ul li a {
  font-size: 18px;
}

.spMenuPopupBg.active {
  display: block;
  transform: translate(0, 0);
  transition: 0.5s;
  opacity: 1;
  background-color: transparent;
  background-color: #ffe541;
}

.spMenuPopupBg.active {
  pointer-events: initial;
}

@media (max-width: 1000px) {
  .headerBg .menuBox {
    display: none;
  }
  .headerBg .spMenuBox {
    display: flex;
  }
}
@media (max-width: 767px) {
  .headerBg .headerArea {
    padding: 30px 0;
  }
  .headerBg .logoBox .logo {
    width: 90px;
  }
  .spMenuPopupBg .spMenuCloseBtn {
    top: 0;
  }
  .spMenuPopupBg .spMenuBg {
    top: 10%;
    transform: translate(0, 0);
  }
}
/*footer*/
.footerBg {
  background-color: #ffe541;
  padding: 2rem 0 1rem 0;
}

.footerBg .footerArea {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.footerBg .leftItem .logo {
  margin: 0 0 2rem 0;
  width: 178px;
}

.footerBg .leftItem ul {
  padding: 0;
}

.footerBg .leftItem ul li {
  list-style-type: none;
}

.footerBg .rightItem {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.footerBg .rightItem ul {
  padding: 0;
}

.footerBg .rightItem ul li {
  list-style-type: none;
  text-align: right;
}

@media (max-width: 1000px) {
  .footerBg .footerArea {
    flex-direction: column;
  }
  .footerBg .rightItem {
    align-items: flex-start;
  }
  .footerBg .rightItem ul li {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .footerBg .leftItem ul li {
    font-size: 13px;
  }
  .footerBg .rightItem ul li {
    font-size: 13px;
  }
}
/*content共同部分*/
.contentBg {
  position: relative;
  z-index: 1;
}

.contentBg .contentArea {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
}

.contentBg .allHead {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  margin: 20px 0;
}

.contentBg .allHead:before {
  content: "";
  height: 1px;
  width: 35px;
  background-color: #ccc;
  margin-right: 20px;
}

.contentBg .allBtn {
  border: 1px solid #ffe541;
  border-radius: 100px;
  width: 210px;
  padding: 12px 17px;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
  transition: 0.4s;
  background-color: rgba(255, 255, 255, 0.8);
}

.contentBg .allBtn:hover {
  background-color: #ffe541;
  transition: 0.4s;
}

.contentBg .bigHead {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 1000px;
  width: 100%;
  margin: 6rem auto;
}

.contentBg .bigHead:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #6a6a6a;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.contentBg .bigHead .text {
  background-color: #fff;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.4;
  font-size: 36px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .contentBg .bigHead {
    margin: 0 0;
  }
  .contentBg .bigHead .text {
    font-size: 30px;
  }
}
/*content內容專屬設定*/
.contentBg .effects {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.contentBg .effects01 {
  width: 311px;
  top: 0;
  right: 0;
}

.contentBg .effects02 {
  width: 274px;
  bottom: 28%;
  left: 0;
}

.contentBg .effects03 {
  width: 265px;
  bottom: 2%;
  right: 0;
}

.conceptBg .conceptBox {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 10rem 0;
}

.conceptBg .item {
  flex: 1 1;
}

.conceptBg .item.positionSet {
  position: relative;
  display: flex;
  justify-content: center;
}

.conceptBg .pic {
  width: 485px;
}

.conceptBg .product {
  width: 69px;
  position: absolute;
  right: 90px;
  bottom: -40px;
}

@media (max-width: 1000px) {
  .conceptBg .product {
    right: -2%;
  }
}
@media (max-width: 767px) {
  .conceptBg .product {
    width: 16%;
  }
}
.conceptBg .text {
  font-size: 18px;
}

.conceptBg .videoBox {
  width: 328px;
  height: 533px;
  overflow: hidden;
  border-radius: 16px;
  border: 10px solid #f4f5f9;
}

.conceptBg .videoBox video {
  width: 102%;
}

.goodsBg .goodsBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 10rem 0;
  gap: 40px;
}

.goodsBg .pic {
  max-width: 50vw;
}

.goodsItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
}

.goodsBg .text {
  text-align: center;
}

.goodsBg .title {
  font-size: 30px;
  text-align: center;
}

.salesBg .salesBox {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 10rem 0;
  flex-wrap: wrap;
}

.salesBg .item {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.salesBg .title {
  font-size: 30px;
  text-align: center;
  margin: 0 0 16px 0;
}

.faqBg {
  background: linear-gradient(
    to right,
    rgb(244, 245, 249) 0% 46%,
    rgba(244, 245, 249, 0) 53%
  );
  display: flex;
  padding: 2rem 6rem;
  box-sizing: border-box;
  margin: 0 0 10rem 0;
}

.faqBg .item {
  flex: 1 1;
}

.faqBg .item.itemInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faqBg .item .text {
  margin: 0 0 40px 0;
}

.faqBg .pic {
  width: 485px;
}

.faqBg .spLogo {
  width: 80%;
  margin: 0 auto;
  display: none;
}

.salesBox .item {
  flex: 1;
  height: 300px;
  justify-content: flex-end;
}

.salesBox .pic {
  display: flex;
  align-items: center;
}

.salesBox .momo-logo img {
  padding: 3rem 0;
  scale: 1.5;
}

.salesBox .cosmed-logo img {
  scale: 0.75;
}

/* 260106 By Wilson */
@media (max-width: 1000px) {
  .conceptBg .pic {
    width: 100%;
  }
  .faqBg .pic {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contentBg .effects01 {
    display: none;
  }
  .contentBg .effects {
    display: none;
  }
  .conceptBg .conceptBox {
    flex-direction: column;
    margin: 1rem 0 3rem 0;
  }
  .conceptBg .pic {
    width: 80%;
    margin: 0 auto;
  }
  .conceptBg .text {
    text-align: center;
    font-size: 16px;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .goodsBg .goodsBox {
    margin: 1rem 0 3rem 0;
  }
  .goodsBg .pic {
    width: 100%;
    max-width: 90vw;
  }
  .goodsBg .title {
    margin: 0 0 20px 0;
  }
  .salesBg .salesBox {
    flex-direction: column;
    margin: 1rem 0 3rem 0;
  }
  .salesBg .title {
    font-size: 16px;
  }
  .salesBg .salesBox .pic {
    width: 80%;
  }
  .faqBg {
    background: transparent;
    padding: 0;
  }
  .faqBg .item:last-child {
    display: none;
  }
  .faqBg .spLogo {
    display: block;
  }
  .faqBg .item .text {
    text-align: center;
  }
  .contentBg .faqBg .allBtn {
    margin: 0 auto;
  }
  .goodsBg .goodsBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 10rem 0;
  }
}
/*首頁banner區域*/
/*商品介紹區域*/
.aboutBg {
  margin: 10rem 0 0 0;
}

.aboutBg .aboutArea {
  max-width: calc(50% + 615px);
  margin-left: auto;
}

.aboutBg .aboutBox {
  display: flex;
  flex-direction: row-reverse;
}

.aboutBg .allHead {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
}

.aboutBg .allHead:before {
  content: "";
  height: 1px;
  width: 35px;
  background-color: #ccc;
  margin-right: 20px;
}

.aboutBg .aboutBox .itemInfo {
  padding: 0 100px 0 100px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aboutBg .aboutBox .itemInfo h3 {
  margin: 20px 0;
  font-weight: 800;
}

.aboutBg .aboutBox .itemPic img {
  transform: translate(0, -60px);
}

.aboutBg2 {
  position: relative;
  margin: 0 0 10rem 0;
}

.aboutBg2 .aboutArea2 {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .aboutBg .aboutBox .itemInfo {
    padding: 0 20px 0 20px;
  }
}
@media (max-width: 767px) {
  .aboutBg {
    margin: 4rem 0 0 0;
  }
  .aboutBg .aboutBox {
    flex-direction: column;
  }
  .aboutBg .aboutBox .itemPic img {
    transform: translate(0, 0px);
  }
  .aboutBg2 {
    margin: 0 0 2rem 0;
  }
}
.featureBg {
  display: flex;
  flex-direction: row-reverse;
}

.featureBg .item {
  flex: 1 1;
}

.featureBg .item.itemInfo {
  padding: 0 100px 0 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featureBg .item.itemInfo h3 {
  margin: 20px 0;
  font-weight: 800;
}

@media (max-width: 1000px) {
  .featureBg .item.itemInfo {
    padding: 0 20px 0 0;
  }
}
@media (max-width: 767px) {
  .featureBg {
    flex-direction: column;
    margin: 4rem 0;
  }
}
.pointBg {
  margin: 10rem auto;
}

.pointBg .title {
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.pointBg .title .pic {
  max-width: 60px;
}

.pointBg .title .text {
  font-size: 20px;
  margin: 0 0 0 20px;
}

.pointBg .contentBox {
  margin: 40px 0 80px 0;
}

.pointBg .contentItemBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 40px auto 80px auto;
}

.pointBg .contentItemBox .item.paddingSet {
  width: 60%;
}

.pointBg .pointPic01 {
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .pointBg {
    margin: 4rem 0;
  }
  .pointBg .pointPic01 {
    width: 100%;
  }
  .pointBg .contentItemBox {
    flex-direction: column-reverse;
  }
  .pointBg .contentItemBox .item.paddingSet {
    width: 100%;
  }
}
.productBg {
  margin: 10rem auto;
}

.productBox {
  display: flex;
  margin: 0 0 80px 0;
}

.productBox .itemPic {
  flex: 0 0 540px;
  position: relative;
  margin-right: 40px;
}

.productBox .itemPic .pic {
  padding-left: 43px;
  padding-bottom: 49px;
  position: relative;
}

.productBox .itemPic .pic img {
  width: 540px;
}

.productBox.product-yellow .itemPic .pic img {
  border: 1px solid #ffe541;
}

.productBox.product-gray .itemPic .pic img {
  border: 1px solid #bcbcbf;
}

.productBox.product-blackOrg .itemPic .pic img {
  border: 1px solid #ee7500;
}

.productBox .itemPic .pic:before {
  content: "";
  top: 49px;
  bottom: 0;
  left: 0;
  right: 43px;
  position: absolute;
  z-index: -1;
}

.productBox.product-yellow .itemPic .pic:before {
  background-color: #ffe541;
}

.productBox.product-gray .itemPic .pic:before {
  background-color: #bcbcbf;
}

.productBox.product-blackOrg .itemPic .pic:before {
  background-color: #ee7500;
}

.productBox .itemInfo .head {
  font-size: 26px;
  line-height: 1.4;
  margin: 0 0 10px 0;
}

.productBox .itemInfo .title {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0;
}

.productBox .itemInfo .list {
  padding: 0;
}

.productBox .itemInfo .list li {
  list-style-type: none;
  position: relative;
  display: flex;
  margin-bottom: 8px;
}

.productBox .itemInfo .list li p {
  margin: 0;
}

.productBox .itemInfo .list li .small {
  font-size: 12px;
  letter-spacing: 0;
  margin: 0 0 0 -2px;
}

.productBox .itemInfo .list li:before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  margin-top: 8px;
  margin-right: 8px;
}

.productBox.product-yellow .itemInfo .list li:before {
  background-color: #ffe541;
}

.productBox.product-gray .itemInfo .list li:before {
  background-color: #bcbcbf;
}

.productBox.product-blackOrg .itemInfo .list li:before {
  background-color: #ee7500;
}

.productBox .itemInfo .note {
  font-size: 14px;
  line-height: 1.6;
  margin: 40px 0 0 0;
}

.productBox .itemInfo .btnBox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0 0 0;
}

.productBox .itemInfo .btnBox a {
  border: 1px solid #bcbcbc;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  border-radius: 100px;
  padding: 3px 30px;
  margin: 0 4px;
  flex: 1 1;
  line-height: 1.4;
}

.productBox .itemInfo .btnBox a img {
  width: 68px;
  margin: 0 6px 0 0;
}

@media (max-width: 1080px) {
  .productBox .itemPic {
    flex: 0 0 480px;
  }
  .productBox .itemPic .pic img {
    width: 480px;
  }
}
@media (max-width: 1000px) {
  .productBox {
    flex-direction: column;
  }
  .productBox .itemPic {
    margin: 0 auto;
    width: 100%;
  }
  .productBox .itemPic .pic {
    transform: scale(0.85);
  }
  .productBox .itemPic .pic img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .productBg {
    margin: 4rem 0;
  }
  .productBox .itemPic .pic {
    transform: scale(1);
    margin: 0 0 20px 0;
  }
  .productBox .itemPic {
    flex: 0 0;
  }
  .productBox .itemInfo .btnBox {
    flex-direction: column;
  }
  .productBox .itemInfo .btnBox a {
    margin: 0 0 12px 0;
    width: 80%;
    padding: 9px 30px;
  }
}
.useBg {
  margin: 80px 0;
}

.useBg .useBox {
  display: flex;
  margin: 0 0 40px 0;
}

.useBg .useBox .item {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
}

.useBg .useBox .item.pic {
  justify-content: center;
  padding-left: 40px;
  box-sizing: border-box;
}

.useBg .useBox .item.text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.useBg .useBox .item.text span {
  font-size: 12px;
  margin: 18px 0 0 0;
}

.useBg .useBox .item img {
  max-width: 321px;
}

@media (max-width: 767px) {
  .useBg .useBox .item.pic {
    padding-left: 0;
  }
}
.qaHead {
  text-align: center;
  margin: 200px 0 40px 0;
}

.qaBg {
  margin: 0 0 10rem 0;
}

.qaBox {
  max-width: 1000px;
  margin: 0 auto;
  border-bottom: 1px solid #d8dddf;
  padding: 20px 20px;
  box-sizing: border-box;
  cursor: pointer;
}

.qaBox:first-child {
  border-top: 1px solid #d8dddf;
}

.qaBox dt {
  display: flex;
  position: relative;
}

.qaBox dt span {
  flex: 0 0 30px;
  font-size: 20px;
}

.qaBox dt p {
  flex: 1 1;
  margin: 4px 0 0 0;
  transition: 0.4s;
  text-align: justify;
}

.qaBox:hover dt p {
  opacity: 0.6;
  transition: 0.4s;
}

.qaBox dt .icon {
  position: absolute;
  top: 8px;
  right: 0;
}

.qaBox dt .plus {
  opacity: 1;
  transition: 0.5s;
}

.qaBox.active dt .plus {
  opacity: 0;
  transition: 0.5s;
}

.qaBox dt .minus {
  opacity: 0;
  transition: 0.5s;
}

.qaBox.active dt .minus {
  opacity: 1;
  transition: 0.5s;
}

.qaBox dd {
  margin: 0;
  transition: 1s;
  overflow: hidden;
  display: flex;
  height: 0;
  opacity: 0;
}

.qaBox.active dd {
  transition: 1s;
  height: auto;
  opacity: 1;
  padding: 20px 0 0 0;
}

.qaBox dd span {
  flex: 0 0 30px;
  font-size: 20px;
}

.qaBox dd p {
  flex: 1 1;
  margin: 4px 0 0 0;
  text-align: justify;
}

@media (max-width: 767px) {
  .qaBox {
    padding: 20px 0;
  }
  .qaBox dt p {
    margin: 4px 36px 0 0;
  }
  .qaBox dd p {
    margin: 4px 36px 0 0;
  }
}
.mv {
  width: 100%;
  height: 100vh;
}

.mvSwiper {
  height: 100vh;
}

.swiper-slide {
  width: 100%;
  height: auto;
}

.swiper-slide img {
  width: 100%;
  height: auto;
}

.award {
  width: 100%;
}

.award-img {
  width: 100%;
  height: 100%;
}

@media (min-width: 767px) {
  .mv {
    height: 46.9117647059vw;
  }
}
@media (max-width: 767px) {
  .mvSwiper {
    height: 88vh;
  }
  .swiper-slide img {
    height: 88vh;
    width: auto;
  }
  .award-img {
    display: flex;
    justify-content: center;
  }
}
/* 260112 By Wilson */
.bannerArea img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100dvw;
}

.bannerBg {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bannerBg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.mvSwiper {
  height: auto;
}

@media (max-width: 767px) {
  .mvSwiper {
    height: auto;
  }
  .swiper-slide img {
    height: auto;
  }
}
.goodsItem {
  height: 600px;
  justify-content: end;
}
.goodsItem:last-child img {
  padding-bottom: 5%;
}

.goodsItem img {
  max-height: 400px;
  width: auto;
  margin: auto;
}

.goodsBg .goodsBox {
  justify-content: space-around;
  margin: 2rem 0;
}
.goodsBg .title {
  margin: 0.5rem 0 1.5rem 0;
}
.goodsBg .text {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .goodsBg .text {
    margin: 1.5rem 0;
    font-size: 1rem;
    letter-spacing: 2.5px;
  }
}

.salesBg .salesBox {
  margin: 5rem 0 15rem 0;
}
.salesBg .title {
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .goodsBg .goodsBox,
  .salesBg .salesBox {
    margin: 3rem 0 9rem 0;
  }
  .goodsBg .goodsBox {
    row-gap: 10rem;
  }
}
.salesBox .item .pic {
  width: 350px;
  height: 100px;
  scale: 1;
  padding: 0;
}

@media (max-width: 767px) {
  .salesBox .item .pic {
    width: 280px;
  }
}
.pic.shopee-logo img,
.momo img {
  padding: 1rem 2rem;
}

.salesBox {
  row-gap: 5rem;
}

.salesBox .item {
  justify-content: flex-start;
}

.contentBg .allHead {
  font-size: 1.8rem;
  margin: 15rem 0 0 0;
  justify-content: center;
}
.contentBg .allHead::before {
  display: none;
}

@media (max-width: 767px) {
  .contentBg .allHead {
    margin: 8rem 0 0 0;
    font-size: 1.5rem;
  }
}
.faqBg .item:not(.itemInfo) {
  justify-content: center;
  align-items: center;
  display: flex;
}
@media (max-width: 767px) {
  .faqBg .item:not(.itemInfo) {
    display: none;
  }
}
.faqBg .item:not(.itemInfo) img {
  width: 80%;
  max-width: 300px;
  margin: auto;
}

.faqBg {
  margin: 5rem 0 15rem 0;
}
@media (max-width: 767px) {
  .faqBg {
    margin: 3rem 0 9rem 0;
  }
}
.faqBg h2.allHead::before {
  content: none;
}
@media (min-width: 1024px) {
  .faqBg h2.allHead::before {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: #cbcbcb;
  }
}
.faqBg h2.allHead {
  margin: 1rem 0;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .faqBg h2.allHead {
    justify-content: center;
  }
}
.faqBg .spLogo {
  width: 300px;
  margin: 3rem auto;
}

.contentBg .allBtn {
  border: 1px solid #7796a8;
}

.contentBg .allBtn:hover {
  background-color: #7796a8;
}

.contentBg .effects01 {
  width: 20%;
  top: 80%;
  right: 0;
}

.contentBg .effects02 {
  width: 25%;
  top: 35%;
  left: 0%;
}

.concept {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .concept {
    height: 75dvh;
  }
}
.concept .concept_banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.concept .concept_banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.concept .concept_content {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  width: 90%;
  max-width: 900px;
  padding: 4rem 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .concept .concept_content {
    padding: 40px 20px;
    width: 100%;
  }
}
.concept .concept_content h2 {
  font-size: 1.8rem;
  letter-spacing: 0.25rem;
  margin-bottom: 30px;
  color: #333;
  font-weight: 500;
  position: relative;
}
.concept .concept_content h2::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #999;
  margin: 15px auto 0;
}
.concept .concept_content .text_group p {
  font-size: 1.2rem;
  line-height: 2.25;
  color: #555;
  margin-bottom: 0;
  letter-spacing: 0.1rem;
}
@media (min-width: 480px) {
  .concept .concept_content .text_group p {
    letter-spacing: 0.15rem;
  }
} /*# sourceMappingURL=index.css.map */
