@charset "UTF-8";
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

ol li .number {
  list-style: none; /* 移除預設編號 */
  counter-reset: my-counter; /* 設定計數器 */
}
ol li .number li {
  counter-increment: my-counter; /* 計數器遞增 */
}
ol li .number li::before {
  content: "(" counter(my-counter) "). "; /* 自訂編號格式 (1). */
}

img {
  border: 0;
  margin: 0;
  vertical-align: middle;
  width: 100%;
  max-width: 100%;
  height: auto;
}

blockquote, q {
  quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

input, textarea, button, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

select::-ms-expand {
  display: none;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-size: initial;
  scroll-behavior: smooth;
  scroll-padding-top: 3em;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  border: none;
}

a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

a:focus, input:focus, select:focus, textarea:focus, button:focus {
  outline: 0;
}

form {
  width: 100%;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: none;
  padding: 0;
  line-height: inherit;
  color: #333;
  overflow: hidden;
  width: 100%;
}

label {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  margin-bottom: 3px;
  font-weight: bold;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=search] {
  -webkit-appearance: none;
}

input[type=radio],
input[type=checkbox] {
  margin-top: 1px \9 ;
  line-height: normal;
  vertical-align: baseline;
}

input[type=radio] {
  -webkit-appearance: radio;
  border-radius: 50%;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
}

input[type=file] {
  display: block;
}

input[type=range] {
  display: block;
  width: 100%;
}

input[type=file]:focus,
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

::-webkit-input-placeholder {
  color: #aaa;
}

::-moz-placeholder {
  color: #aaa;
}

:-ms-input-placeholder {
  color: #aaa !important;
}

::-ms-input-placeholder {
  color: #aaa;
}

::placeholder {
  color: #aaa;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  color: #332727;
  line-height: 1.5;
  overflow-x: hidden;
  color: black;
  background-color: #5A4E4C;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

a {
  color: #00a0e6;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

.fc_white {
  color: white !important;
}

.hidden {
  display: none !important;
}

.txt-title {
  position: absolute;
  text-indent: -9999px;
  top: 0;
  left: 0;
  overflow: hidden;
}

.task-web {
  display: block;
}
@media (max-width: 768px) {
  .task-web {
    display: none;
  }
}

.fwb {
  font-weight: bold;
}

.mark {
  color: #CEB071;
}

ol.disc {
  padding-left: 2em;
}
ol.disc > li {
  list-style: disc;
}
ol.decimal {
  padding-left: 3.3em;
}
ol.decimal > li {
  list-style: decimal;
}
ol.square {
  margin-left: 1em;
}
ol.square > li {
  list-style: square;
}
ol.decimal1em {
  margin-left: 1em;
}
ol.decimal1em > li {
  list-style: decimal;
}
ol.decimal-arc { /*更新*/
  counter-reset: counter;
  position: relative;
  padding-left: 1.6em;
}
ol.decimal-arc > li:before {
  counter-increment: counter;
  content: "(" counter(counter) ")";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  text-indent: -2em;
  text-align: right;
  margin-left: -0.2em;
}
ol.decimal-arc > span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-indent: -1em;
  padding-left: 1em;
}
ol.lower-alpha { /*更新*/
  padding-left: 1.2em;
}
ol.lower-alpha > li {
  list-style: lower-alpha;
}
ol.cjk-ideographic {
  margin-left: 2em;
}
ol.cjk-ideographic > li {
  list-style: cjk-ideographic;
}
ol .cjk-ideographic-arc {
  counter-reset: cjk;
  list-style: none;
  padding-left: 0;
}
ol .cjk-ideographic-arc > li {
  counter-increment: cjk;
  position: relative;
  padding-left: 2em;
}
ol .cjk-ideographic-arc > li::before {
  content: "(" counter(cjk, cjk-ideographic) ")";
  position: absolute;
  left: 0;
}
ol .circle-counter {
  counter-reset: step;
}
ol .circle-counter > li {
  counter-increment: step;
  list-style: none;
  position: relative;
  padding-left: 1.5em;
}
ol .circle-counter > li::before {
  content: counter(step);
  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;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0.1em;
}

ol.comment {
  counter-reset: my-awesome-counter;
}
ol.comment > li {
  counter-increment: my-awesome-counter;
  list-style: none !important;
  position: relative;
  list-style: none;
  margin-left: 2em !important;
  text-align: justify;
  text-justify: inter-ideograph;
}
ol.comment > li::before {
  content: "註" counter(my-awesome-counter) "：";
  position: absolute;
  left: -2.5em;
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes floatUpDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes floatUpDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes floatShadow {
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes floatShadow {
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@-webkit-keyframes mouseScroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(130%);
            transform: translateY(130%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(130%);
            transform: translateY(130%);
  }
}
@keyframes mouseScroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(130%);
            transform: translateY(130%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(130%);
            transform: translateY(130%);
  }
}
@-webkit-keyframes progressLine {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes progressLine {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@-webkit-keyframes zoomPop {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomPop {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes flyOut {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(19px, -19px);
            transform: translate(19px, -19px);
    opacity: 0.65;
  }
  100% {
    -webkit-transform: translate(24px, -24px);
            transform: translate(24px, -24px);
    opacity: 0;
  }
}
@keyframes flyOut {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(19px, -19px);
            transform: translate(19px, -19px);
    opacity: 0.65;
  }
  100% {
    -webkit-transform: translate(24px, -24px);
            transform: translate(24px, -24px);
    opacity: 0;
  }
}
@-webkit-keyframes flyIn {
  0% {
    -webkit-transform: translate(-24px, 24px);
            transform: translate(-24px, 24px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes flyIn {
  0% {
    -webkit-transform: translate(-24px, 24px);
            transform: translate(-24px, 24px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes flyRight {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(10px, 0);
            transform: translate(10px, 0);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: translate(40px, 0);
            transform: translate(40px, 0);
    opacity: 0;
  }
}
@keyframes flyRight {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(10px, 0);
            transform: translate(10px, 0);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: translate(40px, 0);
            transform: translate(40px, 0);
    opacity: 0;
  }
}
@-webkit-keyframes flyFromLeft {
  0% {
    -webkit-transform: translate(-40px, 0);
            transform: translate(-40px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes flyFromLeft {
  0% {
    -webkit-transform: translate(-40px, 0);
            transform: translate(-40px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes shine-move-text {
  0% {
    background-position: 150% 0;
  }
  100% {
    background-position: -150% 0;
  }
}
@keyframes shine-move-text {
  0% {
    background-position: 150% 0;
  }
  100% {
    background-position: -150% 0;
  }
}
@-webkit-keyframes spark-shine {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.5;
  }
  40% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.5;
  }
}
@keyframes spark-shine {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.5;
  }
  40% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.5;
  }
}
@-webkit-keyframes copyHintFade {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes copyHintFade {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.js-animate {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.js-animate--fadein {
  opacity: 0;
}
.js-animate--fadein-up {
  opacity: 0;
  -webkit-transform: translate(0, -50px);
      -ms-transform: translate(0, -50px);
          transform: translate(0, -50px);
}
.js-animate--fadein-down {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
      -ms-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
@media (min-width: 769px) {
  .js-animate--fadein-down-max {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
        -ms-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }
}
@media (max-width: 768px) {
  .js-animate--fadein-down-min {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
        -ms-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }
}
.js-animate--fadein-left {
  opacity: 0;
  -webkit-transform: translate(-50px, 0);
      -ms-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
}
.js-animate--fadein-right {
  opacity: 0;
  -webkit-transform: translate(50px, 0);
      -ms-transform: translate(50px, 0);
          transform: translate(50px, 0);
}
.js-animate--maskin-left {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.js-animate--maskin-right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.js-animate--maskin-up {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.js-animate--maskin-down {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}
.js-animate--darkin {
  -webkit-filter: brightness(65%);
          filter: brightness(65%);
}
.js-animate--smallin {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
.js-animate--active {
  opacity: unset;
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .js-animate--active {
    opacity: 1;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
@supports not (transform: unset) {
  .js-animate--active {
    opacity: 1;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.js-animate--active {
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}
.js-animate--active[class*="--maskin"] {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.js-animate--active[class*="--darkin"] {
  -webkit-filter: brightness(1);
          filter: brightness(1);
}
.js-animate--active.js-animate--path {
  stroke-dashoffset: 0px !important;
}
.js-animate--delay100 {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}
.js-animate--delay200 {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
.js-animate--delay300 {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}
.js-animate--delay400 {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}
.js-animate--delay500 {
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}
.js-animate--delay600 {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}
.js-animate--delay700 {
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
}
.js-animate--delay800 {
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}
.js-animate--delay900 {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}
.js-animate--delay1000 {
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}

.lightbox {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  text-align: center;
}
.lightbox--active {
  display: block;
  -webkit-animation: fadeIn 0.4s;
          animation: fadeIn 0.4s;
  z-index: 1000;
}
.lightbox__container {
  height: 100%;
}
.lightbox__content {
  width: 100%;
  height: 100%;
  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;
}
.lightbox__box {
  position: relative;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  background: linear-gradient(205.35deg, #2B2B2B 16.07%, #202020 78.08%);
  -webkit-box-shadow: 5px 5px 20px #000000, inset 2px 2px 6px #464646;
          box-shadow: 5px 5px 20px #000000, inset 2px 2px 6px #464646;
  border-radius: 30px;
  backdrop-filter: blur(60px);
  color: #fff;
  padding: 50px;
  margin: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 528px;
}
.lightbox__btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  left: auto;
  width: 24px;
  height: 24px;
}
.lightbox__btn-close img {
  width: 100%;
  height: 100%;
}
.lightbox__title {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4375;
  margin-bottom: 16px;
  width: 100%;
}
.lightbox .registerd-text {
  display: block;
  font-size: 16px;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.lightbox .registerd-text.show {
  display: block;
}
.lightbox .btn-copyshare {
  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;
  width: 388px;
  background: linear-gradient(147.71deg, #E7C48B 16.04%, #C89549 87%);
  -webkit-box-shadow: -2px -2px 10px #606060, 2px 2px 10px #000000, inset 2px 2px 6px #DED4BB;
          box-shadow: -2px -2px 10px #606060, 2px 2px 10px #000000, inset 2px 2px 6px #DED4BB;
  border-radius: 30px;
  cursor: pointer;
  margin-bottom: 30px;
  position: relative;
  padding: 16px 40px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  color: #1E1E1E;
}
.lightbox .btn-copyshare:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.lightbox .btn-copyshare::before {
  content: "";
  position: absolute;
  inset: 6px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-81.4%, #E7C48B), color-stop(167.44%, #C89549));
  background: linear-gradient(360deg, #E7C48B -81.4%, #C89549 167.44%);
  border-radius: 30px;
  z-index: 0;
}
.lightbox .btn-copyshare img, .lightbox .btn-copyshare span {
  z-index: 1;
  pointer-events: none;
}
.lightbox .btn-copyshare img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.lightbox .btn-copyshare span {
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-wrap: nowrap;
}
.lightbox .copy-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, calc(-50% - 12px));
      -ms-transform: translate(-50%, calc(-50% - 12px));
          transform: translate(-50%, calc(-50% - 12px));
  background-color: #212121;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  display: none;
  opacity: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  font-size: 16px;
  pointer-events: none;
  z-index: 2;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.lightbox .copy-hint img {
  width: 24px;
  height: 24px;
  margin-right: 6px;
}
.lightbox .copy-hint.isAni {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: copiedHint 2s ease-in-out forwards;
  animation: copyHintFade 2s ease-in-out forwards;
}
.lightbox .reward-text {
  color: #E7C48B;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.lightbox .reward-subtitle {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 20px;
}
.lightbox .share-section {
  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;
}
.lightbox .share-section .share-text {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.lightbox .share-section .share-btn {
  background: linear-gradient(205.35deg, #2B2B2B 16.07%, #202020 78.08%);
  -webkit-box-shadow: -5px -5px 20px #303030, 5px 5px 20px #000000, inset 2px 2px 6px #464646;
          box-shadow: -5px -5px 20px #303030, 5px 5px 20px #000000, inset 2px 2px 6px #464646;
  border: none;
  border-radius: 50px;
  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;
  margin-left: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.lightbox .share-section .share-btn:hover {
  -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
          transform: scale(1.15);
}
.lightbox .share-section .share-btn img {
  width: 30px;
  height: 30px;
}

@media (max-width: 600px) {
  .lightbox__box {
    padding: 40px 20px 20px 20px;
  }
  .lightbox__btn-close {
    position: absolute;
    top: 12px;
    right: 12px;
    left: auto;
    width: 24px;
    height: 24px;
  }
  .lightbox__btn-close img {
    width: 100%;
    height: 100%;
  }
  .lightbox__label {
    width: 100%;
  }
  .lightbox__title {
    font-size: 6.25vw;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin-bottom: 12px;
  }
  .lightbox .btn-copyshare {
    width: auto;
  }
}
.lightbox[data-type=code] {
  display: block;
  -webkit-animation: fadeIn 0.4s;
          animation: fadeIn 0.4s;
  z-index: 1000;
}

.lightbox:not([data-type]),
.lightbox[data-type=""] {
  display: none;
}

#overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1001;
  background: #ffffff;
  inset: 0;
  will-change: opacity;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.loader {
  position: fixed;
  z-index: 1003;
  top: 50%;
  margin-top: -115px;
  left: 50%;
  margin-left: -86.5px;
  will-change: opacity;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.dawho-logo {
  width: 173px;
  height: 177px;
}
.dawho-logo img {
  width: 173px;
  height: 177px;
}

.loading {
  position: relative;
  margin-top: -60px;
}
.loading img {
  width: 173px;
  height: 173px;
}

.sinopac-logo {
  width: 173px;
  margin-bottom: 20px;
}
.sinopac-logo img {
  width: 100%;
}

.loading {
  position: relative;
  margin-top: -60px;
}
.loading img {
  width: 173px;
  height: 173px;
}

#header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  margin: auto;
  background-color: #181818;
  border-bottom: 1px solid transparent;
  border-color: #CEB071;
  top: 0;
}
#header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 75px;
  padding: 10px 8px;
  max-width: 1280px;
  width: 100%;
}
@media (max-width: 1279px) {
  #header .container {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    height: 65px;
  }
}
#header .container__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 18px;
}
@media (max-width: 1279px) {
  #header .container__link {
    display: none;
  }
  #header .container__link.toggled {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 66px;
    left: 0;
    background-color: #292929;
    height: auto;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    padding: 20px 0;
  }
  #header .container__link.toggled::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }
}
#header .container__link li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
#header .container__link li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #CEB071;
  text-wrap: nowrap;
  width: 149px;
  padding: 14px 0;
}
@media (max-width: 1279px) {
  #header .container__link li a {
    width: 100%;
  }
}
#header .container__link li::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  margin: auto;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #fff;
  width: 0px;
  height: 4px;
  background-color: #CEB071;
}
#header .container__link li:hover::after {
  width: 100%;
}
@media (max-width: 1279px) {
  #header .container__link li:hover::after {
    width: 0;
  }
}
#header .container__btn {
  margin-left: 20px;
}
#header .container__btn:hover::after {
  width: 0 !important;
}
#header .container .bling-button {
  color: black !important;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
  font-weight: 500;
  font-size: 20px;
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #CEB071;
  width: 184px !important;
}
@media (max-width: 1279px) {
  #header .container .bling-button {
    padding: 12px 0;
    margin: 10px 0 20px;
  }
}
#header .container .bling-button::before {
  position: absolute;
  top: -40%;
  right: 110%;
  -webkit-transform: rotate(17deg);
      -ms-transform: rotate(17deg);
          transform: rotate(17deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(253, 249, 199, 0)), color-stop(50%, rgba(253, 249, 199, 0.5)), color-stop(55%, rgba(253, 249, 199, 0.5)), to(rgba(253, 249, 199, 0)));
  background: linear-gradient(to right, rgba(253, 249, 199, 0) 0%, rgba(253, 249, 199, 0.5) 50%, rgba(253, 249, 199, 0.5) 55%, rgba(253, 249, 199, 0) 100%);
  width: 60%;
  height: 200%;
  content: "";
  -webkit-animation: shine-move 2s infinite linear;
          animation: shine-move 2s infinite linear;
}
#header .container #header-toggle {
  display: none;
}
@media (max-width: 1279px) {
  #header .container #header-toggle {
    display: inline-block;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../images/icon_hambuger_open.svg);
  }
}
#header .container #header-toggle.toggled {
  background-image: url(../images/icon_hambuger_close.svg);
}

#footer {
  font-family: "Noto Sans TC";
  font-weight: 400;
  padding: 64px 0;
  background-color: #111111;
  line-height: 1;
}
@media (max-width: 1279px) {
  #footer {
    padding: 50px 0 80px;
  }
}
@media (max-width: 769px) {
  #footer {
    padding-bottom: 100px;
    overflow: hidden;
  }
}
#footer.hasfooterNotice {
  padding: 32px 0 64px 0;
}
@media (max-width: 1279px) {
  #footer.hasfooterNotice {
    padding: 20px 0 80px;
  }
}
@media (max-width: 769px) {
  #footer.hasfooterNotice {
    padding-bottom: 100px;
    overflow: hidden;
  }
}
#footer .footerNotice {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.5;
  padding: 0 2em 3em 3em;
  text-align: justify;
}
#footer .top-wrap {
  margin: 0 auto 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1279px) {
  #footer .top-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 680px;
  }
}
@media (max-width: 769px) {
  #footer .top-wrap {
    width: 320px;
  }
}
@media (max-width: 320px) {
  #footer .top-wrap {
    max-width: 320px;
    margin: 0 20px;
  }
}
#footer .top-wrap .logo {
  width: 137px;
  margin-right: 60px;
}
@media (max-width: 1279px) {
  #footer .top-wrap .logo {
    margin-right: 0;
    margin-bottom: 65px;
  }
}
#footer .top-wrap .list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
@media (max-width: 769px) {
  #footer .top-wrap .list-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#footer .top-wrap .list-wrap ul {
  margin-right: 80px;
}
@media (max-width: 1279px) {
  #footer .top-wrap .list-wrap ul {
    margin-right: 60px;
  }
}
@media (max-width: 769px) {
  #footer .top-wrap .list-wrap ul {
    margin-right: 0;
    width: 50%;
  }
}
@media (max-width: 769px) {
  #footer .top-wrap .list-wrap ul:first-of-type {
    margin-bottom: 50px;
  }
}
#footer .top-wrap .list-wrap ul:last-of-type {
  margin-right: 0;
}
#footer .top-wrap .list-wrap ul li.title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: "Noto Sans TC";
  font-weight: 700;
}
#footer .top-wrap .list-wrap ul li.link {
  margin-bottom: 20px;
  letter-spacing: 0;
}
#footer .top-wrap .list-wrap ul li.link a {
  font-size: 14px;
  color: #fff;
}
#footer .top-wrap .list-wrap ul li.link a.contact-web {
  display: inline-block;
}
@media (max-width: 769px) {
  #footer .top-wrap .list-wrap ul li.link a.contact-web {
    display: none;
  }
}
#footer .top-wrap .list-wrap ul li.link a.contact-mobile {
  display: none;
}
@media (max-width: 769px) {
  #footer .top-wrap .list-wrap ul li.link a.contact-mobile {
    display: inline-block;
  }
}
#footer .bottom-wrap {
  width: 960px;
  margin: auto;
  border-top: 1px solid #4f4f4f;
  padding-top: 16px;
  color: #4f4f4f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1279px) {
  #footer .bottom-wrap {
    width: 680px;
  }
}
@media (max-width: 769px) {
  #footer .bottom-wrap {
    width: 320px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#footer .bottom-wrap a {
  color: #a3a3a3;
}
#footer .bottom-wrap .links-container {
  font-size: 14px;
}
@media (max-width: 769px) {
  #footer .bottom-wrap .links-container {
    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;
  }
}
#footer .bottom-wrap .links-container a {
  display: inline-block;
  margin-right: 30px;
  letter-spacing: 2px;
}
@media (max-width: 769px) {
  #footer .bottom-wrap .links-container a {
    margin-right: 0;
    margin-bottom: 12px;
  }
}
#footer .bottom-wrap .links-container a .link-img-bank {
  margin-right: 12px;
  position: relative;
  top: 2px;
  width: 16px;
}
@media (max-width: 769px) {
  #footer .bottom-wrap .links-container p span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    margin: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 12px;
  }
}
#footer .bottom-wrap .copyright-desc {
  font-size: 14px;
  letter-spacing: 1px;
}
@media (max-width: 769px) {
  #footer .bottom-wrap .copyright-desc {
    text-align: center;
    margin-top: 20px;
  }
}
#footer .footer--flex {
  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;
  margin: auto;
  margin-top: 40px;
  width: 100%;
  max-width: 960px;
  color: #fff;
}
@media (max-width: 1279px) {
  #footer .footer--flex {
    margin-top: 35px;
    max-width: 680px;
  }
}
@media (max-width: 769px) {
  #footer .footer--flex {
    display: block;
    max-width: 320px;
    margin-top: 30px;
  }
}
@media (max-width: 320px) {
  #footer .footer--flex {
    max-width: 280px;
    margin: 30px 20px 0 20px;
  }
}
#footer .footer__title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 1279px) {
  #footer .footer__title {
    font-size: 22px;
  }
}
@media (max-width: 769px) {
  #footer .footer__title {
    margin: auto;
    margin-bottom: 15px;
  }
}
#footer .footer__text {
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 1279px) {
  #footer .footer__text {
    width: 470px;
  }
}
@media (max-width: 769px) {
  #footer .footer__text {
    width: auto;
  }
}
#footer .footer__text a {
  text-decoration: underline;
}

