* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 13px;
  font-family: "Microsoft Jhenghei", sans-serif;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

p,
li {
  margin-bottom: 5px;
  line-height: 1.5;
}

.wrapper {
  text-align: center;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
}

.text-right {
  text-align: right;
}

.fw-bold {
  font-weight: bold;
}

.logo-bg-outer {
  background: #fff;
  text-align: left;
}

.logo-bg {
  width: 100%;
}

.logo-bg img {
  display: inline;
}

.logo1 {
  float: left;
}

.kv {
  position: relative;
  background: #46168b url("../images/bg.jpg") no-repeat top/100%;
  z-index: 1;
  overflow-x: hidden;
  animation: fadein 1s linear;
}
.kv::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 20%;
  background: url("../images/sec-bg.png") no-repeat bottom/100%;
  mix-blend-mode: screen;
}

.kv-logo {
  width: 35%;
  position: absolute;
  top: 3%;
  right: -2%;
}

.kv-ribbon {
  position: absolute;
}
.kv-ribbon.r1 {
  width: 48%;
  left: 10%;
  top: 24%;
}
.kv-ribbon.r2 {
  width: 25%;
  left: 83%;
  top: 19.2%;
}

.reveal-image {
  animation: reveal 2s ease forwards;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
.reveal-image.r2 {
  animation-delay: 1s;
}

@keyframes reveal {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
.kv-makeup {
  position: absolute;
  width: 38%;
  left: 52%;
  top: 9%;
  animation: scale 1s ease-in-out;
}

.kv-title-group {
  width: 52%;
  position: relative;
  margin: 2% 0 10% 6%;
}
.kv-title-group .kv-light {
  position: absolute;
  mix-blend-mode: screen;
}
.kv-title-group .kv-light.l1 {
  width: 10%;
  left: 10%;
  top: 37%;
  animation: light 2s infinite linear;
}
.kv-title-group .kv-light.l2 {
  width: 8%;
  left: 74%;
  top: 34%;
  animation: light 2s 0.5s infinite linear;
}
.kv-title-group .kv-light.l3 {
  width: 11%;
  left: 40%;
  top:46%;
  animation: light 2s 0.8s infinite linear;
}
.kv-title-group .kv-light.l4 {
  width: 9%;
  left:74%;
  top:60%;
  animation: light 2s 1s infinite linear;
}

@keyframes light {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes scale {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.img-m {
  display: none;
}

.offer {
  position: relative;
  margin: auto;
  margin-bottom: 5%;
  width: 90%;
  max-width: 1200px;
}
.offer::before {
  content: "";
  display: block;
  position: absolute;
  top: -23%;
  left: 1%;
  width: 2%;
  padding: 6%;
  background: url("../images/offer-light.png") no-repeat center/100%;
  mix-blend-mode: screen;
  animation: light 2s infinite linear;
}

.cta img {
  width: 50%;
  max-width: 500px;
  padding: 5% 0;
  animation: click 1s infinite ease-out;
}

@keyframes click {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.c-green {
  color: #93da49;
}

.notebg {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
}

.note-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #7B34C6;
  margin-top: 20px;
}

.btn-collapse {
  display: block;
  padding: 20px 25px;
  background: #fff;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  font-weight: bold;
}
.btn-collapse > span:nth-child(1) {
  display: inline-flex;
  align-items: center;
}
.btn-collapse .icon {
  font-size: 30px;
  margin-left: 4px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  text-align: center;
}
.btn-collapse .minus {
  display: none;
}
.btn-collapse.open .plus {
  display: none;
}
.btn-collapse.open .minus {
  display: inline-block;
}

.collapse {
  display: none;
  width: 100%;
  text-align: left;
  color: #333;
  padding: 10px 30px 30px;
  font-size: 16.5px;
  opacity: 0;
  transition: 500ms all;
  background: #fff;
}
.collapse.in {
  display: block;
  opacity: 1;
}
.collapse a {
  color: #7B34C6;
  text-decoration: underline;
  word-break: break-all;
}
.collapse li {
  line-height: 1.8;
}
.collapse p {
  line-height: 2;
}
.collapse h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px;
  color: #7B34C6;
}

.collapse-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 2% 5%;
  border-radius: 40px;
  position: relative;
  z-index: 1;
}

.btn-border {
  padding: 15px 40px;
  color: #fff;
  background-color: #7B34C6;
  border-radius: 100px;
}

.note_DotList {
  list-style: disc;
  padding: 0 0 0 2em;
  margin: 0;
}

.note_NumList {
  list-style: decimal;
  padding: 0 0 0 2em;
  margin: 0;
}

.note_NumList2 {
  counter-reset: list;
  list-style: none;
}
.note_NumList2 > li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.note_NumList2 > li::before {
  content: "(" counter(list) ") ";
  counter-increment: list;
}

@media screen and (max-width: 768px) {
  .kv {
    background: #46168b url("../images/bg-m.jpg") no-repeat top/100%;
  }
  .kv-logo {
    width: 50%;
  }
  .kv-title-group {
    width: 90%;
    margin: 5% 0 90% 7%;
  }
  .kv-ribbon.r1 {
    width: 100%;
    left: -8%;
    top: 25.6%;
  }
  .kv-ribbon.r2 {
    display: none;
  }
  .kv-makeup {
    width: 80%;
    left: 10%;
    top: 35%;
  }
  .img-d {
    display: none;
  }
  .img-m {
    display: block;
  }
  .cta img {
    width: 70%;
    max-width: 280px;
  }
}
@media screen and (max-width: 600px) {
  .logo-bg img {
    height: 35px;
  }
  .btn-collapse,
  .btn-collapse .icon {
    font-size: 20px;
  }
  .collapse {
    padding: 10px 10px 30px;
  }
  .collapse-inner {
    border-radius: 20px;
  }
  .btn-collapse {
    padding: 20px 25px;
  }
  .note-title {
    font-size: 20px;
  }
}