:root {
  --header-h: 60px;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
}

img {
  width: 100%;
}

main {
  overflow: hidden;
}

.header {
  background: #fce96b;
  position: fixed;
  width: calc(100% - 40px);
  top: 0;
  left: 20px;
  z-index: 1000;
  border-radius: 0 0 30px 30px;
}
@media screen and (max-width: 992px) {
  .header {
    background: transparent;
    border-radius: 0;
    width: 100%;
    left: 0;
  }
}
.header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--header-h);
}
@media screen and (max-width: 992px) {
  .header-container {
    justify-content: flex-end;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    padding: 0 20px 0 30px;
  }
  .header.active .header-container {
    background: #ebfaff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
.header-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}
.header-menu li a {
  text-decoration: none;
  color: #191919;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) and (min-width: 993px) {
  .header-menu li a:hover {
    color: #1872e5;
    transform: translateY(-4px);
  }
}

section {
  position: relative;
}

.anchor {
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  left: 0;
  scroll-margin-top: var(--header-h);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  z-index: 1101;
  width: 44px;
  height: 44px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: #191919;
  margin: 3px 0;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  .header-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 0;
    z-index: 1050;
    flex-direction: column;
    justify-content: center;
    padding: 30px 30px 30px;
    gap: 36px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header-menu.active {
    visibility: visible;
    opacity: 1;
  }
  .header-menu li {
    width: 100%;
    text-align: center;
  }
  .header-menu li a {
    display: block;
    padding: 8px 0;
    font-size: 18px;
    color: #191919;
  }
}
footer {
  background-color: #1787dd;
  padding: 30px 20px 30px;
  text-align: center;
  width: 100%;
  color: #fff;
}
footer .container {
  max-width: 1100px;
  margin: 0 auto;
}
footer .container .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  footer .container .logos {
    gap: 20px;
    flex-direction: column;
    margin-bottom: 30px;
  }
}
footer .container .logos .logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
footer .container .logos .logo-group .label {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  position: relative;
  padding-right: 12px;
}
footer .container .logos .logo-group .label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: #fff;
}
footer .container .logos .logo-group img {
  height: 30px;
  width: auto;
  display: block;
}
footer .container p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #fff;
}
footer .container .privacy a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
footer .container .privacy a:hover {
  opacity: 0.8;
}

.pc {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .pc {
    display: block !important;
  }
}

.pc-flex {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .pc-flex {
    display: flex !important;
  }
}

.mb {
  display: none !important;
}
@media screen and (max-width: 992px) {
  .mb {
    display: block !important;
  }
}

[data-aos=fade-in] {
  opacity: 0;
  transition: 0.8s ease-in-out;
}

[data-aos=fade-in].aos-animate {
  opacity: 1;
}

h2:not(.title-h2) {
  display: block;
  text-align: center;
  font-family: "M PLUS Rounded 1c", "Noto Sans TC", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: 0;
  color: #1872e5;
  margin: 0 auto;
  border: none;
}
h2:not(.title-h2)::before {
  content: "";
  display: block;
  width: 32px;
  height: 29px;
  margin: 0 auto 0px;
  background: url("./../image/title-dec-2.svg") no-repeat center/contain;
}
@media screen and (max-width: 992px) {
  h2:not(.title-h2) {
    font-size: 26px;
  }
}
h2:not(.title-h2).h2-yellow {
  color: #f0ea72;
}
h2:not(.title-h2).h2-yellow::before {
  background-image: url("./../image/title-dec-1.svg");
}