#foot {
  position: relative;
  width: 100%;
  padding: 50px;
  background: #332727;
}
@media (max-width: 1279px) {
  #foot {
    padding: 30px 40px;
  }
}
@media (max-width: 769px) {
  #foot {
    padding: 30px;
  }
}
#foot .footer--flex {
  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;
  margin-bottom: 40px;
}
@media (max-width: 1279px) {
  #foot .footer--flex {
    margin-bottom: 35px;
  }
}
@media (max-width: 769px) {
  #foot .footer--flex {
    display: block;
    margin-bottom: 30px;
  }
}
#foot .footer__title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-right: 60px;
}
@media (max-width: 1279px) {
  #foot .footer__title {
    font-size: 22px;
    margin-right: 30px;
  }
}
@media (max-width: 769px) {
  #foot .footer__title {
    margin: auto;
    margin-bottom: 15px;
  }
}
#foot .footer__text {
  width: 725px;
  font-size: 14px;
  line-height: 1.71;
}
@media (max-width: 1279px) {
  #foot .footer__text {
    width: 470px;
    font-size: 12px;
  }
}
@media (max-width: 769px) {
  #foot .footer__text {
    width: auto;
  }
}
#foot .footer_smart {
  letter-spacing: 1px;
  text-align: center;
  line-height: 1;
}
#foot .footer_smart span {
  display: inline-block;
}
#foot .footer_smart span::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-left: 7px;
  margin-right: 8px;
  background: url("../img/sinopac-logo.svg") no-repeat 0 0;
  position: relative;
  top: 5px;
}
#foot .footer_smart a {
  display: inline-block;
  letter-spacing: 0;
  margin: 10px 5px 0 5px;
  vertical-align: middle;
}
#foot .footer_smart #cdic {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}

