* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          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 {
  background: #ededed;
  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: #ededed url("../images/kv-bg.jpg") no-repeat top/cover;
  padding-bottom: 33%;
  z-index: 1;
  -webkit-clip-path: ellipse(85% 100% at 50% -1%);
          clip-path: ellipse(85% 100% at 50% -1%);
  overflow: hidden;
}

.kv-title {
  width: 20%;
  position: relative;
  margin-top: 12%;
  margin-left: 25%;
}

.kv-light {
  position: absolute;
  mix-blend-mode: plus-lighter;
  opacity: 0.9;
}

.kv-light.l1 {
  width: 25%;
  top: 4%;
  left: 15%;
}

.kv-light.l2 {
  width: 20%;
  top: 22%;
  right: 8%;
}

.kv-18 {
  width: 30%;
  position: absolute;
  left: 45%;
  top: 9%;
}

.kv-people {
  position: absolute;
  width: 70%;
  left: 15%;
  bottom: -15%;
}

:root {
  --animate-delay: 0.5s;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 70%, 0);
    transform: translate3d(0, 70%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 70%, 0);
    transform: translate3d(0, 70%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.img-m {
  display: none;
}

.content {
  position: relative;
  padding-top: 5%;
  overflow: hidden;
  background: #ededed;
}

.content .content-img {
  margin: auto;
  width: 90%;
  max-width: 1000px;
}

.content .deco {
  position: absolute;
  width: 23%;
  bottom: -7%;
}

.content .deco-l {
  left: 3%;
}

.content .deco-r {
  right: 3%;
}

.cta img {
  width: 50%;
  max-width: 450px;
  padding: 5% 0;
  -webkit-animation: click 1s infinite ease-out;
          animation: click 1s infinite ease-out;
}

.cta-disable {
  width: 50%;
  max-width: 500px;
  padding: 5% 0;
}

@-webkit-keyframes click {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes click {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.c-primary {
  color: #7B34C6;
}

.notebg {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-collapse .icon {
  font-size: 30px;
  margin-left: 4px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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;
  -webkit-transition: 500ms all;
  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: #595757;
  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: #ededed url("../images/kv-bg-m.jpg") no-repeat top/100%;
    padding-bottom: 112%;
    -webkit-clip-path: ellipse(140% 100% at 50% -1%);
            clip-path: ellipse(140% 100% at 50% -1%);
  }
  .kv-title {
    width: 60%;
    margin-top: 8%;
    margin-left: 20%;
  }
  .kv-light {
    display: none;
  }
  .kv-18 {
    width: 75%;
    left: 16%;
    top: 23%;
  }
  .kv-people {
    width: 140%;
    max-width: 140%;
    left: -20%;
    bottom: -8%;
  }
  .content {
    padding-bottom: 20%;
  }
  .content .deco {
    bottom: -3%;
  }
  .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;
  }
}
