* {
  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;
  }
}

.how_to_use_steps {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--main-font);
}

.how_to_use_steps img {
  margin: 30px;
}

.how_to_use_steps p {
  font-family: var(--body-font);
  text-align: center;
  margin: auto;
  line-height: 1.5;
  letter-spacing: 2px;
}

.how_to_use_steps h2 {
  padding: 0 0 80px 0;
}

.how_to_use_steps h3 {
  padding: 0 0 30px 0;
}

.how_to_use_steps h4 {
  font-size: 1.5rem;
}

.how_to_use_steps p {
  letter-spacing: 2px;
  font-size: 1.2rem;
}

.stepBox {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}

/* .stepBlock {
  width: 23%;
} */
/* .stepArroRight {
  position: relative;
  width: 50px;
} */
.stepBlock.upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stepBlock.upper > img {
  width: 200px;
  max-width: 15dvw;
}

.stepBlock.lower {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.step_info {
  width: 25%;
  padding: 0 1rem;
  max-width: 260px;
}

span.ps {
  font-size: 1rem;
  margin-top: 2rem;
  display: inline-block;
  text-align: center;
  margin: 2rem 0;
  letter-spacing: 2px;
}

.stepArroRight {
  width: 30px;
  position: absolute;
}

.stepArroRight img {
  width: 100%;
  width: 1.5rem;
}

.stepBlock.upper .stepArroRight:nth-of-type(1) img {
  transform: translateX(-150%);
}
.stepBlock.upper .stepArroRight:nth-of-type(2) img {
  transform: translateX(-100%);
}
.stepBlock.upper .stepArroRight:nth-of-type(3) img {
  transform: translateX(-50%);
}

.stepArrowDown {
  rotate: 90deg;
  max-width: 2.5rem !important;
}

@media (max-width: 768px) {
  .how_to_use_steps {
    padding: 50px 0;
  }
  .how_to_use_steps img {
    margin: 0 auto;
  }
  .how_to_use_steps p {
    margin: 1rem auto;
    max-width: 350px;
  }
  .how_to_use_steps h2 {
    padding: 0 0 20px 0;
    font-size: 2.8rem;
  }
  .how_to_use_steps h3 {
    padding: 0;
  }
  .stepBox {
    gap: 0;
  }
  .stepBlock {
    width: 100%;
  }
  .stepBlock h3 {
    font-size: 2rem;
  }
  .how_to_use_steps h2 {
    padding: 0 0 20px 0;
    font-size: 2rem;
  }
  .stepBlock h3 {
    font-size: 1.5rem;
  }
  .how_to_use_steps img,
  .how_to_use_steps p {
    max-width: 75vw;
    text-align: center;
  }
}
.stepBox-pc {
  position: relative;
}

.stepArroRight {
  position: absolute;
  width: 30px;
  transform: translateX(-50%);
}
.stepArroRight:nth-of-type(1) {
  left: 25%;
}
.stepArroRight:nth-of-type(2) {
  left: 50%;
}
.stepArroRight:nth-of-type(3) {
  left: 75%;
}

/*! CSS Used from: https://www.capsule-serum.tw/css/product.css?v=260107 */
a {
  text-decoration: none;
  color: #000;
}

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

.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-org .itemPic .pic img {
  border: 1px solid #ffb81c;
}

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

.productBox.product-org .itemPic .pic:before {
  background-color: #ffb81c;
}

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

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

.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-org .itemInfo .list li:before {
  background-color: #ffb81c;
}

.productBox .itemInfo .note {
  font-size: 14px;
  line-height: 1.6;
  margin: 40px 0 0 0;
  letter-spacing: 2px;
  color: #616161;
}

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

.productBox .itemInfo .btnBox a {
  border: 3px solid #bcbcbc;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  border-radius: 100px;
  padding: 2rem 1rem;
  margin: 0 4px;
  line-height: 1.4;
  width: 45%;
  min-width: 200px;
  min-height: 3rem;
  text-align: center;
  min-width: 250px;
}
@media (max-width: 780px) {
  .productBox .itemInfo .btnBox a {
    min-width: 250px;
  }
}

.productBox .itemInfo .btnBox a img {
  width: 25%;
  min-width: 80px;
}
@media (min-width: 1000px) {
  .productBox .itemInfo .btnBox a img {
    width: 40%;
    max-width: 120px;
  }
}
.productBox .itemInfo .btnBox a img {
  margin: 0 1rem 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%;
  }
  .productBox .itemInfo .btnBox {
    flex-direction: column;
  }
  .productBox .itemInfo .btnBox a {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .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 20px 0;
    width: 80%;
    padding: 15px 30px;
  }
  .btnBox .poyaBtn img {
    scale: 1.5;
  }
}
.poyaBtn img {
  scale: 1.5;
}

.shopeeBtn img {
  transform: translateY(-10%);
}

h2 {
  font-weight: 500;
  text-shadow: 0.5px 0 0 currentColor;
}