.footer_ico {
  margin-right: 0.2em;
}

@media (max-width: 1279px) {
  #download {
    display: block;
  }
}

#footer_download {
  position: relative;
  width: 100%;
  height: 505px;
  padding: 90px 20px;
  background: url(../img/index/bg_curve.svg) center/cover no-repeat;
  color: white;
  overflow: hidden;
  line-height: 1;
}
@media (max-width: 769px) {
  #footer_download {
    height: auto;
    position: unset;
    padding: 47px 20px 0 20px;
  }
}
#footer_download .footer_download_title {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 8px;
  text-align: center;
  margin-left: 69px;
}
@media (max-width: 1279px) {
  #footer_download .footer_download_title {
    font-size: 20px;
    letter-spacing: 5px;
    margin-left: 115px;
  }
}
@media (max-width: 769px) {
  #footer_download .footer_download_title {
    font-size: 16px;
    letter-spacing: 3.2px;
    margin-left: 0;
  }
}
#footer_download .footer_download_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1279px) {
  #footer_download .footer_download_con {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: 760px;
  }
}
@media (max-width: 769px) {
  #footer_download .footer_download_con {
    display: block;
    position: relative;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    min-width: auto;
  }
}
#footer_download .footer_download_con .footer_download_img {
  margin-right: 40px;
}
@media (max-width: 769px) {
  #footer_download .footer_download_con .footer_download_img {
    margin-right: 26px;
    margin: 9% auto -4% auto;
    text-align: center;
    width: 64%;
    max-width: 236px;
  }
  #footer_download .footer_download_con .footer_download_img img {
    width: 100%;
  }
}
#footer_download .footer_download_con .footer_download_text {
  margin-top: 24px;
}
@media (max-width: 1279px) {
  #footer_download .footer_download_con .footer_download_text {
    margin-top: 16px;
  }
}
#footer_download .footer_download_con .footer_download_text h6 {
  font-size: 24px;
}
@media (max-width: 1279px) {
  #footer_download .footer_download_con .footer_download_text h6 {
    font-size: 16px;
  }
}
@media (max-width: 769px) {
  #footer_download .footer_download_con .footer_download_text h6 {
    display: none;
  }
}
#footer_download .footer_download_con .footer_download_text > p {
  white-space: nowrap;
  font-size: 16px;
  letter-spacing: 0.8px;
  margin: 20px 0 45px 0;
}
@media (max-width: 1279px) {
  #footer_download .footer_download_con .footer_download_text > p {
    font-size: 12px;
    margin: 14px 0 30px 0;
  }
}
@media (max-width: 769px) {
  #footer_download .footer_download_con .footer_download_text > p {
    display: none;
  }
}
#footer_download .footer_download_con .footer_download_text > p span {
  color: #825f14;
}
#footer_download .footer_download_con .footer_download_text .footer_download_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 769px) {
  #footer_download .footer_download_con .footer_download_text .footer_download_box {
    display: block;
  }
}
#footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_img {
  margin-right: 24px;
}
@media (max-width: 1279px) {
  #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_img {
    margin-right: 10px;
  }
  #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_img img {
    width: 100%;
  }
}
@media (max-width: 769px) {
  #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_img {
    display: none;
  }
}
#footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p {
  font-size: 14px;
}
@media (max-width: 1279px) {
  #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p {
    font-size: 13px;
  }
}
#footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:first-child {
  font-size: 36px;
  margin-bottom: 19px;
}
@media (max-width: 1279px) {
  #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:first-child {
    font-size: 24px;
    margin-bottom: 14px;
    margin-top: 4px;
  }
}
@media (max-width: 769px) {
  #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:first-child {
    margin-bottom: 11px;
    margin-top: 24px;
    text-align: center;
  }
}
#footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:nth-child(2) {
  line-height: 1.1em;
}
@media (max-width: 769px) {
  #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:nth-child(2) {
    text-align: center;
  }
}
#footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:nth-child(3) {
  line-height: 1.1em;
  margin-top: 0.5em;
  white-space: nowrap;
}
@media (max-width: 769px) {
  #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner p:nth-child(3) {
    text-align: center;
    margin-bottom: 22px;
    white-space: normal;
  }
}
#footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner .footer_download_box_btn {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1279px) {
  #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner .footer_download_box_btn {
    margin-top: 12px;
  }
}
@media (max-width: 769px) {
  #footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner .footer_download_box_btn {
    text-align: center;
    margin: 0 auto;
    max-width: 300px;
  }
}
#footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner .footer_download_box_btn a {
  margin-right: 5px;
  border-radius: 5px;
}
#footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner .footer_download_box_btn a img {
  width: 100%;
  display: block;
}
#footer_download .footer_download_con .footer_download_text .footer_download_box .footer_download_box_inner .footer_download_box_btn a:last-child {
  margin-right: 0;
}