section.index {
  background: #ebfaff;
  padding-top: 59px;
}
@media screen and (max-width: 992px) {
  section.index {
    padding-top: 0;
  }
}
section.index .index-kv {
  width: 100%;
  position: relative;
}
section.index .index-kv > img.pc,
section.index .index-kv > img.mb {
  width: 100%;
  height: auto;
  display: block;
}
section.index .index-kv .hero-title {
  position: absolute;
  width: auto;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
section.index .index-kv .hero-title-1,
section.index .index-kv .hero-title-2 {
  width: auto;
}
section.index .index-kv .hero-title-1 {
  top: 7%;
  left: 6%;
  height: 5.5vw;
  max-height: 67px;
}
@media screen and (max-width: 992px) {
  section.index .index-kv .hero-title-1 {
    top: 10%;
    left: 20px;
    width: calc(100% - 40px);
    height: auto;
    max-height: none;
  }
}
section.index .index-kv .hero-title-2 {
  top: 18%;
  left: 6%;
  height: 6vw;
  max-height: 69px;
}
@media screen and (max-width: 992px) {
  section.index .index-kv .hero-title-2 {
    top: 18%;
    left: 20px;
    width: calc(100% - 40px);
    height: auto;
    max-height: none;
  }
}
section.foreword {
  background: #ebfaff;
  padding: 100px 20px 100px;
}
@media screen and (max-width: 992px) {
  section.foreword {
    padding: 60px 20px 50px;
  }
}
section.foreword .foreword-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  section.foreword .foreword-title {
    margin-bottom: 32px;
  }
}
section.foreword .foreword-content {
  max-width: 860px;
  margin: 0 auto;
}
section.foreword .foreword-content p {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #373737;
  text-align: center;
  margin: 0 0 24px;
}
section.foreword .foreword-content p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  section.foreword .foreword-content p {
    text-align: center;
    margin-bottom: 18px;
  }
}
section.announcement {
  background: #ebfaff;
  padding: 50px 20px 140px;
  position: relative;
}
@media screen and (max-width: 992px) {
  section.announcement {
    padding: 50px 20px 80px;
  }
}
section.announcement .highlights-top-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 5;
}
section.announcement .announcement-icon {
  display: block;
  width: 58px;
  height: auto;
  margin: 0 auto 8px;
}
section.announcement .announcement-title {
  margin-bottom: 10px;
}
section.announcement .announcement-title::before {
  display: none;
}
section.announcement .announcement-list {
  display: table;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  text-align: left;
}
section.announcement .announcement-list li {
  position: relative;
  padding-left: 18px;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #373737;
}
section.announcement .announcement-list li + li {
  margin-top: 10px;
}
section.announcement .announcement-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 13px;
  width: 5px;
  height: 5px;
  background: #373737;
  border-radius: 50%;
}
section.highlights {
  background: #1787dd;
  padding: 80px 20px 100px;
}
@media screen and (max-width: 992px) {
  section.highlights {
    padding: 60px 20px;
  }
}
section.highlights > .h2-yellow {
  margin-bottom: 60px;
}
@media screen and (max-width: 992px) {
  section.highlights > .h2-yellow {
    margin-bottom: 30px;
  }
}
section.highlights .highlights-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 280px));
  justify-content: center;
  gap: 60px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  section.highlights .highlights-cards {
    grid-template-columns: 280px;
    gap: 30px;
  }
}
section.highlights .highlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
section.highlights .highlight-char {
  width: 130px;
  height: auto;
  margin-bottom: -70px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  section.highlights .highlight-char {
    width: auto;
    height: 180px;
    margin-bottom: -70px;
  }
}
section.highlights .highlight-content {
  width: 100%;
  flex: 1;
  background: #fff;
  border-radius: 0 0 60px 60px;
  padding: 75px 20px 40px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}