.productBlock {
  font-size: 1.2rem;
  letter-spacing: 0.25rem;
  line-height: 2.25;
}
.productBlock .productBox .itemPic .pic {
  aspect-ratio: 5/6;
}
.productBlock .productBox .itemPic .pic img {
  border: 1px solid #7796a8;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  background-color: white;
}
.productBlock .productBox.product-org .itemPic .pic:before {
  background-color: #7796a8;
}
.productBlock .productBox.product-org.Pd_B .itemPic .pic:before {
  background-color: #807426;
}
.productBlock .productBox.product-org .itemInfo .list li:before {
  background-color: #7796a8;
  transform: translateY(0.5rem);
}
.productBlock .productBox.product-org.Pd_B .itemInfo .list li:before {
  background-color: #807426;
  transform: translateY(0.5rem);
}

.how_to_use_steps {
  margin: 10rem 0;
  padding: 5rem 0;
  background-color: #f4f5f9;
}
.how_to_use_steps h2 {
  font-size: 2.7rem;
  padding: 0;
  font-weight: normal;
  letter-spacing: 4px;
}
.how_to_use_steps .stepBox.showInSP .stepBlock:first-of-type {
  margin-top: 3rem;
}

.bannerBg img {
  height: auto;
  max-height: calc(100dvh - 60px);
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.concept {
  margin-top: 5rem;
}
@media (min-width: 480px) {
  .concept {
    margin-top: 15rem;
  }
}
.concept .bgImg01.showInPC {
  position: absolute;
  top: 0;
  right: 0;
  width: 25dvw;
}
.concept .flexWrap {
  display: flex;
  flex: 1;
  flex-direction: column-reverse;
}
@media (min-width: 480px) {
  .concept .flexWrap {
    flex-direction: row;
  }
}
.concept .flexWrap img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 480px) {
  .concept .flexWrap img {
    width: 45%;
  }
}
.concept .flexWrap .text p:first-child {
  font-size: 1.44rem;
}
.concept .flexWrap .text {
  max-width: max(40dvw, 450px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  font-size: 1.2rem;
  line-height: 2.25;
  letter-spacing: 0.25rem;
  margin: 0 auto;
  padding: 1.5rem;
}
@media (min-width: 480px) {
  .concept .flexWrap .text {
    margin: 0 auto 0 0;
  }
}
@media (min-width: 1024px) {
  .concept .flexWrap .text {
    padding: 3rem;
    text-shadow: 0.05px 0 0 currentColor;
  }
}
.concept .flexWrap p {
  letter-spacing: 0.25rem;
}

.productContent {
  position: relative;
}
.productContent .alignWrap {
  display: flex;
  flex-direction: column;
  margin: auto;
  row-gap: 5rem;
  padding: 5rem 0;
  max-width: 90dvw;
}
@media (min-width: 480px) {
  .productContent .alignWrap {
    max-width: 80dvw;
  }
}
@media (min-width: 1024px) {
  .productContent .alignWrap {
    row-gap: 10rem;
    padding: 10rem 0;
    max-width: 70dvw;
  }
}
.productContent .alignWrap img {
  width: 100%;
}
.productContent .alignWrap.prod_b img {
  width: 100%;
  transform: translateX(6%);
}
.productContent .contentBlock .title {
  text-align: center;
  margin: 4rem 0;
}
.productContent .contentBlock .title h2 {
  letter-spacing: 0.25rem;
  font-size: 1.5rem;
  line-height: 1.75;
}
@media (min-width: 480px) {
  .productContent .contentBlock .title h2 {
    font-size: 1.8rem;
  }
}
.productContent .contentBlock .title h3 {
  letter-spacing: 0.25rem;
  line-height: 1.75;
  font-size: 1.2rem;
}
@media (min-width: 480px) {
  .productContent .contentBlock .title h3 {
    font-size: 1.44rem;
  }
}

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

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

@media (min-width: 1024px) {
  #prod_a .contentBlock:nth-of-type(2) img {
    width: 65%;
    margin: auto;
  }
}

#prod_b .bgImg01.showInPC,
#prod_b .effects.showInPC {
  filter: sepia(15%);
}
#prod_b h2 {
  font-weight: normal;
}
#prod_b img.titlePic {
  transform: translateX(0);
  width: 80%;
  margin: auto;
  max-width: 75dvw;
}
@media (min-width: 1024px) {
  #prod_b img.titlePic {
    width: 40%;
    margin-bottom: 3rem;
  }
}
#prod_b .title h2:not(:first-of-type) {
  font-size: 1.25rem;
}
@media (min-width: 1024px) {
  #prod_b .contentBlock:nth-of-type(1) > img {
    width: 80%;
    transform: translateX(20%);
  }
}
#prod_b .contentBlock:nth-of-type(1) .title h2:first-of-type {
  margin-top: 5%;
  transform: translateY(-1rem);
}
@media (min-width: 480px) {
  #prod_b .contentBlock:nth-of-type(1) .title h2:first-of-type {
    margin-top: 10%;
    transform: translateY(-1rem);
  }
}
#prod_b .contentBlock:nth-of-type(2) img {
  width: 75%;
  margin: auto;
}
#prod_b .contentBlock:nth-of-type(3) img {
  transform: translateX(0);
}
@media (min-width: 1024px) {
  #prod_b .contentBlock:nth-of-type(3) img {
    width: 70%;
    margin: auto;
  }
} /*# sourceMappingURL=product.css.map */