@font-face {
  font-family: "GenSenRounded-B";
  src: url("../font/GenSenRoundedTW-B.ttf") format("truetype");
  font-weight: 900;
}
@font-face {
  font-family: "GenSenRounded-R";
  src: url("../font/GenSenRoundedTW-R.ttf") format("truetype");
  font-weight: 900;
}
.rounded-B {
  font-family: "GenSenRounded-B";
}

.rounded-R {
  font-family: "GenSenRounded-R";
}

/* lb */
.lboxed {
  display: none;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  max-width: 600px;
}

.lbox-block {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  border-radius: 28px;
  position: relative;
  box-sizing: border-box;
  padding: 3em 1.6em;
}
@media (max-width: 1279px) {
  .lbox-block {
    width: 340px;
    border-radius: 24px;
  }
}
@media (max-width: 769px) {
  .lbox-block {
    -webkit-transform: scale(0.85);
        -ms-transform: scale(0.85);
            transform: scale(0.85);
  }
}
.lbox-block .close_x {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 7px;
  top: 7px;
  cursor: pointer;
}
@media (max-width: 1279px) {
  .lbox-block .close_x {
    right: 5px;
    top: 5px;
  }
}
.lbox-block .close_x:after, .lbox-block .close_x:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 3px;
  background: #cd9b1d;
  border-radius: 10px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.lbox-block .close_x:after {
  -webkit-transform: translateX(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
}

.lbox-block__outer {
  width: 100%;
  background: white;
  padding: 40px;
  border-radius: 15px;
  margin: 0 auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.lbox-block .announce {
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-ideograph;
}
.lbox-block .announce__title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
  color: #424242;
}
.lbox-block .announce__content {
  text-align: left;
}

.lbox-ghost {
  position: absolute;
  max-width: 160px;
  pointer-events: none;
  left: -55px;
  bottom: -50px;
  pointer-events: none;
}
@media (max-width: 1279px) {
  .lbox-ghost {
    max-width: 130px;
  }
}
@media (max-width: 769px) {
  .lbox-ghost {
    left: -25px;
    bottom: -40px;
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
  }
}

.announce__content {
  font-size: 18px;
  line-height: 1.4;
  text-align: center !important;
  font-weight: bold;
  color: #000;
}
.announce .red {
  color: #d00f24;
}
.announce__sub {
  color: #c09120;
  font-size: 20px;
}

@-webkit-keyframes lightboxFadeIn {
  0% {
    opacity: 0;
    z-index: 10;
  }
  to {
    opacity: 1;
    z-index: 10;
  }
}
@keyframes lightboxFadeIn {
  0% {
    opacity: 0;
    z-index: 10;
  }
  to {
    opacity: 1;
    z-index: 10;
  }
}
@-webkit-keyframes overlayFadeIn {
  0% {
    opacity: 0;
    z-index: 9;
  }
  to {
    opacity: 1;
    z-index: 9;
  }
}
@keyframes overlayFadeIn {
  0% {
    opacity: 0;
    z-index: 9;
  }
  to {
    opacity: 1;
    z-index: 9;
  }
}
.btn-block {
  text-align: center;
  margin-top: 48px;
}
@media (max-width: 1279px) {
  .btn-block {
    margin-top: 20px;
  }
}
.btn-block .btn {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  padding: 0.9em 0.9em;
  margin: 1.5em auto;
  border-radius: 1.5em;
  background-color: white;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: inline-block;
  border: #ffffff 3px solid;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 1279px) {
  .btn-block .btn {
    width: 100%;
  }
}
.btn-block .btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 40%;
  height: 100%;
  border-radius: 2em;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}
.btn-block .btn:hover {
  background-color: transparent;
  color: white;
}
.btn-block .btn:hover:before {
  opacity: 1;
  width: 100%;
}
.btn-block .btn.gold3 {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: bold;
  padding: 25px 50px;
  margin: 0 auto;
  border-radius: 42.5px;
  background-color: #cd9b1d;
  color: white;
  position: relative;
  border: 0px;
  z-index: 2;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: inline-block;
  border: solid 1px #cd9b1d;
}
.btn-block .btn.gold3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 40%;
  height: 100%;
  border-radius: 42.5px;
  background: #8d6500;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}
.btn-block .btn.gold3:hover {
  background-color: transparent;
  color: white;
}
.btn-block .btn.gold3:hover:before {
  opacity: 1;
  width: 100%;
}
.btn-block .btn.white {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: bold;
  padding: 25px 50px;
  margin: 0 auto;
  border-radius: 42.5px;
  position: relative;
  color: #cd9b1d;
  border: 0px;
  z-index: 2;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: inline-block;
  border: 1px solid #cd9b1d;
  background-color: white;
}
.btn-block .btn.white:hover {
  background-color: transparent;
  color: white;
}
.btn-block .btn.white:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 40%;
  height: 100%;
  border-radius: 42.5px;
  background: #8d6500;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}
.btn-block .btn.white:hover:before {
  opacity: 1;
  width: 100%;
}
.btn-block .btn.btn_pad_thin {
  padding-top: 10px;
  padding-bottom: 10px;
}
.btn-block .btn.btn_mg {
  margin-right: 20px;
  margin-left: 20px;
}
@media (max-width: 1279px) {
  .btn-block .btn.btn_mg {
    margin: 8px 0;
  }
}

:root {
  --gap: 20px;
  --speed: 0.55s;
  --closed: 200px;
  --open: 1062px;
}
@media (max-width: 768px) {
  :root {
    --closed: 100%;
    --open: 100%;
  }
}

.section-kv {
  margin-top: 68px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.section-kv .bg {
  position: absolute;
  width: 961px;
  height: 961px;
  top: -442px;
  left: -384px;
}
@media (max-width: 768px) {
  .section-kv {
    margin-top: 65px;
    padding-bottom: 18px;
  }
}
.section-kv__wrapper {
  padding: 82px 20px 110px 20px;
  height: auto;
}
@media (max-width: 768px) {
  .section-kv__wrapper {
    padding: 6.6666666667vw 5.1282051282vw 19.4871794872vw 5.1282051282vw;
  }
}

.slider {
  margin: auto;
  overflow: hidden;
  width: 100%;
  max-width: 1282px;
}

.controls {
  display: none;
}

.track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--gap);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  scroll-behavior: smooth;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  width: 100%;
}
@media (max-width: 768px) {
  .track {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-bottom: 0;
    gap: 0;
  }
}