section.highlights .highlight-title {
  color: #0873e7;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
}
section.highlights .highlight-content p {
  color: #373737;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  margin: 0;
}
section.highlights .events-title {
  margin: 50px auto 16px;
}
@media screen and (max-width: 992px) {
  section.highlights .events-title {
    margin-top: 40px;
  }
}
section.highlights .events-subtitle {
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 auto 50px;
}
@media screen and (max-width: 992px) {
  section.highlights .events-subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }
}
section.highlights .events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  section.highlights .events {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 360px;
  }
}
section.highlights .event-card .event-image {
  background: transparent;
  overflow: hidden;
  aspect-ratio: 350/206;
  margin-bottom: 16px;
}
section.highlights .event-card .event-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
section.highlights .event-card .event-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  text-align: center;
}
section.highlights .event-card .event-title .event-name {
  color: #f0ea72;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}
section.highlights .event-card .event-title .event-date {
  color: #fff;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}
section.highlights .event-card .event-desc {
  color: #fff;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}
section.highlights .highlights-notes {
  display: table;
  margin: 50px auto 0;
  text-align: left;
  color: #a9d9ff;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
@media screen and (max-width: 992px) {
  section.highlights .highlights-notes {
    margin-top: 32px;
  }
}
section.highlights .highlights-notes .notes-title {
  margin: 0 0 4px;
}
section.highlights .highlights-notes p {
  margin: 0 0 4px;
}
section.highlights .highlights-notes p:last-child {
  margin-bottom: 0;
}
section.submission {
  background: #ebfaff;
  padding: 100px 20px 170px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  section.submission {
    padding: 80px 20px 120px;
  }
}
section.submission .submission-faucet {
  position: absolute;
  top: 93px;
  right: 0;
  width: 13%;
  height: auto;
  pointer-events: none;
}
@media screen and (max-width: 992px) {
  section.submission .submission-faucet {
    width: 20%;
    top: 20px;
    right: 0px;
  }
}
section.submission .submission-title {
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  section.submission .submission-title {
    margin-bottom: 20px;
  }
}
section.submission .submission-content {
  max-width: 860px;
  margin: 0 auto;
}
section.submission .submission-content p {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #373737;
  text-align: center;
  margin: 0 0 12px;
}
section.submission .submission-content p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  section.submission .submission-content p {
    font-size: 15px;
    text-align: center;
  }
}
section.submission .submission-graphic {
  position: relative;
  max-width: 850px;
  width: 100%;
  margin: 60px auto 0;
  aspect-ratio: 760/460;
}
@media screen and (max-width: 992px) {
  section.submission .submission-graphic {
    max-width: 360px;
    width: 100%;
    aspect-ratio: 1;
    margin: 40px auto 0;
  }
}
section.submission .submission-graphic .submission-char {
  position: absolute;
  top: 69%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46%;
  height: auto;
  z-index: 5;
  pointer-events: none;
}
@media screen and (max-width: 992px) {
  section.submission .submission-graphic .submission-char {
    width: 50%;
    top: 50%;
  }
}
@media screen and (max-width: 360px) {
  section.submission .submission-graphic .submission-char {
    width: 45%;
  }
}
section.submission .submission-graphic .bubble {
  position: absolute;
  width: 200px;
  height: 200px;
  perspective: 1000px;
  animation: bubble-float 3.6s ease-in-out infinite;
  z-index: 2;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  section.submission .submission-graphic .bubble {
    width: 130px;
    height: 130px;
  }
}
@media screen and (max-width: 360px) {
  section.submission .submission-graphic .bubble {
    width: 110px;
    height: 110px;
  }
}
section.submission .submission-graphic .bubble .bubble-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}
section.submission .submission-graphic .bubble .bubble-front,
section.submission .submission-graphic .bubble .bubble-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 992px) {
  section.submission .submission-graphic .bubble .bubble-front,
  section.submission .submission-graphic .bubble .bubble-back {
    font-size: 16px;
  }
}
section.submission .submission-graphic .bubble .bubble-front {
  background: linear-gradient(180deg, #17c2de 0%, #1787dd 100%);
  color: #fff;
}
section.submission .submission-graphic .bubble .bubble-back {
  background: #fff;
  color: #555555;
  border: 5px solid #1687dd;
  transform: rotateY(180deg);
  font-size: 20px;
  font-weight: 400;
  padding: 10px 20px;
}
@media screen and (max-width: 992px) {
  section.submission .submission-graphic .bubble .bubble-back {
    font-size: 13px;
    padding: 8px 14px;
  }
}
@media screen and (max-width: 360px) {
  section.submission .submission-graphic .bubble .bubble-back {
    font-size: 12px;
    border-width: 3px;
  }
}
@media screen and (max-width: 360px) {
  section.submission .submission-graphic .bubble .bubble-front,
  section.submission .submission-graphic .bubble .bubble-back {
    font-size: 14px;
    padding: 8px;
  }
}
@media (hover: hover) and (min-width: 993px) {
  section.submission .submission-graphic .bubble:hover .bubble-inner {
    transform: rotateY(180deg);
  }
}
section.submission .submission-graphic .bubble.flipped .bubble-inner {
  transform: rotateY(180deg);
}
section.submission .submission-graphic .bubble.bubble-1 {
  top: 55%;
  left: 0;
  animation-delay: 0s;
}
@media screen and (max-width: 992px) {
  section.submission .submission-graphic .bubble.bubble-1 {
    top: auto;
    bottom: 0;
    left: 0;
  }
}
section.submission .submission-graphic .bubble.bubble-2 {
  top: 5%;
  left: 22%;
  animation-delay: -0.9s;
  animation-direction: reverse;
}
@media screen and (max-width: 992px) {
  section.submission .submission-graphic .bubble.bubble-2 {
    top: 0;
    left: 0;
  }
}
section.submission .submission-graphic .bubble.bubble-3 {
  top: 5%;
  right: 18%;
  animation-delay: -1.8s;
}
@media screen and (max-width: 992px) {
  section.submission .submission-graphic .bubble.bubble-3 {
    top: 0;
    right: 0;
  }
}
section.submission .submission-graphic .bubble.bubble-4 {
  bottom: 5%;
  right: 0;
  animation-delay: -2.7s;
  animation-direction: reverse;
}
@media screen and (max-width: 992px) {
  section.submission .submission-graphic .bubble.bubble-4 {
    bottom: 0;
    right: 0;
  }
}
@keyframes bubble-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
section.submission .submission-blocks {
  max-width: 1100px;
  margin: 80px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 992px) {
  section.submission .submission-blocks {
    margin-top: 60px;
    gap: 50px;
  }
}
section.submission .submission-block {
  width: 100%;
}
section.submission .submission-block:has(.submission-timeline) {
  max-width: 1100px;
}
section.submission .submission-h3 {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1872e5;
  text-align: center;
  margin: 0 0 24px;
}
@media screen and (max-width: 992px) {
  section.submission .submission-h3 {
    font-size: 18px;
    margin-bottom: 16px;
    text-align: left;
  }
}
section.submission .submission-text {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: #373737;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 992px) {
  section.submission .submission-text {
    font-size: 15px;
    text-align: left;
  }
}
section.submission .submission-prizes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
@media screen and (max-width: 992px) {
  section.submission .submission-prizes {
    align-items: flex-start;
  }
}
section.submission .submission-prizes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: #373737;
}
@media screen and (max-width: 992px) {
  section.submission .submission-prizes li {
    font-size: 15px;
  }
}
section.submission .submission-prizes li .prize-icon {
  font-size: 22px;
  line-height: 1;
}
section.submission .submission-themes-wrap {
  margin: 15px auto 0;
  text-align: left;
  display: table;
}
section.submission .submission-intro {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0;
  color: #1f1f1f;
}
section.submission .submission-themes {
  list-style: none;
  padding: 0;
  margin: 0 0 0;
  counter-reset: theme;
}
section.submission .submission-themes li {
  position: relative;
  padding-left: 32px;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  color: #1f1f1f;
  counter-increment: theme;
}
section.submission .submission-themes li::before {
  content: counter(theme) ".";
  position: absolute;
  left: 8px;
  top: 0;
  font-weight: 500;
  color: #1f1f1f;
}
@media screen and (max-width: 992px) {
  section.submission .submission-themes li {
    padding-left: 26px;
  }
  section.submission .submission-themes li::before {
    left: 4px;
  }
}
section.submission .submission-grading {
  position: relative;
  max-width: 900px;
  margin: 100px auto 0;
  aspect-ratio: 9/5;
}
@media screen and (max-width: 992px) {
  section.submission .submission-grading {
    aspect-ratio: 1;
  }
}
section.submission .submission-grading .grading-pie {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35%;
  max-width: 500px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 992px) {
  section.submission .submission-grading .grading-pie {
    width: 45%;
  }
}
section.submission .submission-grading .grading-card {
  position: absolute;
  width: 30%;
  max-width: 270px;
  height: auto;
}
@media screen and (max-width: 992px) {
  section.submission .submission-grading .grading-card {
    width: 38%;
  }
}
section.submission .submission-grading .grading-card-1 {
  top: -5%;
  left: 12%;
}
section.submission .submission-grading .grading-card-2 {
  top: -4%;
  right: 7%;
}
section.submission .submission-grading .grading-card-3 {
  top: 24%;
  right: -2%;
}
section.submission .submission-grading .grading-card-4 {
  bottom: 10%;
  right: 2%;
}
section.submission .submission-grading .grading-card-5 {
  bottom: 17%;
  left: 7%;
}
section.submission .submission-grading-text {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
section.submission .submission-grading-text .grading-item + .grading-item {
  margin-top: 20px;
}
section.submission .submission-grading-text .grading-item {
  text-align: left;
}
section.submission .submission-grading-text .grading-item .percent {
  display: inline-block;
  vertical-align: middle;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  margin-right: 5px;
}
section.submission .submission-grading-text .grading-item .title {
  display: inline-block;
  vertical-align: middle;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  color: #373737;
}
section.submission .submission-grading-text .grading-item p {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #373737;
  margin: 5px 0 0;
}
section.submission .submission-grading-text .grading-orange .percent {
  color: #f99876;
}
section.submission .submission-grading-text .grading-green .percent {
  color: #8fc54f;
}
section.submission .submission-grading-text .grading-yellow .percent {
  color: #f0b427;
}
section.submission .submission-grading-text .grading-cyan .percent {
  color: #2bc4d4;
}
section.submission .submission-grading-text .grading-blue .percent {
  color: #2868c8;
}
section.submission .submission-cta-block {
  max-width: 1025px;
  margin: 40px auto 0;
  border-radius: 80px 80px 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #ebfaff 100%);
}
@media screen and (max-width: 992px) {
  section.submission .submission-cta-block {
    margin-top: 100px;
  }
}
section.submission .submission-cta {
  position: relative;
  padding: 32px 48px;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  translate: 0 -70px;
}
@media screen and (max-width: 992px) {
  section.submission .submission-cta {
    padding: 80px 24px 32px;
    border-radius: 40px 40px 0 0;
    flex-direction: column;
    align-items: center;
    translate: 0 0;
    gap: 16px;
    text-align: center;
  }
}
section.submission .submission-cta .cta-char {
  width: 196px;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 992px) {
  section.submission .submission-cta .cta-char {
    position: absolute;
    left: 50%;
    top: auto;
    bottom: calc(100% - 60px);
    translate: -50% 0;
    width: 152px;
  }
}
section.submission .submission-cta .cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 0 1 auto;
}
section.submission .submission-cta .cta-text {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 26px;
  line-height: 1.6;
  font-weight: 700;
  color: #2f2f2f;
  margin: 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 992px) {
  section.submission .submission-cta .cta-text {
    font-size: 17px;
  }
}
section.submission .submission-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 30px;
  background: #f06b3e;
  color: #fff;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.3s ease, opacity 0.8s ease, transform 0.8s ease;
}
section.submission .submission-cta .cta-btn .arrow {
  font-weight: 400;
  display: inline-block;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (min-width: 993px) {
  section.submission .submission-cta .cta-btn:hover {
    background: #ff561d;
  }
  section.submission .submission-cta .cta-btn:hover .arrow {
    transform: translateX(10px);
  }
}
section.submission .submission-timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 50px auto 0;
}
@media screen and (max-width: 992px) {
  section.submission .submission-timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 420px;
    justify-items: stretch;
  }
}
@media screen and (max-width: 480px) {
  section.submission .submission-timeline {
    grid-template-columns: 1fr;
    max-width: 200px;
    gap: 20px;
  }
}
section.submission .timeline-step {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 6px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #17c7dd 0%, #1787dd 100%) border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 40px 20px 40px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  section.submission .timeline-step {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    max-width: none;
    padding: 10% 10px 12px;
  }
}
@media screen and (max-width: 480px) {
  section.submission .timeline-step {
    gap: 4px;
    padding: 22px 10px 14px;
  }
}
section.submission .timeline-step h4 {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #f06b3e;
  letter-spacing: 0;
  padding-bottom: 10px;
  position: relative;
  line-height: 1.8;
  width: 100%;
}
section.submission .timeline-step h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: calc(100% - 40px);
  height: 1px;
  background: #ef6a3d;
}
@media screen and (max-width: 992px) {
  section.submission .timeline-step h4 {
    font-size: 20px;
    line-height: 1.8;
  }
}
section.submission .timeline-step .step-text {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: #373737;
  margin: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  section.submission .timeline-step .step-text {
    font-size: 16px;
    line-height: 1.4;
  }
}
section.submission .submission-skills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
@media screen and (max-width: 992px) {
  section.submission .submission-skills {
    align-items: flex-start;
  }
}
section.submission .submission-skills li {
  text-align: center;
}
@media screen and (max-width: 992px) {
  section.submission .submission-skills li {
    text-align: left;
  }
}
section.submission .submission-skills li h4 {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #373737;
  line-height: 1.8;
}
@media screen and (max-width: 992px) {
  section.submission .submission-skills li h4 {
    font-size: 15px;
  }
}
section.submission .submission-skills li p {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #373737;
  margin: 0;
}
@media screen and (max-width: 992px) {
  section.submission .submission-skills li p {
    font-size: 15px;
  }
}
section.registration {
  padding: 40px 20px 150px;
  background: #fff;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 992px) {
  section.registration {
    padding: 5rem 20px;
  }
}
section.registration .registration-top-deco {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  display: block;
  z-index: 5;
}
section.registration .faq-top-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 5;
  display: block;
}
section.registration .registration-flow {
  max-width: 950px;
  margin: 0 auto;
  text-align: left;
}
section.registration .btn-container {
  justify-content: center;
}
section.registration .registration-title {
  margin-bottom: 15px;
}
@media screen and (max-width: 992px) {
  section.registration .registration-title {
    margin-bottom: 15px;
  }
}
section.registration p {
  line-height: 2;
}
section.registration .registration-list {
  display: table;
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  text-align: left;
}
section.registration .registration-list li {
  position: relative;
  padding-left: 16px;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  color: #3a3a3a;
}
section.registration .registration-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 4px;
  height: 4px;
  background: #3a3a3a;
  border-radius: 50%;
}
@media screen and (max-width: 992px) {
  section.registration .registration-list {
    margin-bottom: 30px;
  }
}
section.registration .overview-steps {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  section.registration .overview-steps {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }
}
section.registration .overview-steps .overview-step {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 9px 13px 20px;
  border-bottom: 1px solid #1872e5;
}
@media screen and (max-width: 992px) {
  section.registration .overview-steps .overview-step {
    width: 100%;
  }
  section.registration .overview-steps .overview-step .overview-num {
    width: 36px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
}
section.registration .overview-steps .overview-step .overview-num {
  width: auto;
  display: block;
  flex-shrink: 0;
}
section.registration .overview-steps .overview-step .overview-num-1 {
  height: 48px;
}
@media screen and (max-width: 992px) {
  section.registration .overview-steps .overview-step .overview-num-1 {
    height: 48px;
  }
}
section.registration .overview-steps .overview-step .overview-num-2 {
  height: 48px;
}
@media screen and (max-width: 992px) {
  section.registration .overview-steps .overview-step .overview-num-2 {
    height: 48px;
  }
}
section.registration .overview-steps .overview-step .overview-text {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
@media screen and (max-width: 992px) {
  section.registration .overview-steps .overview-step .overview-text {
    font-size: 24px;
  }
}
section.registration .overview-steps .overview-step .overview-text .overview-link-wrap {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
}
@media screen and (max-width: 992px) {
  section.registration .overview-steps .overview-step .overview-text .overview-link-wrap {
    font-size: 14px;
  }
}
section.registration .overview-steps .overview-step .overview-text .overview-link {
  font: inherit;
  color: #1872e5;
  text-decoration: underline;
  text-underline-offset: 3px;
}
section.registration .registration-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 187px;
  height: 56px;
  padding: 0 30px;
  background: #f06b3e;
  color: #fff;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.3s ease;
}
@media (hover: hover) and (min-width: 993px) {
  section.registration .registration-btn:hover {
    background: #ff561d;
  }
}
section.registration .registration-flow {
  display: none;
}
section.registration .sign-container {
  max-width: 59.4rem;
  margin: auto;
}
section.registration .sign-container-2 {
  padding: 0 1.125rem;
}
section.registration .sign-bar {
  display: flex;
  justify-content: space-between;
  gap: 2.2rem;
  margin: 2.5rem auto 0;
  max-width: 23.25rem;
  padding: 3px 0;
}
section.registration .sign-bar::-webkit-scrollbar {
  width: 0;
}
@media screen and (max-width: 992px) {
  section.registration .sign-bar {
    gap: 0.62rem;
    padding: 0rem 1.875rem;
  }
}
section.registration .sign-bar > div {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.62rem;
  max-width: 5.25rem;
}
section.registration .sign-bar > div.line {
  background-color: #b7b7b7;
  border-radius: 0.5rem;
  width: 100%;
  height: 0.875rem;
  display: block;
  margin-top: 3rem;
  max-width: unset;
  min-width: 3.3195rem;
}
section.registration .sign-bar > div.line.active {
  background-color: #1872e5;
}
section.registration .sign-bar > div.active span {
  color: #1872e5;
  border: #1872e5 3px solid;
  background-color: transparent;
}
section.registration .sign-bar > div.active p {
  color: #1872e5 !important;
}
section.registration .sign-bar > div.done span {
  color: transparent;
  border: #1872e5 3px solid;
  background-color: #1872e5;
  background-image: url("./../image/icon-check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55% auto;
}
section.registration .sign-bar > div.done p {
  color: #48545d !important;
}
section.registration .sign-bar span {
  color: #b7b7b7;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.08rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #b7b7b7 3px solid;
  border-radius: 50%;
  width: 5.25rem;
  height: 5.25rem;
}
section.registration .sign-bar p {
  color: #b7b7b7 !important;
  text-align: center;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 1.25rem !important;
  font-weight: 500;
  line-height: 130% !important;
  letter-spacing: 0.04em !important;
}
section.registration .part-title {
  position: relative;
  margin-top: 2.5rem;
  margin-bottom: 3.81rem;
  text-align: left;
}
section.registration .part-title h3 {
  color: #2f2f2f;
  font-family: "Noto Sans TC";
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.04em;
  margin: 0 0 1.25rem;
  display: block;
}
section.registration .part-title p {
  margin-top: 1.25rem !important;
  color: #2f2f2f !important;
  font-family: "Noto Sans TC";
  font-size: 16px !important;
  font-weight: 350;
  line-height: 100% !important;
  letter-spacing: 0.04em;
}
section.registration .part-title p a,
section.registration .part-title p .form-link {
  color: #1872e5 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}
section.registration .part-title::after {
  content: "";
  background: #1872e5;
  position: absolute;
  width: 66px;
  height: 4px;
  bottom: -1.7rem;
  left: 0;
}
section.registration .campaign-form-wrap input[type=text]:focus,
section.registration .campaign-form-wrap input[type=email]:focus {
  border-color: #1872e5;
  outline: none;
}
section.registration .campaign-form-wrap .error-message {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  --warn-color: #d60c18;
  color: var(--warn-color);
  font-family: "Noto Sans TC";
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 150%;
  margin-top: 0;
}
section.registration .campaign-form-wrap .error-message svg {
  width: 1.375rem;
  height: 1.375rem;
}
section.registration .campaign-form-wrap .form-item .item-title.required::before {
  color: #1872e5;
  content: "*";
  margin-right: 0.25rem;
}
section.registration .campaign-form-wrap .form-item .item-title {
  color: #2f2f2f;
  font-family: "Noto Sans TC";
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}
section.registration .campaign-form-wrap .form-item .item-title .multi {
  color: #d4c1a8;
  font-family: "Noto Sans TC";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 130%;
  padding: 0.125rem 0.625rem;
  border-radius: 2.5rem;
  border: 1px solid #d4c1a8;
  display: inline-block;
  margin-left: 0.31rem;
}
section.registration .form-item {
  padding: 0rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
section.registration .form-item + .form-item {
  margin-top: 10px;
}
section.registration .form-item.privacy-policy-wrap {
  padding: 0 0 0 20px;
  margin-top: 15px;
}
section.registration .campaign-form-wrap .checkbox-item .checkbox-text {
  color: #2f2f2f;
  font-family: "Noto Sans TC";
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 150%;
  padding-top: 3px;
}
section.registration .campaign-form-wrap .checkbox-item .checkbox-text a {
  color: #1872e5 !important;
  text-decoration: underline !important;
}
section.registration .campaign-form-wrap .form-item.privacy-policy-wrap .privacy-policy-content a {
  color: #1872e5 !important;
  text-decoration: underline !important;
}
section.registration .campaign-form-wrap .form-item.privacy-policy-wrap .privacy-policy-content {
  color: #2f2f2f;
  font-family: "Noto Sans TC";
  font-size: 1rem;
  font-weight: 350;
  line-height: 160%;
  padding: 8px 0px;
}
section.registration .privacy-policy-wrap .item-title.required::before {
  display: none;
}
section.registration .campaign-form-wrap .radio-item .radio-text {
  color: #2f2f2f;
  font-family: "Noto Sans TC";
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 150%;
}
section.registration .campaign-form-wrap .radio-item {
  align-items: center;
}
section.registration .campaign-form-wrap .form-item .flex-column {
  row-gap: 15px;
}
section.registration .campaign-form-wrap .campaign-popup .popup-box .popup-content {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 21px;
}
section.registration .campaign-form-wrap .checkbox-item input[type=checkbox]:checked + .checkbox img {
  display: block;
}
section.registration .campaign-form-wrap .error-message:not(:empty)::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background-image: url(https://event.cw.com.tw/feature/2026cenra/images/error-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
section.registration .campaign-form-wrap .radio-item .radiobox {
  width: 28px;
  height: 28px;
  border: #1872e5 1px solid;
}
section.registration .campaign-form-wrap .radio-item .radiobox::before {
  width: 18px;
  height: 18px;
  background-color: #1872e5;
  display: none;
}
section.registration .campaign-form-wrap .checkbox-item .checkbox {
  border: #8c8c8c 1px solid;
  color: #1872e5;
  width: 28px;
  height: 28px;
  min-width: 28px;
  padding: 0;
  box-sizing: content-box;
  position: relative;
}
section.registration .campaign-form-wrap .checkbox-item .checkbox img {
  display: none;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -1px;
  left: -1px;
}
section.registration .campaign-form-wrap .checkbox-item .checkbox ::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #1872e5;
  display: none;
}
section.registration input {
  font-family: "Noto Sans TC";
}
section.registration input[type=text], section.registration input[type=email] {
  padding: 0.9375rem;
  border: 1px solid #bc8c8c;
  border-radius: 2px;
  min-width: 200px;
  width: 100%;
  height: 46px;
  color: #000;
}
section.registration input[type=text]:focus, section.registration input[type=email]:focus {
  outline: none;
  border-color: #1872e5;
}
section.registration input::-moz-placeholder {
  color: #8c8c8c;
  font-family: "Noto Sans TC";
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 150%;
}
section.registration input::placeholder {
  color: #8c8c8c;
  font-family: "Noto Sans TC";
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 150%;
}
section.registration select {
  font-family: "Noto Sans TC";
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  border: 1px solid #bc8c8c;
  padding: 0 0.9375rem;
  color: #000;
  width: 100%;
  padding-right: 40px;
  font-size: 1.0625rem;
  border-radius: 2px;
  height: 46px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTE2LjkyMzEgNy4yNTc4MUw5LjY2NTM4IDE0LjUxNTVMMi40MDc2NyA3LjI1NzgxIiBzdHJva2U9IiM0QzRDNEMiIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px 16px;
}
section.registration select:focus {
  outline: none;
  border-color: #1872e5;
}
section.registration textarea {
  font-family: "Noto Sans TC";
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  border: 1px solid #8c8c8c;
  padding: 0.9375rem;
  font-size: 16px;
  border-radius: 0.125rem;
  resize: none;
  width: 100%;
  outline: none;
}
section.registration textarea:focus {
  border-color: #1872e5;
  outline: none;
}
section.registration .campaign-form-wrap .campaign-popup {
  background-color: rgba(255, 255, 255, 0.7);
  font-family: "Noto Sans TC";
}
section.registration .campaign-form-wrap .campaign-popup .popup-box {
  background-color: #1872e5;
  color: #fff;
  font-family: "Noto Sans TC";
}
section.registration .campaign-form-wrap .campaign-popup .popup-box .popup-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: #fff;
  font-family: "Noto Sans TC";
}
section.registration .upload-item {
  padding: 0rem 1.25rem;
}
section.registration .upload-item + .upload-item {
  margin-top: 2rem;
}
section.registration .upload-item .item-title {
  color: #2f2f2f;
  font-family: "Noto Sans TC";
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 150%;
}
section.registration .upload-item .item-title.required::before {
  margin-right: 5px;
  content: "*";
  color: #1872e5;
}
section.registration .upload-fields {
  font-family: "Noto Sans TC";
}
section.registration .upload-fields > div {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 5px;
}
section.registration .upload-fields input[type=file] {
  display: none;
}
section.registration .upload-fields + .upload-fields {
  margin-top: 0.625rem;
}
section.registration .upload-fields .upload-fields-message {
  color: #d60c18;
  font-family: "Noto Sans TC";
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 150%;
  display: none;
  align-items: center;
  gap: 0.62rem;
  margin-top: 0.31rem;
}
section.registration .upload-fields .upload-label {
  padding: 2px 24px;
  border: 1px solid #cfcfcf;
  background: #eee;
  color: #00151d;
  cursor: pointer;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.3s;
}
section.registration .upload-fields .upload-filename {
  color: #1872e5;
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.7px;
}
section.registration .upload-fields p {
  color: #1872e5 !important;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 180% !important;
  letter-spacing: 0.05em;
  white-space: pre;
}
section.registration .upload-fields.error .upload-fields-message {
  display: flex;
}
section.registration .btn-container {
  max-width: 59.4rem;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 992px) {
  section.registration .btn-container {
    margin: 3.75rem auto 0;
    gap: 0.5rem;
  }
}
section.registration .btn.submit-buttons-wrap, section.registration .btn.next {
  margin-top: 0;
  padding: 0;
}
section.registration .btn.submit-buttons-wrap button, section.registration .btn.next button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 187px;
  height: 56px;
  padding: 0 30px;
  background: #f06b3e;
  color: #fff;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}
@media (hover: hover) and (min-width: 993px) {
  section.registration .btn.submit-buttons-wrap button:hover, section.registration .btn.next button:hover {
    background: #ff561d;
  }
}
section.registration .btn.prev {
  padding: 0;
}
section.registration .btn.prev button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 187px;
  height: 56px;
  padding: 0 30px;
  background: #d6d6d6;
  color: #fff;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}
@media (hover: hover) and (min-width: 993px) {
  section.registration .btn.prev button:hover {
    background: #b8b8b8;
  }
}
section.registration.step-1-active .registration-overview, section.registration.step-2-active .registration-overview {
  display: none;
}
section.registration.step-1-active .registration-flow, section.registration.step-2-active .registration-flow {
  display: block;
}
section.faq {
  background-color: #1787dd;
  padding: 80px 20px 80px;
}
@media screen and (max-width: 992px) {
  section.faq {
    padding: 60px 20px;
  }
}
section.faq .faq-top {
  display: block;
  width: 50px;
  height: auto;
  margin: 0 auto 12px;
}
section.faq .faq-title {
  margin-bottom: 10px;
}
@media screen and (max-width: 992px) {
  section.faq .faq-title {
    margin-bottom: 9px;
  }
}
section.faq .faq-description {
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 auto 50px;
  max-width: 720px;
}
@media screen and (max-width: 992px) {
  section.faq .faq-description {
    font-size: 14px;
    margin-bottom: 30px;
    padding: 0 10px;
  }
}
section.faq .faq-container {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
section.faq .faq-item {
  background: #fff;
  border: 1px solid #191919;
  border-radius: 15px;
  overflow: hidden;
}
section.faq .faq-question {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  cursor: pointer;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: #000;
  text-align: left;
}
@media screen and (max-width: 992px) {
  section.faq .faq-question {
    padding: 16px 20px;
    font-size: 17px;
    line-height: 1;
    gap: 10px;
  }
}
section.faq .faq-question .faq-q {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  border-radius: 50%;
  background: #fce96b;
  color: #000;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}
@media screen and (max-width: 992px) {
  section.faq .faq-question .faq-q {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
}
section.faq .faq-question .faq-q-text {
  flex: 1;
  line-height: 1.7;
}
section.faq .faq-question .faq-toggle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 5px;
  background-image: url("./../image/icon-plus.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: opacity 0.2s ease;
}
section.faq .faq-question.active .faq-toggle {
  background-image: url("./../image/icon-minus.svg");
}
section.faq .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
section.faq .faq-answer > p {
  overflow: hidden;
  min-height: 0;
  margin: 0;
  padding: 0 20px 0 56px;
  color: #000;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, padding 0.3s ease;
}
@media screen and (max-width: 992px) {
  section.faq .faq-answer > p {
    font-size: 16px;
    line-height: 1.2;
    padding-left: 52px;
  }
}
section.faq .faq-answer.active {
  grid-template-rows: 1fr;
}
section.faq .faq-answer.active > p {
  opacity: 1;
  padding-bottom: 10px;
}

.popup-1 {
  position: fixed;
  width: 100%;
  z-index: 11112;
  max-width: 937px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 60px 120px;
  display: none;
}
@media screen and (max-width: 992px) {
  .popup-1 {
    width: calc(100% - 40px);
    padding: 80px 40px;
  }
}
@media screen and (max-width: 500px) {
  .popup-1 {
    padding: 100px 40px;
  }
}
.popup-1 .dec-1 {
  position: absolute;
  width: 120px;
  height: 120px;
  left: 0;
  bottom: 0px;
}
@media screen and (max-width: 992px) {
  .popup-1 .dec-1 {
    width: 80px;
    height: 80px;
  }
}
.popup-1 .dec-2 {
  position: absolute;
  width: 120px;
  height: 120px;
  right: 0;
  top: 0px;
  z-index: -1;
}
@media screen and (max-width: 992px) {
  .popup-1 .dec-2 {
    width: 80px;
    height: 80px;
  }
}
.popup-1 .dec-3 {
  position: absolute;
  width: 60px;
  height: 60px;
  left: 60px;
  top: 0px;
}
@media screen and (max-width: 992px) {
  .popup-1 .dec-3 {
    width: 40px;
    height: 40px;
    left: 40px;
    top: 40px;
  }
}
.popup-1 .dec-close {
  position: absolute;
  width: 60px;
  height: 60px;
  right: 0;
  top: 0px;
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .popup-1 .dec-close {
    width: 40px;
    height: 40px;
  }
}
.popup-1 .container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .popup-1 .container {
    flex-direction: column;
    max-height: 60vh;
    overflow: auto;
  }
}
.popup-1 .container .image {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .popup-1 .container .image {
    width: 100%;
  }
}
.popup-1 .container .image img {
  width: 100%;
  display: inline-block;
}
.popup-1 .container .image p {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
}
.popup-1 .container .content {
  width: 50%;
  padding-left: 30px;
}
@media screen and (max-width: 992px) {
  .popup-1 .container .content {
    width: 100%;
    padding-left: 0px;
    margin-top: 30px;
  }
}
.popup-1 .container .content h3 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.popup-1 .container .content span {
  margin-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.popup-1 .container .content p {
  margin-top: 30px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.05em;
}

.popup-black {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.7;
  z-index: 11111;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */