@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 16px; /* 桌面版基準字體大小 */
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 14px;
  }
}
body {
  font-family: "Noto Sans TC", sans-serif;
  background-color: #fff;
  font-size: 1rem; /* 使用相對單位 */
  overflow-x: hidden;
}

.frame {
  padding: 6.25rem 0;
}
@media (max-width: 768px) {
  .frame {
    padding: 3rem 0;
  }
}

.wrap {
  margin: 5rem auto;
}
@media (max-width: 768px) {
  .wrap {
    margin: 3rem auto;
  }
}

.cta_button {
  display: inline-block;
  background-color: #c69c6d;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 1.5rem;
}
.cta_button span {
  font-size: 2.25rem;
  font-weight: bold;
}

a:hover.cta_button {
  background: -webkit-gradient(linear, left bottom, left top, from(#845228), to(#c69c6d));
  background: linear-gradient(to top, #845228, #c69c6d);
}

.tit {
  text-align: center;
  z-index: 1;
  position: relative;
}
.tit_maintitle {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left top, right top, from(#a77d60), color-stop(50%, #ddb28f), to(#a77d60));
  background: linear-gradient(to right, #a77d60 0%, #ddb28f 50%, #a77d60 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.tit_subtitle {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .tit {
    padding: 0 20px;
  }
  .tit_maintitle {
    font-size: 2.5rem;
    margin-bottom: 0rem;
    line-height: 1.6;
  }
  .tit_subtitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .big {
    display: none;
  }
}

.small {
  display: none;
}
@media (max-width: 768px) {
  .small {
    display: block;
  }
}

header {
  position: relative;
  background: #7b34c6;
  height: 4em;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  z-index: 9999;
  -webkit-box-shadow: 0 6px 6px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 6px 0px rgba(0, 0, 0, 0.15);
  padding: 0.8em 1em 0 1em;
}
header a {
  display: inline-block;
  height: 2em;
}
header a img {
  height: 100%;
  width: auto;
}

.kv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  margin-bottom: -2px;
}
.kv_pic {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.kv_pic img {
  max-width: 100%;
  height: auto;
}
.kv_info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.kv_info h1 {
  font-size: 3.75rem;
  font-weight: bolder;
  margin-bottom: 2rem;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left top, right top, from(#a77d60), color-stop(50%, #f0d0aa), to(#a77d60));
  background: linear-gradient(to right, #a77d60 0%, #f0d0aa 50%, #a77d60 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.kv_info p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.kv_info .highlight {
  font-size: 2.25rem;
  color: #ab886d;
}
.kv_info .cta_button {
  margin-top: 2rem;
  -webkit-animation: main 2s infinite ease-in-out;
          animation: main 2s infinite ease-in-out;
}
@-webkit-keyframes main {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes main {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .kv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .kv_info {
    padding: 50px 0;
  }
}

.intro {
  margin: 0 auto;
  position: relative;
  background-color: #f0dab8;
}
.intro_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1024px;
  padding: 0 20px;
  z-index: 1;
  position: relative;
}
.intro_info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  z-index: 2;
}
.intro_info_left {
  text-align: left;
  padding-right: 2rem;
  margin-right: -20%;
}
.intro_info_left::before {
  content: "";
  position: absolute;
  width: 285px;
  height: 50px;
  bottom: -50px;
  left: 3rem;
  border-left: 1px solid #c1b4ab;
  border-bottom: 1px solid #c1b4ab;
  background-color: rgba(0, 0, 0, 0);
}
.intro_info_left::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgb(155, 152, 148);
  bottom: -55px;
  left: 330px;
}
.intro_info_right {
  text-align: right;
  margin-left: -20%;
}
.intro_info_right::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 120px;
  bottom: -120px;
  right: 3rem;
  border-right: 1px solid #c1b4ab;
  border-bottom: 1px solid #c1b4ab;
  background-color: rgba(0, 0, 0, 0);
}
.intro_info_right::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgb(155, 152, 148);
  bottom: -125px;
  right: 320px;
}
.intro_info_title {
  font-size: 1.5rem;
  color: #845228;
  margin-bottom: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: normal;
}
.intro_info_title span {
  font-size: 1.125rem;
  font-weight: 400;
}
.intro_info_list {
  list-style-type: none;
  padding-left: 0;
  line-height: 1.5;
  width: 100%;
}
.intro_info_list li {
  margin-bottom: 0.5rem;
  position: relative;
  font-size: 1.125rem;
  width: 100%;
}
.intro_cards {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  text-align: center;
  position: relative;
  z-index: 1;
}
.intro_bg01 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.intro_bg02 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.intro .cta_button {
  display: table;
  margin: auto;
  z-index: 1;
  position: relative;
  width: 300px;
  text-align: center;
}
@media (max-width: 1024px) {
  .intro_content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .intro_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .intro_content .intro_info_right, .intro_content .intro_info_left {
    text-align: center;
  }
  .intro_content .intro_cards img {
    width: 100%;
  }
  .intro_info_left {
    padding-right: 0;
    margin-right: 0;
  }
  .intro_info_left::before {
    height: 160px;
    border-bottom: 0px solid #c1b4ab;
    left: 1.5rem;
    bottom: -100px;
    width: 0;
  }
  .intro_info_left::after {
    content: none;
  }
  .intro_info_right {
    padding-left: 0;
    margin-left: 0;
  }
  .intro_info_right::before {
    height: 80px;
    bottom: 170px;
    border-bottom: 0px solid #c1b4ab;
    width: 0;
  }
  .intro_info_right::after {
    content: none;
  }
  .intro_bg01 {
    width: 100%;
  }
  .intro_bg02 {
    width: 100%;
  }
}

.card01, .card02 {
  background: linear-gradient(160deg, #fff 44%, #ffeccb 44%);
}
.card01 h1, .card02 h1 {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left top, right top, from(#7b34c6), color-stop(50%, #7b34c6), to(#7b34c6));
  background: linear-gradient(to right, #7b34c6 0%, #7b34c6 50%, #7b34c6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.6;
}
.card01 .tit_subtitle, .card02 .tit_subtitle {
  width: 1024px;
  margin: auto;
  line-height: 1.6;
}
.card01 .tit_subtitle a, .card02 .tit_subtitle a {
  color: #845228;
}
.card01 .tit_subtitle a:hover, .card02 .tit_subtitle a:hover {
  color: #ab886d;
}
.card01_content, .card02_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card01_info, .card02_info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.card01_info h2, .card02_info h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.card01_info h2 .bosscard, .card02_info h2 .bosscard {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left top, right top, from(#a77d60), color-stop(50%, #f0d0aa), to(#a77d60));
  background: linear-gradient(to right, #a77d60 0%, #f0d0aa 50%, #a77d60 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 2.25rem;
  text-align: center;
}
.card01_info h2 .bosscard .note01, .card02_info h2 .bosscard .note01 {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left top, right top, from(#000), color-stop(50%, #000), to(#000));
  background: linear-gradient(to right, #000 0%, #000 50%, #000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 1.125rem;
  font-weight: 300;
}
.card01_info h2 .and, .card02_info h2 .and {
  font-size: 4rem;
  font-weight: 100;
}
.card01_info h2 .platform img, .card02_info h2 .platform img {
  width: 210px;
  max-width: 210px;
}
.card01_info h2 .platform .note02, .card02_info h2 .platform .note02 {
  font-size: 1.5rem;
  margin-top: 0.75rem;
  display: block;
}
.card01_info ul, .card02_info ul {
  -moz-text-align-last: left;
       text-align-last: left;
  margin: 4rem auto;
  line-height: 1.6;
}
.card01_info ul li, .card02_info ul li {
  list-style-type: square;
  font-size: 1.125em;
}
.card01_pic, .card02_pic {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
}
.card01_pic img, .card02_pic img {
  max-width: 100%;
  height: auto;
}
.card01 .cta_button, .card02 .cta_button {
  display: table;
  margin: auto;
  width: 300px;
  text-align: center;
}
.card01 .example, .card02 .example {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 0;
}
.card01 .example h2 .bosscard, .card02 .example h2 .bosscard {
  background: -webkit-gradient(linear, left top, right top, from(#bf9d78), color-stop(50%, #a7795f), to(#a7795f));
  background: linear-gradient(to right, #bf9d78 0%, #a7795f 50%, #a7795f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.card01 .example span, .card02 .example span {
  font-weight: 300;
}
.card01 .example .checkbox-container, .card02 .example .checkbox-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px 10px;
  max-width: 600px;
  margin: 20px 0;
}
.card01 .example .checkbox-item, .card02 .example .checkbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 16px;
  font-size: 1.125rem;
}
.card01 .example .checkbox-icon, .card02 .example .checkbox-icon {
  width: 16px;
  height: 16px;
  border: 2px solid #000;
  border-radius: 2px;
  margin-right: 8px;
  position: relative;
}
.card01 .example .checkbox-icon::after, .card02 .example .checkbox-icon::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .card01 .card01_info h2 .platform img, .card02 .card01_info h2 .platform img {
    width: 150px;
  }
  .card01 .card02_info h2 .platform img, .card02 .card02_info h2 .platform img {
    width: 80px;
  }
}
@media (max-width: 768px) {
  .card01 .tit_subtitle, .card02 .tit_subtitle {
    text-align: justify;
    width: 100%;
  }
  .card01_content, .card02_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card01_pic img, .card02_pic img {
    max-width: 80%;
    margin-top: 50px;
  }
  .card01_pic .w100, .card02_pic .w100 {
    max-width: 100%;
    margin-top: 0;
  }
  .card01_info h2, .card02_info h2 {
    gap: 10px;
  }
  .card01_info h2 .bosscard, .card02_info h2 .bosscard {
    font-size: 1.75rem;
  }
  .card01_info h2 .platform .note02, .card02_info h2 .platform .note02 {
    font-size: 1.25rem;
  }
  .card01_info ul, .card02_info ul {
    margin: 2rem auto;
  }
  .card01 .example, .card02 .example {
    padding-top: 0;
  }
  .card01 .example .checkbox-container, .card02 .example .checkbox-container {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .card01_pic, .card02_pic {
    overflow-x: hidden;
  }
  .card01_pic .w100, .card02_pic .w100 {
    max-width: 140%;
    margin-left: -20%;
  }
}

.card02_info h2 .platform .note02 {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left top, right top, from(#000), color-stop(50%, #000), to(#000));
  background: linear-gradient(to right, #000 0%, #000 50%, #000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.card02_info h2 .platform .note02 .underline {
  padding-bottom: 3px;
  border-bottom: 1px solid #000;
}
.card02_info h2 .platform .cover {
  text-decoration: underline;
  color: #000;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}
.card02_info h2 .platform img {
  max-width: 100px;
}

.card02_info .step {
  border: 5px solid #ab886d;
  width: 1024px;
  margin: 6.25rem auto;
  position: relative;
}
.card02_info .step_step01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.card02_info .step_step01 .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.5rem;
  color: #ab886d;
  line-height: 1.6;
}
.card02_info .step_step01 .pic {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  margin-top: 67px;
}
.card02_info .step_step01 .pic::before {
  content: "財務人員";
  background-color: #ab886d;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 100px;
  padding: 5px 10px;
  font-size: 0.875rem;
  position: absolute;
  top: 26%;
  right: 15%;
  z-index: 1;
}
.card02_info .step_step01 .speak {
  position: relative;
  background-color: #ffeccb;
  border: 2px solid #ab886d;
  border-radius: 10px;
  padding: 10px 10px 10px 60px; /* 左侧留空给加号图标 */
  font-size: 16px;
  color: #ab886d;
  max-width: 280px;
  position: absolute;
  z-index: 1;
  top: -20px;
  right: 400px;
  text-align: left;
  line-height: 1.6;
  font-size: 0.875rem;
}
.card02_info .step_step01 .speak::before {
  content: "+";
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-color: #ab886d;
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 35px;
}
.card02_info .step_step01 .speak::after {
  content: "";
  position: absolute;
  bottom: -10px; /* 调整尖角位置 */
  right: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ab886d;
}
.card02_info .step_step01 .speak02 {
  top: -50px;
  right: 100px;
}
.card02_info .step_step01 .speak03 {
  top: 80px;
  right: 195px;
}
.card02_info .step_step01 .arrow01::before, .card02_info .step_step01 .arrow01::after, .card02_info .step_step01 .arrow02::before, .card02_info .step_step01 .arrow02::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 2;
  display: block;
  width: 200px;
  height: 200px;
  top: 250px;
  left: 150px;
  width: 90px;
  height: 90px;
  border: 40px solid #ffeccb;
  border-top-color: transparent;
  border-left-color: transparent;
}
.card02_info .step_step01 .arrow01::after, .card02_info .step_step01 .arrow02::after {
  top: 300px;
  left: 180px;
  border: 10px solid #ab886d;
  border-top-color: transparent;
  border-left-color: transparent;
}
.card02_info .step_step01 .arrow02::before {
  top: 300px;
  border-radius: 50px;
}
.card02_info .step_step01 .arrow02::after {
  top: 340px;
  border: 10px solid #ab886d;
  border-top-color: transparent;
  border-left-color: transparent;
}
.card02_info .step_step02 .pic::before {
  content: "業務人員";
  top: 70%;
  right: 45%;
}
.card02_info .step_step02 .pic::before::before, .card02_info .step_step02 .pic::before::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 50px;
  width: 100px;
  height: 100px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 2;
}
.card02_info .step_step02 .pic::before::before {
  border: 20px solid #ffeccb;
  border-top-color: transparent;
  border-left-color: transparent;
  top: 230px;
  left: 40px;
}
.card02_info .step_step02 .pic::before::after {
  top: 255px;
  left: 55px;
  width: 90px;
  height: 90px;
  border: 10px solid #ab886d;
  border-top-color: transparent;
  border-left-color: transparent;
}
.card02_info .step .cover {
  border-top: 5px solid #ab886d;
  border-bottom: 5px solid #ab886d;
  border-left: 5px solid #ffeccb;
  border-right: 5px solid #ffeccb;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  text-indent: -9999px;
  position: absolute;
  left: -26px;
  top: 50%;
  width: calc(100% + 53px);
  height: 20px;
  background-color: #ffeccb;
}
@media (max-width: 1024px) {
  .card02_info {
    width: 100%;
  }
  .card02_info .step {
    width: 90%;
  }
  .card02_info .step_step01 .text {
    width: 50%;
  }
  .card02_info .step_step01 .pic {
    width: 50%;
  }
  .card02_info .step_step01 .pic img {
    width: 85%;
  }
  .card02_info .step_step01 .arrow01::before, .card02_info .step_step01 .arrow01::after, .card02_info .step_step01 .arrow02::before, .card02_info .step_step01 .arrow02::after {
    top: 200px;
    left: 70px;
  }
  .card02_info .step_step01 .arrow01::after, .card02_info .step_step01 .arrow02::after {
    top: 250px;
    left: 100px;
  }
  .card02_info .step_step01 .arrow02::before {
    top: 250px;
  }
  .card02_info .step_step01 .arrow02::after {
    top: 290px;
  }
}
@media (max-width: 900px) {
  .card02_info .step_step01 .speak03 {
    top: 60px;
    right: 115px;
  }
}
@media (max-width: 767px) {
  .card02 {
    background: linear-gradient(160deg, #fff 30%, #ffeccb 30%);
  }
  .card02_info .step {
    width: 90%;
    padding: 20px 0;
    margin: 1rem auto;
  }
  .card02_info .step_step01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card02_info .step_step01 .text {
    width: 100%;
    margin-bottom: 100px;
  }
  .card02_info .step_step01 .pic {
    width: 100%;
  }
  .card02_info .step_step01 .pic img {
    width: 80%;
    margin: 50px 0;
  }
  .card02_info .step_step01 .speak {
    top: 100px;
    right: 100px;
    width: 230px;
  }
  .card02_info .step_step01 .speak02 {
    top: 180px;
    right: 10px;
  }
  .card02_info .step_step01 .speak03 {
    top: 260px;
    right: 110px;
  }
  .card02_info .step_step01 .arrow01::before, .card02_info .step_step01 .arrow01::after, .card02_info .step_step01 .arrow02::before, .card02_info .step_step01 .arrow02::after {
    top: 500px;
    left: calc(50% - 70px);
  }
  .card02_info .step_step01 .arrow01::before {
    border-radius: 50px;
  }
  .card02_info .step_step01 .arrow01::after, .card02_info .step_step01 .arrow02::after {
    top: 530px;
    left: calc(50% - 45px);
  }
  .card02_info .step_step01 .arrow02::before {
    top: 530px;
  }
  .card02_info .step_step01 .arrow02::after {
    top: 570px;
  }
  .card02_info .step_step02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .card02_info .step_step02 .text {
    margin-bottom: 0px;
    margin-top: 150px;
  }
  .card02_info .step_step02 .pic {
    margin-top: 0;
  }
  .card02_info .step_step02 .pic img {
    margin: 0;
    width: 70%;
  }
  .card02_info .step .cover {
    left: -15px;
    width: calc(100% + 30px);
    top: 57%;
  }
}
@media (max-width: 400px) {
  .card02_info .step_step01 .arrow01::before, .card02_info .step_step01 .arrow01::after, .card02_info .step_step01 .arrow02::before, .card02_info .step_step01 .arrow02::after {
    top: 470px;
  }
  .card02_info .step_step01 .arrow01::before {
    border-radius: 50px;
  }
  .card02_info .step_step01 .arrow01::after, .card02_info .step_step01 .arrow02::after {
    top: 500px;
  }
  .card02_info .step_step01 .arrow02::before {
    top: 500px;
  }
  .card02_info .step_step01 .arrow02::after {
    top: 540px;
  }
}

.bgwhite {
  background: linear-gradient(160deg, #fff 44%, #fff 44%);
}

.bgorange {
  background: linear-gradient(160deg, #ffeccb 44%, #ffeccb 44%);
}

.discount {
  background-color: #7b34c6;
}
.discount h1 {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(50%, #fff), to(#fff));
  background: linear-gradient(to right, #fff 0%, #fff 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 300;
  line-height: 1.6;
}
.discount h1 span {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left top, right top, from(#ffeccb), color-stop(50%, #ffeccb), to(#ffeccb));
  background: linear-gradient(to right, #ffeccb 0%, #ffeccb 50%, #ffeccb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  color: #c69c6d;
  font-weight: 600;
}
.discount_content {
  width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.discount_list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.discount_list .circle {
  background-color: white;
  border-radius: 50%;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.discount_list .circle::before {
  content: attr(data-number);
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #7b34c6;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  border: 3px solid #fff;
  font-size: 2rem;
}
.discount_list h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #fff;
  padding-bottom: 7px;
  border-bottom: 1px solid;
  display: inline-block;
  font-weight: 400;
  margin: 3rem auto 1rem auto;
}
.discount_list p {
  font-size: 1.125em;
  line-height: 1.6;
  margin: 0;
  color: #fff;
  font-weight: 300;
}
.discount_list p span {
  color: #f0dab8;
  font-weight: 600;
}
.discount .slip {
  font-size: 1rem;
  margin: auto;
  color: #c1b4ab;
  text-decoration: none;
  text-align: center;
  display: block;
}
.discount .slip .arrow {
  margin-left: 5px;
  font-size: 12px;
}
.discount a:hover {
  color: #ffeccb;
}
@media (max-width: 800px) {
  .discount_content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .discount {
    padding: 3rem 0 6rem 0;
  }
  .discount .wrap {
    margin: 3rem auto 0 auto;
  }
  .discount_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .discount_list {
    margin-bottom: 4rem;
  }
  .discount_list h3 {
    margin: 1rem auto;
  }
  .discount .slip {
    font-size: 1.25rem;
  }
}

.line {
  background-color: #f0dab8;
}
.line_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  color: #30a235;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.line .cellphone {
  z-index: 999;
  position: relative;
  margin-top: -50px;
}
.line .QRcode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.line .QRcode p {
  font-size: 1.125rem;
  margin-top: 1rem;
}
.line .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.line .text h3 {
  font-size: 2rem;
  color: #000;
}
.line .text p {
  color: #000;
  font-size: 1.125rem;
  margin: 1rem auto;
  width: 300px;
  line-height: 1.6;
}
.line .text .cta_button {
  background-color: #30a235;
}
.line .text a:hover.cta_button {
  background: -webkit-gradient(linear, left bottom, left top, from(#075c0c), to(#5fbb63));
  background: linear-gradient(to top, #075c0c, #5fbb63);
}
@media (max-width: 1200px) {
  .line_content {
    width: 90%;
    gap: 30px;
    margin: auto;
  }
  .line .cellphone img {
    width: 100%;
  }
  .line .QRcode img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .line_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
  }
  .line .QRcode {
    display: none;
  }
  .line .cellphone {
    width: 100%;
    top: 0;
    margin-top: 50px;
  }
  .line .cellphone img {
    width: 70%;
    margin: auto;
    display: block;
  }
  .line .text {
    margin-top: 50px;
  }
}

.method details {
  border-radius: 4px;
  margin-bottom: 20px;
  width: 1024px;
  margin: auto;
  color: #ab886d;
}
.method details summary {
  padding: 10px;
  cursor: pointer;
  color: #ab886d;
  font-weight: bold;
  list-style: none;
  position: relative;
  font-size: 2.25rem;
  text-align: center;
  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;
}
.method details summary::-webkit-details-marker {
  display: none;
}
.method details summary::after {
  content: "";
  border: solid #ab886d;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 7px;
  margin-left: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.method details[open] > summary::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.method .content {
  padding: 15px;
  display: none;
}
.method .content h2 {
  color: #ab886d;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 3px;
  border-bottom: 1px solid #ab886d;
  display: inline-block;
}
.method .content ul {
  padding-left: 20px;
  line-height: 1.6;
  list-style-type: square;
}
.method .content ul ol {
  padding-left: 20px;
}
.method .content ol {
  padding-left: 20px;
  line-height: 1.6;
}
.method .content ol li span {
  color: #7b34c6;
}
.method .content ol li a {
  color: #845228;
}
.method .content ol li a:hover {
  color: #ab886d;
}
.method details[open] .content {
  display: block;
}
@media (max-width: 1024px) {
  .method details {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .method details {
    width: 95%;
  }
  .method details summary {
    font-size: 1.75rem;
  }
}

.apply {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 9999;
}
.apply a:hover {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .apply {
    right: 5px;
  }
}

.share {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}
.share a:hover {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .share {
    right: 5px;
  }
}