.track::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.5s ease, -webkit-flex-basis 0.5s ease;
  transition: all 0.5s ease, -webkit-flex-basis 0.5s ease;
  transition: all 0.5s ease, flex-basis 0.5s ease;
  transition: all 0.5s ease, flex-basis 0.5s ease, -webkit-flex-basis 0.5s ease, -ms-flex-preferred-size 0.5s ease;
  height: 500px;
  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;
}
@media (max-width: 1279px) {
  .project-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15.6372165754vw;
            flex: 0 0 15.6372165754vw;
    height: 39.0930414386vw;
  }
}
@media (max-width: 768px) {
  .project-card {
    min-height: 25.641025641vw;
    height: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}
.project-card--01 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(17%, #A98768), to(#212121));
  background: linear-gradient(180deg, #A98768 17%, #212121 100%);
}
@media (max-width: 768px) {
  .project-card--01 {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(48%, #A98768), color-stop(66%, rgba(169, 135, 104, 0.8)), to(rgba(47, 43, 40, 0)));
    background: linear-gradient(180deg, #A98768 48%, rgba(169, 135, 104, 0.8) 66%, rgba(47, 43, 40, 0) 100%);
  }
}
.project-card--02 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(37%, #53729E), color-stop(84%, #1F2F46), to(rgba(33, 33, 33, 0)));
  background: linear-gradient(180deg, #53729E 37%, #1F2F46 84%, rgba(33, 33, 33, 0) 100%);
}
.project-card__title {
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  line-height: 1.3;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding-top: 50px;
  letter-spacing: 0.4em;
}
@media (max-width: 1279px) {
  .project-card__title {
    font-size: 2.3455824863vw;
    padding-top: 3.9093041439vw;
  }
}
@media (max-width: 768px) {
  .project-card__title {
    font-size: 6.1538461538vw;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    text-align: center;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 5.1282051282vw;
    letter-spacing: 0;
  }
}
.project-card__content {
  display: none;
}
.project-card[active] {
  -webkit-box-flex: 5.31;
      -ms-flex-positive: 5.31;
          flex-grow: 5.31;
}
@media (max-width: 768px) {
  .project-card[active] {
    min-height: 128.2051282051vw;
    height: auto;
  }
}
.project-card[active].project-card--01 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(33%, #A98768), to(#212121));
  background: linear-gradient(180deg, #A98768 33%, #212121 100%);
}
@media (max-width: 768px) {
  .project-card[active].project-card--01 {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(13%, #A98768), color-stop(85%, #665545), to(rgba(33, 33, 33, 0)));
    background: linear-gradient(180deg, #A98768 13%, #665545 85%, rgba(33, 33, 33, 0) 100%);
  }
}
.project-card[active].project-card--02 {
  background: -webkit-gradient(linear, left top, left bottom, from(#53729E), color-stop(73%, #271C31), to(rgb(33, 33, 33)));
  background: linear-gradient(180deg, #53729E 0%, #271C31 73%, rgb(33, 33, 33) 100%);
}
@media (max-width: 768px) {
  .project-card[active].project-card--02 {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(13%, #53729E), color-stop(85%, #271C31), to(#212121));
    background: linear-gradient(180deg, #53729E 13%, #271C31 85%, #212121 100%);
  }
}
.project-card[active] .project-card__title {
  display: none;
}
.project-card[active] .project-card__content {
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  -ms-flex-preferred-size: var(--open);
      flex-basis: var(--open);
  z-index: 2;
}
@media (max-width: 768px) {
  .project-card[active] .project-card__content {
    position: absolute;
  }
}

.content-01 {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 28px;
  white-space: nowrap;
  -ms-flex-preferred-size: var(--open);
      flex-basis: var(--open);
}
@media (max-width: 1279px) {
  .content-01 {
    margin-top: 2.1892103206vw;
  }
}
@media (max-width: 768px) {
  .content-01 {
    margin-top: 8.7179487179vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.content-01--tiger {
  position: relative;
  max-width: 334px;
  width: 100%;
  height: 460px;
  margin-left: 31px;
  margin-right: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 334px;
      flex-basis: 334px;
}
.content-01--tiger img {
  width: 100%;
}
@media (max-width: 1279px) {
  .content-01--tiger {
    max-width: 26.114151681vw;
    height: 35.9655981235vw;
    margin-left: 2.4237685692vw;
    margin-right: 1.5637216575vw;
  }
}
@media (max-width: 768px) {
  .content-01--tiger {
    max-width: 334px;
    position: absolute;
    top: 23.0769230769vw;
    left: 2.8205128205vw;
    margin: 0;
    width: 48.7179487179vw;
    height: 67.9487179487vw;
  }
}
.content-01__box {
  margin-top: 30px;
  width: 597px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1;
  position: relative;
}
@media (max-width: 1279px) {
  .content-01__box {
    margin-top: 2.3455824863vw;
    padding-right: 20px;
    width: 46.6770914777vw;
  }
}
@media (max-width: 768px) {
  .content-01__box {
    margin: 0;
    padding: 0;
    width: auto;
  }
}
.content-01--main-title {
  padding: 10px;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.6;
}
@media (max-width: 1279px) {
  .content-01--main-title {
    padding: 0.7818608288vw;
    font-size: 3.7529319781vw;
  }
}
@media (max-width: 768px) {
  .content-01--main-title {
    font-size: 6.6666666667vw;
    text-align: center;
    padding: 0;
    margin-bottom: 2.0512820513vw;
  }
}
.content-01--items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  gap: 20px;
  max-width: 597px;
  width: 100%;
  margin-bottom: 34px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1279px) {
  .content-01--items {
    padding: 0.7818608288vw 0;
    gap: 1.5637216575vw;
    max-width: none;
    margin-bottom: 2.6583268178vw;
  }
}
@media (max-width: 768px) {
  .content-01--items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-right: 0vw;
    gap: 0;
    margin-bottom: 5.8974358974vw;
  }
}
.content-01--item {
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .content-01--item {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(136, 181, 213, 0.4)), to(rgba(223, 172, 198, 0.4)));
    background: linear-gradient(to bottom, rgba(136, 181, 213, 0.4) 0%, rgba(223, 172, 198, 0.4) 100%);
    padding: 2.5641025641vw;
  }
  .content-01--item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border-bottom: 3px solid rgba(253, 247, 184, 0.2);
    pointer-events: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
            transform: scale(0.98);
  }
  .content-01--item:first-child {
    border-radius: 10px 10px 0 0;
  }
}
.content-01--item-info {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #E7C48B;
  border: 3px solid #CFB083;
  border-radius: 100px;
  color: #212121;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.2;
}
@media (max-width: 1279px) {
  .content-01--item-info {
    font-size: 1.250977326vw;
    margin-bottom: 0.7818608288vw;
  }
}
@media (max-width: 768px) {
  .content-01--item-info {
    background: transparent;
    border: none;
    aspect-ratio: 0;
    display: inline-block;
    margin: 0;
    color: #FDF7B8;
    font-size: 4.1025641026vw;
    margin-bottom: 1.0256410256vw;
  }
}
.content-01--item-info .card-info {
  font-size: 23px;
  display: block;
}
.content-01--item-info .card-info-small {
  font-size: 16px;
}
@media (max-width: 1279px) {
  .content-01--item-info .card-info {
    font-size: 1.7982799062vw;
  }
}
@media (max-width: 768px) {
  .content-01--item-info .card-info {
    font-size: 4.1025641026vw;
    display: inline;
  }
  .content-01--item-info .card-info-small {
    font-size: 4.1025641026vw;
  }
}
.content-01--item-info .br-web {
  display: block;
}
@media (max-width: 768px) {
  .content-01--item-info .br-web {
    display: none;
  }
}
.content-01--item--text {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 1279px) {
  .content-01--item--text {
    font-size: 1.250977326vw;
  }
}
@media (max-width: 768px) {
  .content-01--item--text {
    font-size: 4.1025641026vw;
  }
}

.content-02 {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 48px;
  white-space: nowrap;
  -ms-flex-preferred-size: var(--open);
      flex-basis: var(--open);
}
@media (max-width: 1279px) {
  .content-02 {
    margin-top: 2.9710711493vw;
  }
}
@media (max-width: 768px) {
  .content-02 {
    margin-top: 10.2564102564vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.content-02--tiger {
  position: relative;
  width: auto;
  height: 460px;
  margin-left: 31px;
  margin-right: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 350px;
      flex-basis: 350px;
}
.content-02--tiger img {
  width: 100%;
}
@media (max-width: 1279px) {
  .content-02--tiger {
    max-width: 27.365129007vw;
    height: 35.027365129vw;
    margin-left: 2.4237685692vw;
    margin-right: 3.1274433151vw;
  }
}
@media (max-width: 768px) {
  .content-02--tiger {
    max-width: 334px;
    position: absolute;
    top: 25.641025641vw;
    left: 0vw;
    margin: 0;
    width: 50.5128205128vw;
    height: 67.9487179487vw;
  }
}
.content-02__box {
  margin-top: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
@media (max-width: 1279px) {
  .content-02__box {
    margin-top: 3.9093041439vw;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .content-02__box {
    margin: 0;
    padding-right: 0;
  }
}
.content-02--title {
  font-size: 46px;
  font-weight: bold;
  line-height: 1.6;
  position: relative;
  z-index: inherit;
}
@media (max-width: 1279px) {
  .content-02--title {
    font-size: 3.5965598124vw;
  }
}
@media (max-width: 768px) {
  .content-02--title {
    font-size: 6.6666666667vw;
    padding: 0;
    text-align: center;
    display: block;
  }
}
.content-02--label {
  font-size: 80px;
  font-weight: bold;
  line-height: 1.6;
  position: relative;
  margin-bottom: 42px;
}
@media (max-width: 1279px) {
  .content-02--label {
    font-size: 6.2548866302vw;
    margin-bottom: 3.2838154808vw;
  }
}
@media (max-width: 768px) {
  .content-02--label {
    font-size: 11.7948717949vw;
    text-align: center;
    margin-bottom: 68.9743589744vw;
  }
}
.content-02--label .content-desc {
  position: absolute;
  top: 128px;
  right: 18px;
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 3px 50px;
  color: white;
  background: -webkit-gradient(linear, left top, right top, color-stop(4%, rgba(33, 33, 33, 0)), color-stop(34%, #212121), color-stop(74%, #212121), to(rgba(41, 31, 53, 0)));
  background: linear-gradient(to right, rgba(33, 33, 33, 0) 4%, #212121 34%, #212121 74%, rgba(41, 31, 53, 0) 100%);
  opacity: 0;
  -webkit-animation: fadeIn 0.8s ease forwards;
          animation: fadeIn 0.8s ease forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
@media (max-width: 1279px) {
  .content-02--label .content-desc {
    top: 10.0078186083vw;
    right: 1.4073494918vw;
    font-size: 1.250977326vw;
    padding: 0.2345582486vw 3.9093041439vw;
  }
}
@media (max-width: 768px) {
  .content-02--label .content-desc {
    top: auto;
    bottom: -35.8974358974vw;
    right: 2.8205128205vw;
    padding: 5.1282051282vw;
    background: #212121;
    border-radius: 19.4871794872vw;
    font-size: 4.6153846154vw;
    text-align: start;
  }
}
.content-02--label .content-desc .br-mb:before {
  content: "， ";
}
@media (max-width: 768px) {
  .content-02--label .content-desc .br-mb {
    display: block;
  }
  .content-02--label .content-desc .br-mb:before {
    display: none;
  }
}

.project-button {
  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;
  max-width: 244px;
  width: 100%;
  padding: 16px 10px;
  background: transparent;
  border: 2px solid #DFC78F;
  border-radius: 999px;
  color: #DFC78F;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 1279px) {
  .project-button {
    padding: 1.250977326vw 0.0781860829vw;
    width: 19.077404222vw;
  }
}
@media (max-width: 768px) {
  .project-button {
    margin: 0 auto;
    width: 40.5128205128vw;
    padding: 2.5vw 1vw;
  }
}
.project-button p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media (max-width: 1279px) {
  .project-button p {
    font-size: 1.8764659891vw;
  }
}
@media (max-width: 768px) {
  .project-button p {
    font-size: 3.8461538462vw;
  }
}
.project-button .btn-icon {
  width: 24px;
  height: 24px;
  margin-left: 8px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1279px) {
  .project-button .btn-icon {
    max-width: 24px;
    max-height: 24px;
    width: 1.8764659891vw;
    height: 1.8764659891vw;
  }
}
@media (max-width: 768px) {
  .project-button .btn-icon {
    width: 3.8461538462vw !important;
    height: 3.8461538462vw !important;
    margin-left: 4px;
  }
}
.project-button .btn-icon::before, .project-button .btn-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/kv/send-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.project-button .btn-icon::before {
  opacity: 1;
}
.project-button:hover {
  background-position: left center;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.project-button:hover .btn-icon::before {
  -webkit-animation: flyOut 0.8s forwards;
          animation: flyOut 0.8s forwards;
}
.project-button:hover .btn-icon::after {
  -webkit-animation: flyIn 0.8s forwards;
          animation: flyIn 0.8s forwards;
  -webkit-animation-delay: 0.06s;
          animation-delay: 0.06s;
}

.bg-ball-light {
  background-image: url("../images/kv/bg-light.webp");
  background-size: contain;
  background-repeat: no-repeat;
}

.bg-ball-blur {
  background-image: url("../images/kv/bg-blur.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.bg-ball {
  position: absolute;
  z-index: 0;
  -webkit-animation: float infinite;
          animation: float infinite;
}
.bg-ball-01-01 {
  top: 30%;
  left: -8%;
  width: 7%;
  height: 10%;
  -webkit-animation-duration: 4.6s;
          animation-duration: 4.6s;
}
@media (max-width: 768px) {
  .bg-ball-01-01 {
    width: 5.1282051282vw;
    height: 5.1282051282vw;
    top: 5%;
    left: 21%;
    z-index: -1;
  }
}
.bg-ball-01-02 {
  top: -10%;
  left: 5%;
  width: 22%;
  height: 29%;
  z-index: -1;
  -webkit-animation-duration: 2.8s;
          animation-duration: 2.8s;
}
@media (max-width: 768px) {
  .bg-ball-01-02 {
    width: 7.4358974359vw;
    height: 7.4358974359vw;
    top: 17.9487179487vw;
    left: -4vw;
  }
}
.bg-ball-01-03 {
  top: -10%;
  right: -15%;
  width: 15%;
  height: 20%;
  -webkit-animation-duration: 3.5s;
          animation-duration: 3.5s;
}
@media (max-width: 1024px) {
  .bg-ball-01-03 {
    display: none;
  }
}
@media (max-width: 768px) {
  .bg-ball-01-03 {
    display: block;
    width: 14.358974359vw;
    height: 14.358974359vw;
    top: -18.4615384615vw;
    right: 47%;
  }
}
.bg-ball-01-04 {
  display: none;
}
@media (max-width: 768px) {
  .bg-ball-01-04 {
    display: block;
    width: 13.0769230769vw;
    height: 13.0769230769vw;
    top: 47.6923076923vw;
    right: -14.358974359vw;
    -webkit-animation-duration: 6.2s;
            animation-duration: 6.2s;
  }
}
.bg-ball-01-05 {
  display: none;
}
@media (max-width: 768px) {
  .bg-ball-01-05 {
    display: block;
    width: 7.6923076923vw;
    height: 7.6923076923vw;
    top: 86.1538461538vw;
    right: -6.6666666667vw;
    -webkit-animation-duration: 7s;
            animation-duration: 7s;
  }
}
.bg-ball-02-01 {
  width: 9%;
  height: 11%;
  top: 28%;
  left: -9%;
  z-index: -1;
  max-width: 45px;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}
@media (max-width: 768px) {
  .bg-ball-02-01 {
    width: 5.1282051282vw;
    height: 5.1282051282vw;
    top: 82.0512820513vw;
    right: 17.4358974359vw;
    left: auto;
  }
}
.bg-ball-02-02 {
  top: -17%;
  left: 4%;
  width: 24%;
  height: 34%;
  max-width: 131px;
  opacity: 0.8;
  -webkit-animation-duration: 5.9s;
          animation-duration: 5.9s;
}
@media (max-width: 768px) {
  .bg-ball-02-02 {
    width: 9.7435897436vw;
    height: 9.7435897436vw;
    top: 74.358974359vw;
    right: -5.1282051282vw;
    left: auto;
  }
}
.bg-ball-02-03 {
  top: 45%;
  right: -21%;
  width: 16%;
  height: 22%;
  max-width: 85px;
  -webkit-animation-duration: 6.3s;
          animation-duration: 6.3s;
}
@media (max-width: 768px) {
  .bg-ball-02-03 {
    width: 9.7435897436vw;
    height: 9.7435897436vw;
    top: 62.0512820513vw;
    right: 10.7692307692vw;
    opacity: 0.6;
  }
}
.bg-ball-02-04 {
  display: none;
}
@media (max-width: 768px) {
  .bg-ball-02-04 {
    display: block;
    width: 5.1282051282vw;
    height: 5.1282051282vw;
    top: 7.6923076923vw;
    left: 21.0256410256vw;
    -webkit-animation-duration: 7s;
            animation-duration: 7s;
  }
}
.bg-ball-02-05 {
  display: none;
}
@media (max-width: 768px) {
  .bg-ball-02-05 {
    display: block;
    width: 14.8717948718vw;
    height: 14.8717948718vw;
    top: -19.4871794872vw;
    right: 30.7692307692vw;
    -webkit-animation-duration: 6.5s;
            animation-duration: 6.5s;
  }
}

.star {
  position: absolute;
  z-index: 2;
  -webkit-animation: spark-shine infinite;
          animation: spark-shine infinite;
}
.star-white {
  background-image: url("../images/kv/star-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.star-pink {
  background-image: url("../images/kv/star-pink.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.star-01-01 {
  width: 13%;
  height: 19%;
  top: -7%;
  left: -11%;
  -webkit-animation-duration: 3.2s;
          animation-duration: 3.2s;
}
@media (max-width: 768px) {
  .star-01-01 {
    display: none;
  }
}
.star-01-02 {
  width: 4%;
  height: 5%;
  top: -4%;
  right: 5.3%;
  -webkit-animation-duration: 2.1s;
          animation-duration: 2.1s;
}
@media (max-width: 768px) {
  .star-01-02 {
    width: 6.4102564103vw;
    height: 6.4102564103vw;
    top: 71.7948717949vw;
    left: -4.1025641026vw;
    right: auto;
  }
}
.star-01-03 {
  width: 8%;
  height: 12%;
  max-width: 49px;
  top: 0%;
  right: 0.3%;
  -webkit-animation-duration: 3.4s;
          animation-duration: 3.4s;
}
@media (max-width: 768px) {
  .star-01-03 {
    width: 5.3846153846vw;
    height: 5.3846153846vw;
    top: -5.1282051282vw;
    right: -3.0769230769vw;
  }
}
.star-01-04 {
  width: 4%;
  height: 6%;
  top: 56%;
  right: -3%;
  -webkit-animation-duration: 2.4s;
          animation-duration: 2.4s;
}
@media (max-width: 1024px) {
  .star-01-04 {
    display: none;
  }
}
@media (max-width: 768px) {
  .star-01-04 {
    display: block;
    width: 2.8205128205vw;
    height: 3.0769230769vw;
    top: 10.2564102564vw;
    right: -4.1025641026vw;
  }
}
.star-02-01 {
  width: 10%;
  height: 15%;
  top: -10%;
  left: -11%;
  max-width: 77px;
  -webkit-animation-duration: 3.5s;
          animation-duration: 3.5s;
}
@media (max-width: 768px) {
  .star-02-01 {
    width: 6.1538461538vw;
    height: 6.1538461538vw;
    top: 73.0769230769vw;
    left: -1.5384615385vw;
  }
}
.star-02-02 {
  width: 6%;
  height: 9%;
  top: -6%;
  right: -4%;
  max-width: 49px;
  -webkit-animation-duration: 2.7s;
          animation-duration: 2.7s;
}
@media (max-width: 768px) {
  .star-02-02 {
    width: 5.3846153846vw;
    height: 5.3846153846vw;
    top: -6.1538461538vw;
    right: 0vw;
  }
}
.star-02-03 {
  width: 4%;
  height: 5%;
  top: 45%;
  right: -3%;
  -webkit-animation-duration: 3.8s;
          animation-duration: 3.8s;
  max-width: 27px;
}
@media (max-width: 768px) {
  .star-02-03 {
    width: 2.8205128205vw;
    height: 3.0769230769vw;
    top: 10.2564102564vw;
    right: 0vw;
  }
}

.dots {
  display: none;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.dot.active {
  background: var(--accent);
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

#kv-scroll {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  cursor: pointer;
}
@media (max-width: 768px) {
  #kv-scroll {
    bottom: 2.5641025641vw;
  }
}
#kv-scroll #scroll-circle {
  position: relative;
  width: 20px;
  height: 30px;
  border: 2px solid #CEB071;
  border-radius: 10px;
  margin-bottom: 8px;
}
#kv-scroll #scroll-circle .dot {
  position: absolute;
  background-color: #CEB071;
  width: 2px;
  height: 5px;
  border-radius: 2px;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 15%;
  -webkit-animation: mouseScroll 3s infinite;
  animation: mouseScroll 3s infinite;
}
#kv-scroll span {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  font-weight: 500;
  text-align: center;
  color: #CEB071;
}

.bling-effect {
  background: linear-gradient(130deg, #FFD47B 0%, #FFD47B 30%, #fff 50%, #FFD47B 60%, #FFD47B 100%);
  background-size: 150% auto;
  background-position: 0 0;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-animation: shine-move-text 3s linear infinite;
          animation: shine-move-text 3s linear infinite;
}

.mt-5 {
  margin-top: 5px;
}

.section-task {
  padding: 47px 0 75px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section-task {
    padding: 11.5384615385vw 0;
  }
}
.section-task .ball {
  position: absolute;
  background-image: url("../images/task/ball.png");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-animation: float infinite;
          animation: float infinite;
}
.section-task .ball-01 {
  width: 276px;
  height: 276px;
  top: -94px;
  left: calc(50% + 530px);
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
}
@media (max-width: 768px) {
  .section-task .ball-01 {
    top: -6.4102564103vw;
    left: auto;
    right: -3.8461538462vw;
    width: 30.2564102564vw;
    height: 30vw;
  }
}
.section-task .ball-02 {
  width: 102px;
  height: 102px;
  top: 242px;
  right: calc(50% - 27px);
  -webkit-animation-duration: 7.4s;
          animation-duration: 7.4s;
}
@media (max-width: 768px) {
  .section-task .ball-02 {
    width: 71.5384615385vw;
    height: 70.7692307692vw;
    top: 53.3333333333vw;
    right: -43.0769230769vw;
  }
}
.section-task .ball-03 {
  width: 61px;
  height: 61px;
  top: 402px;
  right: calc(50% + 670px);
  -webkit-animation-duration: 5.8s;
          animation-duration: 5.8s;
}
@media (max-width: 768px) {
  .section-task .ball-03 {
    width: 71.5384615385vw;
    height: 70.7692307692vw;
    top: 142.8205128205vw;
    left: -22.8205128205vw;
    right: auto;
  }
}
.section-task .ball-04 {
  width: 346px;
  height: 346px;
  top: 512px;
  right: calc(50% + 443px);
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}
@media (max-width: 768px) {
  .section-task .ball-04 {
    width: 42.5641025641vw;
    height: 42.3076923077vw;
    bottom: -35.3846153846vw;
    right: -15.641025641vw;
    top: auto;
  }
}
.section-task__wrapper {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  height: auto;
  z-index: 1;
  max-width: 1320px;
  width: 100%;
}
@media (max-width: 768px) {
  .section-task__wrapper {
    padding: 0 5.1282051282vw;
    -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;
  }
}

.task-content,
.task-form,
.task-box,
#form {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  max-width: 630px;
  width: 100%;
}
@media (max-width: 768px) {
  .task-content,
  .task-form,
  .task-box,
  #form {
    max-width: none;
  }
}

.task-box {
  width: 100%;
  position: relative;
}
.task-box::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 40px;
}
@media (max-width: 768px) {
  .task-box::before {
    border-radius: 5.1282051282vw;
  }
}
.task-box::after {
  content: "";
  position: absolute;
  background: url("../images/event-end.png?v=20260410") no-repeat center;
  background-size: contain;
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}
@media (max-width: 1279px) {
  .task-box::after {
    width: 21.8921032056vw;
    height: 21.8921032056vw;
  }
}
@media (max-width: 768px) {
  .task-box::after {
    width: 51.2820512821vw;
    height: 51.2820512821vw;
  }
}

.task-content {
  margin-right: 20px;
}
@media (max-width: 1279px) {
  .task-content {
    margin-right: 1.5637216575vw;
  }
}
@media (max-width: 768px) {
  .task-content {
    margin: 0;
    margin-bottom: 8.2051282051vw;
  }
}
.task-content__title {
  margin-top: 33px;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.12em;
  position: relative;
}
.task-content__title span {
  font-family: "Manrope";
  letter-spacing: 0;
}
@media (max-width: 1279px) {
  .task-content__title {
    margin-top: 2.5801407349vw;
    font-size: 3.7529319781vw;
  }
}
@media (max-width: 768px) {
  .task-content__title {
    margin: 0;
    font-size: 10.2564102564vw;
  }
}
.task-content__title span {
  letter-spacing: 0;
}
.task-content__title .task-star {
  position: absolute;
  background-image: url("../images/task/star.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-animation: spark-shine infinite;
          animation: spark-shine infinite;
}
.task-content__title .task-star-01 {
  width: 77px;
  height: 78px;
  top: -9px;
  left: 384px;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}
@media (max-width: 1279px) {
  .task-content__title .task-star-01 {
    width: 6.0203283815vw;
    height: 6.0985144644vw;
    top: -0.7036747459vw;
    left: 30.0234558249vw;
  }
}
@media (max-width: 768px) {
  .task-content__title .task-star-01 {
    width: 14.358974359vw;
    height: 14.358974359vw;
    top: -2.8205128205vw;
    left: 66.9230769231vw;
  }
}
.task-content__title .task-star-02 {
  width: 44px;
  height: 45px;
  top: 40px;
  left: 449px;
  -webkit-animation-duration: 4.2s;
          animation-duration: 4.2s;
}
@media (max-width: 1279px) {
  .task-content__title .task-star-02 {
    width: 3.4401876466vw;
    height: 3.5183737295vw;
    top: 3.1274433151vw;
    left: 35.1055512119vw;
  }
}
@media (max-width: 768px) {
  .task-content__title .task-star-02 {
    width: 8.2051282051vw;
    height: 8.2051282051vw;
    top: 6.1538461538vw;
    left: 78.9743589744vw;
  }
}
.task-content__description {
  margin-top: 25px;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-family: "Manrope";
}
@media (max-width: 1279px) {
  .task-content__description {
    margin-top: 1.9546520719vw;
    font-size: 1.8764659891vw;
  }
}
@media (max-width: 768px) {
  .task-content__description {
    margin-top: 2.5641025641vw;
    font-size: 5.641025641vw;
  }
}
.task-content__description .task-br {
  display: block;
}
@media (max-width: 768px) {
  .task-content__description .task-br {
    display: none;
  }
}
.task-content__steps {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1279px) {
  .task-content__steps {
    margin-top: 3.1274433151vw;
  }
}
@media (max-width: 768px) {
  .task-content__steps {
    margin-top: 5.1282051282vw;
  }
}
.task-content__step {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 24px;
  max-width: 522px;
}
@media (max-width: 1279px) {
  .task-content__step {
    margin-bottom: 1.5637216575vw;
    padding: 1.8764659891vw;
  }
}
@media (max-width: 768px) {
  .task-content__step {
    padding: 5.1282051282vw 0 5.1282051282vw 3.0769230769vw;
    margin-bottom: 5.1282051282vw;
    max-width: none;
    width: 100%;
  }
}
.task-content__step .step__icon {
  width: 80px;
  height: 80px;
  margin-right: 24px;
}
@media (max-width: 1279px) {
  .task-content__step .step__icon {
    width: 6.2548866302vw;
    height: 6.2548866302vw;
    margin-right: 1.8764659891vw;
  }
}
@media (max-width: 768px) {
  .task-content__step .step__icon {
    width: 10.2564102564vw;
    height: 10.2564102564vw;
    margin-right: 4.1025641026vw;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.task-content__step .step__text {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (max-width: 1279px) {
  .task-content__step .step__text {
    font-size: 1.8764659891vw;
  }
}
@media (max-width: 768px) {
  .task-content__step .step__text {
    font-size: 5.1282051282vw;
  }
}
.task-content__step:not(:first-child)::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url("../images/task/process-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 23px;
  z-index: 10;
}
.task-content__step:last-child {
  margin-bottom: 0;
}

.task-form {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px 48px 40px 48px;
  border-radius: 40px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (max-width: 1279px) {
  .task-form {
    padding: 3.1274433151vw 3.7529319781vw 3.1274433151vw 3.7529319781vw;
  }
}
@media (max-width: 768px) {
  .task-form {
    border-radius: 5.1282051282vw;
    padding: 5.1282051282vw 4.6153846154vw;
  }
}
.task-form__title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
@media (max-width: 1279px) {
  .task-form__title {
    font-size: 3.7529319781vw;
    margin-bottom: 1.5637216575vw;
  }
}
@media (max-width: 768px) {
  .task-form__title {
    font-size: 9.2307692308vw;
    margin-bottom: 6.1538461538vw;
    letter-spacing: 0.03em;
  }
}

.form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .form__group {
    margin-bottom: 2.5641025641vw;
  }
}

.form__label {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.2;
}
@media (max-width: 1279px) {
  .form__label {
    font-size: 1.5637216575vw;
    margin-bottom: 0.3909304144vw;
  }
}
@media (max-width: 768px) {
  .form__label {
    font-size: 4.6153846154vw;
    margin-bottom: 1.2820512821vw;
  }
}
.form__input {
  padding: 13px 0 14px 35px;
  border-radius: 30px;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
@media (max-width: 1279px) {
  .form__input {
    padding: 1.0164190774vw 0 1.0946051603vw 2.7365129007vw;
    font-size: 1.4073494918vw;
  }
}
@media (max-width: 768px) {
  .form__input {
    padding: 3.0769230769vw 0 3.0769230769vw 5.1282051282vw;
    border-radius: 7.6923076923vw;
    font-size: 4.1025641026vw;
  }
}
.form__input::-webkit-input-placeholder {
  font-size: 16px;
  color: #797979;
  letter-spacing: 0.05em;
}
.form__input::-moz-placeholder {
  font-size: 16px;
  color: #797979;
  letter-spacing: 0.05em;
}
.form__input:-ms-input-placeholder {
  font-size: 16px;
  color: #797979;
  letter-spacing: 0.05em;
}
.form__input::-ms-input-placeholder {
  font-size: 16px;
  color: #797979;
  letter-spacing: 0.05em;
}
.form__input::placeholder {
  font-size: 16px;
  color: #797979;
  letter-spacing: 0.05em;
}
@media (max-width: 1279px) {
  .form__input::-webkit-input-placeholder {
    font-size: 1.250977326vw;
  }
  .form__input::-moz-placeholder {
    font-size: 1.250977326vw;
  }
  .form__input:-ms-input-placeholder {
    font-size: 1.250977326vw;
  }
  .form__input::-ms-input-placeholder {
    font-size: 1.250977326vw;
  }
  .form__input::placeholder {
    font-size: 1.250977326vw;
  }
}
@media (max-width: 768px) {
  .form__input::-webkit-input-placeholder {
    font-size: 4.1025641026vw;
  }
  .form__input::-moz-placeholder {
    font-size: 4.1025641026vw;
  }
  .form__input:-ms-input-placeholder {
    font-size: 4.1025641026vw;
  }
  .form__input::-ms-input-placeholder {
    font-size: 4.1025641026vw;
  }
  .form__input::placeholder {
    font-size: 4.1025641026vw;
  }
}
.form__errorMessage {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  color: #deb1c7;
}
@media (max-width: 1279px) {
  .form__errorMessage {
    margin-top: 0.7818608288vw;
    font-size: 1.8764659891vw;
  }
}
@media (max-width: 768px) {
  .form__errorMessage {
    margin-top: 2.5641025641vw;
    font-size: 4.1025641026vw;
  }
}
.form__errorMessage.hidden {
  display: none;
}
.form__captcha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__captcha .captNum {
  margin-right: 10px;
  width: 350px;
}
@media (max-width: 1279px) {
  .form__captcha .captNum {
    width: 25.0195465207vw;
    margin-right: 0.7818608288vw;
  }
}
@media (max-width: 768px) {
  .form__captcha .captNum {
    width: 35.8974358974vw;
    margin-right: 2.5641025641vw;
  }
}
.form__captcha--img {
  width: auto;
  height: 40px;
  margin-right: 10px;
}
@media (max-width: 1279px) {
  .form__captcha--img {
    height: 3.5965598124vw;
    margin-right: 0.3909304144vw;
  }
}
@media (max-width: 768px) {
  .form__captcha--img {
    height: 10.2564102564vw;
  }
}
.form__captcha--reload {
  width: auto;
  background-color: transparent;
}
@media (max-width: 1279px) {
  .form__captcha--reload {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 768px) {
  .form__captcha--reload {
    max-width: 50px;
    width: 10.2564102564vw;
    margin-left: 1.0256410256vw;
  }
}
.form__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 4px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .form__check {
    padding-top: 0;
    margin-bottom: 8.7179487179vw;
  }
}
.form__check input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 24px;
  border: 1px solid #5A6461;
  background-color: white;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  outline: none;
}
.form__check input[type=checkbox]:checked {
  background-color: #8DA4D2;
  border-color: #C09F76;
}
.form__check input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-image: url("../images/task/check.svg");
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 1279px) {
  .form__check input[type=checkbox] {
    width: 2.3455824863vw;
    height: 1.8764659891vw;
  }
  .form__check input[type=checkbox]:checked::after {
    width: 1.5637216575vw;
    height: 1.5637216575vw;
    background-size: contain;
    background-position: center;
  }
}
@media (max-width: 768px) {
  .form__check input[type=checkbox] {
    width: 6.1538461538vw;
    height: 5.1282051282vw;
  }
  .form__check input[type=checkbox]:checked::after {
    width: 4.1025641026vw;
    height: 4.1025641026vw;
    background-position: center 1px;
  }
}
.form__check--text {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-align: justify;
  margin-left: 12px;
}
@media (max-width: 1279px) {
  .form__check--text {
    margin-left: 0.9382329945vw;
  }
}
@media (max-width: 768px) {
  .form__check--text {
    font-size: 4.1025641026vw;
    margin-left: 2.5641025641vw;
    line-height: 1.5;
  }
}
.form__check--text-link {
  color: #FDF9C7;
  text-decoration: underline;
}
.form__check--text-link:hover {
  text-decoration: underline;
}
.form__confirm-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 10px;
}
@media (max-width: 1279px) {
  .form__confirm-btn {
    padding: 0 0.7818608288vw;
  }
}
@media (max-width: 768px) {
  .form__confirm-btn {
    padding: 0;
  }
}
.form__btn {
  cursor: pointer;
  padding: 22px;
  border-radius: 100px;
  max-width: 237px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-wrap: nowrap;
}
.form__btn:hover {
  background-position: left center;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.form__btn:hover .btn--icon::before {
  -webkit-animation: flyRight 0.5s forwards;
          animation: flyRight 0.5s forwards;
}
.form__btn:hover .btn--icon::after {
  -webkit-animation: flyFromLeft 0.8s forwards;
          animation: flyFromLeft 0.8s forwards;
  -webkit-animation-delay: 0.06s;
          animation-delay: 0.06s;
}
@media (max-width: 1279px) {
  .form__btn {
    padding: 1.7200938233vw;
    max-width: none;
  }
  .form__btn:first-child {
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  .form__btn {
    padding: 3.0769230769vw;
    max-width: none;
  }
  .form__btn:first-child {
    margin-right: 2.5641025641vw;
  }
}
.form__btn--login {
  background-color: #516B93;
}
.form__btn--register {
  background-color: #C09F76;
}

.btn--text {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.15em;
  color: white;
}
@media (max-width: 1279px) {
  .btn--text {
    font-size: 1.8764659891vw;
  }
}
@media (max-width: 768px) {
  .btn--text {
    font-size: 4.1025641026vw;
  }
}

.btn--icon {
  margin-left: 10px;
  width: 40px;
  height: 40px;
  position: relative;
}
.btn--icon::before, .btn--icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/task/send-btn-arrow.svg") no-repeat center/contain;
  opacity: 0;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.btn--icon::before {
  opacity: 1;
}
@media (max-width: 1279px) {
  .btn--icon {
    margin-left: 0.7818608288vw;
    width: 3.1274433151vw;
    height: 3.1274433151vw;
  }
}
@media (max-width: 768px) {
  .btn--icon {
    margin: 0;
    width: 6.9230769231vw;
    height: 6.9230769231vw;
  }
}

.blur-background {
  background: linear-gradient(304.91deg, rgba(255, 255, 255, 0.03) 10%, rgba(255, 255, 255, 0.15) 30%, rgba(255, 255, 255, 0.03) 60%);
  backdrop-filter: blur(6px);
  position: relative;
}
.blur-background::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(304.91deg, #ffffff 0%, rgba(255, 255, 255, 0) 50%, #ffffff 100%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  pointer-events: none;
  z-index: 1;
}

.section-notice__wrapper {
  border-radius: 60px 60px 0px 0px;
  background-color: #2c2c2c;
  width: 100%;
  padding: 80px 20px 80px 20px;
}
@media (max-width: 1279px) {
  .section-notice__wrapper {
    border-radius: 4.6911649726vw 4.6911649726vw 0px 0px;
    padding: 6.2548866302vw 2.3455824863vw;
  }
}
@media (max-width: 768px) {
  .section-notice__wrapper {
    padding: 11.71875vw 2.6041666667vw;
    border-radius: 5.2083333333vw 5.2083333333vw 0 0;
  }
}
.section-notice__wrapper .container {
  background: transparent;
  padding: 0;
  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;
}
.section-notice__title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 1279px) {
  .section-notice__title {
    font-size: 3.9093041439vw;
    margin-bottom: 1.8764659891vw;
  }
}
@media (max-width: 768px) {
  .section-notice__title {
    font-size: 6.25vw;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5.2083333333vw;
  }
}
.section-notice__content {
  display: block;
}
.section-notice__box {
  margin: 0 auto;
  max-width: 1096px;
}
.section-notice__view {
  width: 100%;
  position: relative;
  background: transparent;
  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;
}
@media (max-width: 768px) {
  .section-notice__view {
    width: 100%;
    position: relative;
    background: transparent;
    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;
  }
}
.section-notice__view--mt {
  margin-top: 40px;
}
@media (max-width: 1279px) {
  .section-notice__view--mt {
    margin-top: 3.1274433151vw;
  }
}
.section-notice__view-content {
  color: white;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1279px) {
  .section-notice__view-content {
    font-size: 1.8764659891vw;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .section-notice__view-content {
    color: white;
    font-size: 4.1666666667vw;
  }
}
.section-notice__view-content a {
  color: #CEB071;
  text-decoration: underline;
}
.section-notice__container {
  display: none;
}

.notice__toggle {
  cursor: pointer;
  margin: 0 auto;
  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: 18px;
  font-weight: 500;
  line-height: 1;
  color: #CEB071;
  margin-top: 24px;
}
@media (max-width: 1279px) {
  .notice__toggle {
    padding-top: 1.8764659891vw;
    font-size: 1.8764659891vw;
  }
}
@media (max-width: 768px) {
  .notice__toggle {
    padding-top: 0;
    font-size: 4.1666666667vw;
  }
}
.notice__toggle::before {
  content: "閱讀更多";
  margin-right: 8px;
}
.notice__toggle.active::before {
  content: "收起";
}

.notice__icon {
  width: 20px;
  height: 20px;
  background: url("../images/read-more-icon.svg") no-repeat center/contain;
  content: "";
  display: inline-block;
}
@media (max-width: 1279px) {
  .notice__icon {
    width: 1.8764659891vw;
    height: 1.8764659891vw;
  }
}
@media (max-width: 768px) {
  .notice__icon {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}
.notice__icon.active {
  background-image: url("../images/read-close-icon.svg");
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

ol.disc {
  padding-left: 1.35em;
  padding-right: 0.35em;
}

ol.square {
  padding-left: 0.5em;
}

ol.decimal {
  padding-left: 1.35em;
}

.cjk-ideographic {
  padding-left: 1.35em;
  padding-right: 1em;
}

.notic-items {
  padding-left: 1.35em;
  width: 100%;
  margin: 1em auto;
}

.content {
  background-repeat: repeat-y;
  color: white;
  background-color: #212121;
}