/* =========================================================
  TOKENS / ROOT
========================================================= */
:root {
  /* base */
  --bg: #f6f7fb;
  --card: #ffffff;
  --text: #333;
  --stext: #555;
  --muted: #6b7280;
  --line: #e9ecf3;
  --footer: #213168;
  --lightgray: #f7f1f2;

  /* brand (永豐紅/橘) */
  --sp-red: #ca333a;
  --sp-orange: #e9450b;

  /* legacy alias：flow 區塊原本用 --orange */
  --orange: var(--sp-orange);

  /* UI */
  --radius: 18px;
  --shadow: 0 18px 45px rgba(18, 23, 38, .08);
}

/* =========================================================
  RESET / BASE
========================================================= */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: Roboto, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  color: var(--text);
  font-size: 16px;
  overflow-x: hidden;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* visually hidden */
.vh {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  clip-path: inset(50%);
}

/* =========================================================
  LAYOUT CONTAINERS
========================================================= */
.w1200,
.w1100,
.w1000,
.w800 {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.w1200 {
  max-width: 1280px;
}

.w1100 {
  max-width: 1100px;
}

.w1000 {
  max-width: 1000px;
}

.w800 {
  max-width: 800px;
}

/* =========================================================
  HEADER / NAV
========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(5px);
}

.header_inner {
  height: 110px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand_logo {
  height: 40px;
}

/* desktop nav：同時支援 / .nav-desktop */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  padding-top: 5px;
}

.nav-desktop a {
  font-size: 1.125em;
  font-weight: 500;
  color: #555;
  letter-spacing: .1em;
  padding: 10px 6px;
  position: relative;
}

.nav-desktop a.active {
  color: var(--sp-red);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--sp-orange), var(--sp-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: .25s ease;
}

.nav-desktop a:hover::after {
  transform: scaleX(1);
}

.header_cta {
  margin-left: 10px;
}

/* =========================================================
  BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 15px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 1px solid transparent;
  transition: .2s ease;
  cursor: pointer;
}

.btn:hover {
  filter: brightness(120%);
}

.btn .icon {
  background: transparent url('../img/arrow-w.svg') 0 0 no-repeat;
  width: 28px;
  height: 8px;
}

.btn--primary {
  background: linear-gradient(0, var(--sp-red), var(--sp-orange));
  color: #fff;
  box-shadow: 0 14px 28px rgba(213, 29, 29, .18);
  font-size: 1.25em;
  letter-spacing: .15em;
}

.btn-main {
  background: linear-gradient(0, var(--sp-red), var(--sp-orange));
  color: #fff;
  box-shadow: 0 5px 3px rgba(213, 29, 29, .18);
  font-size: 1.25em;
  letter-spacing: .15em;
}

.btn-rect {
  background: linear-gradient(0, var(--sp-red), var(--sp-orange));
  color: #fff;
  box-shadow: 0 5px 3px rgba(213, 29, 29, .18);
  padding: 10px 10px;
  width: 60px;
  height: 60px;
}

.btn-rect:hover,
.btn--primary:hover,
.btn-main:hover {
  filter: brightness(115%);
}

.btn--ghost {
  background: rgba(255, 255, 255, .65);
  border-color: rgba(0, 0, 0, .08);
}

.btn--ghost:hover {
  border-color: rgba(0, 0, 0, .16);
}

.btn[aria-disabled="true"] {
  opacity: .4;
  pointer-events: none;
  box-shadow: none;
}

.btn-main:not([aria-disabled="true"]):hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 10px rgba(213, 29, 29, .22);
}

/* =========================================================
  BURGER / MOBILE MENU
========================================================= */
.burger {
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #111;
  border-radius: 999px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .35s ease, opacity .25s ease;
}

.burger span:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-10px);
}

.burger span:nth-child(2) {
  transform: translate(-50%, -50%) translateY(0);
}

.burger span:nth-child(3) {
  transform: translate(-50%, -50%) translateY(10px);
}

.burger.is-open span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Mask */
.menu-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 999;
  height: 100vh;
}

.menu-mask.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 86vw);
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
  z-index: 1000;
  padding: 80px 24px 24px;
  overflow: hidden;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.menu-item {
  display: block;
  margin-bottom: 16px;
  color: #444;
  text-decoration: none;
  font-size: 1.25em;
  font-weight: bolder;
  padding-left: 22px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease, color .25s ease;
}

.menu-item.active {
  color: var(--sp-red);
}

.mobile-menu.is-open .menu-item {
  opacity: 1;
  transform: translateY(0);
}

/* 注意：flowline 是第1個 child */
.mobile-menu.is-open .menu-item:nth-child(2) {
  transition-delay: .10s;
}

.mobile-menu.is-open .menu-item:nth-child(3) {
  transition-delay: .16s;
}

.mobile-menu.is-open .menu-item:nth-child(4) {
  transition-delay: .22s;
}

/* Flowline */
.menu-flowline {
  position: absolute;
  top: 72px;
  left: 0px;
  width: 4px;
  height: calc(100vh - 120px);
  border-radius: 999px;
  background: linear-gradient(to bottom,
      #e9450b00 0%,
      #D72A1729 18%,
      #d72a17 50%,
      #D72A171f 82%,
      #e9450b00 100%);
  opacity: 0;
  transform-origin: top;
  transform: scaleY(.3);
  transition: opacity .45s ease, transform .55s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}

.mobile-menu.is-open .menu-flowline {
  opacity: 1;
  transform: scaleY(1);
  transition-delay: .08s;
}

/* Lock scroll */
body.menu-open {
  overflow: hidden;
}

/* Desktop breakpoint */
@media (min-width: 992px) {
  .burger {
    display: none;
  }

  .menu-mask,
  .mobile-menu {
    display: none;
  }

  body.menu-open {
    overflow: auto;
  }
}

/* =========================================================
  KV
========================================================= */
.kv {
  position: relative;
  background: transparent url('../img/kv.jpg') center / cover no-repeat;
  width: 100%;
  aspect-ratio: 1920 / 846;
  height: calc(80vh + 110px);
  min-height: 846px;
  margin-top: -110px;
}

/* .kv.is-static {
  background-image: url("../img/kv.jpg");
} */

.mainTxt {
  background: transparent url('../img/mainTxt.png') center / contain no-repeat;
  width: 100%;
  aspect-ratio: 1000 / 310;
}

.kv_desc {
  color: #555;
  font-size: 1.125em;
  padding-left: 85px;
  letter-spacing: .1em;
  max-width: 620px;
}

.spark {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 12px 26px rgba(255, 255, 255, .45);
}

.s1 {
  left: 18%;
  top: 52%
}

.s2 {
  left: 42%;
  top: 60%
}

.s3 {
  left: 64%;
  top: 48%
}

.kv_notice {
  position: absolute;
  width: 80%;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  padding: 18px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(0, 0, 0, .06);
  text-align: center;
  color: #666;
  letter-spacing: .1em;
  max-width: 900px;
}

.kv_notice span {
  margin: 0 auto;
  display: block;
}

.blackt {
  color: #333;
  font-style: italic;
  font-weight: 500;
}

/* =========================================================
  FLOW（KV 下方流程）
========================================================= */
.flow {
  background: transparent url('../img/bg02.jpg') center top no-repeat;
  width: 100%;
  position: relative;
  padding: 60px 20px;
}

/* STEP1 */
.flow__step1 {
  text-align: center;
  margin-bottom: 40px;
}

.flow__title {
  display: flex;
  align-items: center;
  color: white;
  justify-content: center;
  height: 60px;
  margin: 0 auto 30px;
  font-weight: 500;
  font-size: 1.5em;
  letter-spacing: .2em;
  transform: skewX(-8deg);
}

.flow__step {
  font-size: 44px;
  color: var(--orange);
  margin-right: 8px;
}

/* STEP1 pill */
.pill-group {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.pill {
  padding: 15px 40px;
  color: white;
  font-size: 1.5em;
  letter-spacing: .1em;
  border: 2px solid white;
  background: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  transition: .15s ease;
}

.pill:hover {
  background: #ffffff;
  color: var(--sp-orange);
}

.pill.is-active {
  color: var(--sp-orange);
  background: white;
}

/* notice（企業才顯示） */
.fnotice {
  background: #fff;
  border-radius: 999px;
  padding: 20px 45px;
  margin: 0 auto 30px;
}

.fnotice p {
  margin: 0;
  font-size: 1em;
  line-height: 1.5;
  color: #555;
  letter-spacing: .1em;
}

/* STEP2 Card */
.card2 {
  background: #f7f1f2;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 45px 75px;
  box-shadow: 0 4px 3px #33333370;
}

.q-group {
  padding: 40px 30px 10px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, .06);
}

.card--plain {
  padding-bottom: 24px;
}

.card__hd {
  text-align: center;
  margin-bottom: 8px;
}

.card__title {
  margin: 6px 0 12px;
  font-size: 1.5em;
  font-weight: 500;
  letter-spacing: .1em;
  transform: skewX(-8deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__step {
  font-size: 34px;
  color: var(--orange);
  margin-right: 6px;
}

/* 題目區塊（淡入 slide-up） */
.qblock {
  padding: 20px 6px 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .35s ease, transform .35s ease;
}

.qblock:first-of-type {
  border-top: none;
}

.qblock.is-show {
  opacity: 1;
  transform: translateY(0);
}

.qblock.is-hidden {
  display: none !important;
}

.qrow {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.dot {
  width: 22px;
  height: 22px;
  margin-top: 6px;
  background: transparent url('../img/icon-list.png') 0 0 no-repeat;
  flex: 0 0 22px;
}

/* 題目文字 */
.qtitle {
  margin: 0;
  font-size: 1.25em;
  color: #444;
  line-height: 1.6;
}

.qhl {
  color: var(--orange);
  font-weight: 600;
}

/* 選項 */
.opt-group {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.opt-group:nth-child(2) {
  margin: 10px auto;
}

.opt-btn {
  appearance: none;
  border: 2px solid var(--muted);
  background: #fff;
  color: var(--muted);
  font-size: 1.5em;
  letter-spacing: .1em;
  padding: 12px 30px;
  border-radius: 999px;
  text-align: center;
  cursor: pointer;
  transition: .15s ease;
}

.opt-btn:hover {
  transform: translateY(-1px);
}

.opt-btn.no-selected {
  color: #ccc;
  border-color: #ccc;
}

.opt-btn.is-selected {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  position: relative;
}

.opt-btn.is-selected::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 999px;
  border: 1.5px solid #fff;
  pointer-events: none;
}

/* 金流商品卡 */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 20px 6px 40px;
}

.pitem {
  background: #fff;
  border: 2px solid var(--muted);
  border-radius: 30px;
  padding: 18px 14px;
  text-align: center;
  cursor: pointer;
  transition: .15s ease;
  color: #555;
}

.pitem:hover {
  transform: translateY(-1px);
}

.pitem.no-selected {
  color: #ccc;
  border-color: #ccc;
}

.pitem.is-selected {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  box-shadow: 0 5px 15px rgba(233, 69, 11, .18);
  position: relative;
}

.pitem.is-selected::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 28px;
  border: 2px solid #fff;
  pointer-events: none;
}

.picon {
  width: 70px;
  height: 50px;
  margin: 0 auto 10px;
  background: transparent url(../img/icon-opt.png) 0 -50px no-repeat;
}

.pitem:nth-child(2) .picon {
  background: transparent url(../img/icon-opt.png) -70px -50px no-repeat;
}

.pitem:nth-child(3) .picon {
  background: transparent url(../img/icon-opt.png) -140px -50px no-repeat;
}

.pitem.is-selected:nth-child(1) .picon {
  background: transparent url(../img/icon-opt.png) 0 0 no-repeat;
}

.pitem.is-selected:nth-child(2) .picon {
  background: transparent url(../img/icon-opt.png) -70px 0 no-repeat;
}

.pitem.is-selected:nth-child(3) .picon {
  background: transparent url(../img/icon-opt.png) -140px 0 no-repeat;
}

.ptitle {
  font-size: 1.5em;
  color: inherit;
  letter-spacing: .1em;
  margin-bottom: 6px;
}

.psub {
  font-size: 1em;
  color: inherit;
  font-weight: 500;
  margin-bottom: 8px;
}

.plist {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1em;
  line-height: 1.6;
  letter-spacing: .1em;
  color: inherit;
  font-weight: 500;
  text-align: left;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.plist li {
  display: flex;
  gap: 8px;
}

.plist li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 900;
}

.pitem.is-selected .plist li::before {
  color: white;
}

/* CTA */
.cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .35s ease, transform .35s ease;
}

.cta-wrap.is-show {
  opacity: 1;
  transform: translateY(0);
}

.cta-wrap.is-hidden {
  display: none !important;
}

/* Utility */
.is-hidden {
  display: none !important;
}

/* Flow RWD */
@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .opt-btn {
    min-width: 100%;
  }
}

/* =========================================================
  SECTIONS / CARDS / FAQ / FORM / TAB / MODAL / VIDEO
  （以下保留你原本樣式，僅做分段）
========================================================= */

/* Sections */
.section {
  background: #fff url('../img/bg-inner.jpg') center 15% no-repeat;
  width: 100%;
  height: auto;
  position: relative;
  padding: 60px 20px 80px;
  background-size: cover;
}

.section--alt {
  background: var(--bg);
}

.section_title {
  margin: 0 0 18px;
  font-size: 28px;
}

.title-group {
  border-bottom: 2px solid var(--sp-red);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title {
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
  font-size: 2.250em;
  letter-spacing: .1em;
  transform: skewX(-5deg);
  border-top-right-radius: 25px;
  border: 2px solid var(--sp-red);
  border-bottom: none;
  padding: 0 25px;
  position: relative;
}

.title::before {
  content: '';
  width: 20px;
  height: 120%;
  position: absolute;
  left: -5px;
  bottom: -3px;
  background: var(--sp-red);
}

.title-group p {
  color: #555;
  font-size: 1.250em;
  letter-spacing: .1em;
}

.title-group p.t-red {
  color: var(--sp-red);
}

.title-group.red .title {
  color: white;
  background: var(--sp-red);
}

.red .title::before {
  background: white;
  border: 2px solid var(--sp-red);
}

/* Card common */
.card {
  background: #fff;
  border-radius: 0 0 30px 30px;
  padding: 40px 50px;
  margin-bottom: 60px;
  box-shadow: 0 3px 4px #33333356;
  border-bottom: 4px solid var(--sp-red);
}

.card p {
  font-size: 1.125em;
  color: #555;
  line-height: 2;
}

.card h3 {
  font-size: 1.5em;
  color: #555;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .1em;
}

.card h5 {
  font-size: 1.5em;
  line-height: 2;
  color: var(--sp-red);
  letter-spacing: .1em;
  margin-right: 15px;
}

.card ol {
  margin-top: 20px;
  line-height: 2;
  letter-spacing: .1em;
}

.line {
  display: flex;
  align-items: center;
}

.faq-wrap {
  background: #fff;
  border-radius: 0 0 30px 30px;
  padding: 30px;
  box-shadow: 0 3px 4px #33333356;
}

/* Promo */
.promo {
  background: #fffde6;
  border-radius: 30px;
  padding: 40px 30px;
  margin-bottom: 60px;
}

.promo-title {
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
  font-size: 2.250em;
  letter-spacing: .1em;
  transform: skewX(-5deg);
  color: var(--sp-red);
  text-align: center;
  margin-bottom: 20px;
}

.promo p {
  font-size: 1.125em;
  line-height: 2;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  color: #333;
}



.bolder {
  font-weight: 600;
}

.t-gray {
  color: #888;
}

p a {
  text-decoration: underline;
}

/* Steps */
.steps {
  display: flex;
  gap: 15px;
  margin-left: 60px;
  align-items: baseline;
}

.stptitle {
  color: var(--sp-red);
  font-size: 1.5em;
  font-weight: bolder;
  font-style: italic;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
}

.step-num {
  font-size: 40px;
  font-weight: bolder;
  font-style: italic;
}

.step-content h4 {
  margin: 0 0 4px;
}

.notice {
  margin-top: 20px;
  padding-left: 18px;
  font-size: 1.125em;
  color: #888;
}

.notice p {
  font-size: 24px;
  color: #888;
}

/* Timeline */
.timeline-title {
  text-align: center;
  margin: 30px 0;
  font-size: 2.25em;
  color: var(--sp-red);
  display: block;
}

.timeline-title span {
  color: #d6001c;
}

.timeline-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
  position: relative;
}

.timeline-grid::before {
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  background: #888;
  left: 48%;
  bottom: 0;
}

.time-item {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
}

.time-date {
  font-weight: 700;
  font-size: 1.3em;
  color: var(--sp-red);
  background: #fde3e3;
  padding: 2px 8px 2px 20px;
  border-radius: 999px;
}

.time-date2 {
  font-weight: 700;
  font-size: 1.3em;
  color: var(--sp-red);
  background: #fde3e3;
  padding: 2px 8px 2px 20px;
  border-radius: 999px;
  display: block;
  margin-top: 10px;
}

.time-spec {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.time-spec .time-txt,
.time-spec .time-info {
  width: 50%;
}

.time-spec .time-other {
  width: 100%;
  font-size: 1em;
  color: #999;
  margin-top: 10px;
}

/* Download */
.download {
  margin: 100px auto;
  position: relative;
}

.download2 {
  margin: 100px auto 0;
  position: relative;
}

.download3 {
  margin: 40px auto 20px;
  position: relative;
}

.btn-download {
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border: 2px solid #d6001c;
  border-radius: 999px;
  display: block;
}

.btn-download:hover {
  filter: brightness(110%);
}

.btn-download div {
  padding: 15px 40px;
  background: linear-gradient(90deg, var(--sp-red), var(--sp-orange));
  color: #fff;
  border-radius: 999px;
  font-weight: 400;
  letter-spacing: .1em;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid white;
}

.download-group {
  margin: 40px auto 100px;
}

.download-group .btn-download {
  position: relative;
  top: auto;
  right: auto;
}

.download-group .btn-download.btn-same {
  min-width: 470px;
  text-align: center;
}

.download-group li {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.download-group li p {
  font-size: 1.375em;
  color: #555;
}

/* RWD (section) */
@media (max-width: 640px) {
  .download-group .btn-download.btn-same {
    min-width: 100%;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    gap: 4px;
  }
}

.content {
  background: white;
  letter-spacing: 0.05em;
  padding: 50px 30px;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 3px 4px #33333334;
}

.content p {
  font-size: 1.125em;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.form {
  background: white;
  letter-spacing: 0.05em;
  padding: 50px 30px;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 3px 4px #33333334;
}

.form ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
  justify-content: space-between;
}

label {
  font-size: 1.25em;
  color: #444;
  font-weight: 500;
}

input:not([type="checkbox"]) {
  background: #fde3e3;
  border-radius: 50px;
  border: none;
  font-size: 1.125em;
  color: #444;
  padding: 12px 20px;
  width: calc(100% - 120px);
}

.vertifyCode {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vertifyCode input {
  width: 150px;
}

.renew {
  cursor: pointer;
  filter: drop-shadow(2px 2px 1px #3333334d);
}

.renew:hover {
  filter: drop-shadow(0px 0px 0px #3333334d);
}

.msg {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 5px;
}

textarea {
  background: #fde3e3;
  border-radius: 20px;
  border: none;
  font-size: 1.125em;
  color: #555;
  padding: 12px 20px;
  width: calc(100% - 115px);
}

.submit-btn {
  display: table;
  margin: 40px auto 0;
  cursor: pointer;
  font-size: 1.25em;
}

.info li {
  width: calc((100% - 20px)/2);
}

.t-red {
  color: var(--sp-red);
}

.info {
  margin-bottom: 30px;
}

.term-area {
  font-size: 1.25em;
  margin: 10px 0;
}

.term-area a {
  text-decoration: underline;
}

input[type='checkbox'] {
  width: 20px;
  height: 20px;
}

h4 {
  font-size: 1em;
  color: var(--sp-orange);
  font-weight: 500;
  display: none;
}

h3 {
  font-size: 1.500em;
  color: var(--sp-red);
  line-height: 1.5;
}


.to-top {
  position: fixed;
  right: 1.5%;
  bottom: 1%;
  z-index: 10;
  display: none;
}


/* Apply cards */
.apply-cards {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: 30px auto;
  justify-content: center;
  align-items: stretch;
}

.apply-card {
  flex: 1;
  display: flex;
  border: 3px solid #d32f2f;
  border-radius: 20px;
  background: #fff;
  text-decoration: none;
  color: #222;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .08);
  transition: transform .2s ease, box-shadow .2s ease;
  max-width: 395px;
}

.apply-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
}

.card-icon {
  padding: 0 20px;
  background: #d32f2f;
  border: 2px solid white;
  border-radius: 18px 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.card-icon img {
  width: 75px;
  height: auto;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
  letter-spacing: .1em;
}

.card-content .arrow {
  font-size: 22px;
}

.card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.link {
  color: var(--sp-red);
  text-decoration: underline;
}

/* Footer */
footer {
  background: var(--footer);
  padding: 20px 30px;
  color: white;
  letter-spacing: .1em;
}

.page h1 {
  text-align: center;
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
  transform: skewX(-8deg);
  font-size: 2.813em;
  letter-spacing: 0.1em;
  margin-top: 60px;
}

.tag {
  border: 2px solid #333;
  border-radius: 999px;
  font-size: 0.7em;
  padding: 3px 20px;
  letter-spacing: normal;
}

/* Hero backgrounds */
.hero {
  background: transparent url('../img/bg03.jpg') center / cover no-repeat;
  width: 100%;
  min-height: 475px;
  margin-top: -110px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product {
  background: transparent url('../img/bg04.jpg') center / cover no-repeat;
}

.faq {
  background: transparent url('../img/bg07.jpg') center / cover no-repeat;
}

.contact {
  background: transparent url('../img/bg08.jpg') center / cover no-repeat;
}

.operate {
  background: transparent url('../img/bg05.jpg') center / cover no-repeat;
}

.hero_sub {
  display: table;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 2px 60px;
  font-size: 1.125em;
  margin: 30px auto 0;
  color: white;
  background: linear-gradient(90deg,
      rgba(215, 42, 23, 0) 0%,
      rgba(215, 42, 23, 1) 12%,
      rgba(234, 96, 0, 1) 92%,
      rgba(234, 96, 0, 0) 100%);
}

.hero::after {
  content: '';
  height: 5px;
  background: linear-gradient(90deg,
      rgba(200, 50, 60, 0) 0%,
      rgba(200, 50, 60, 1) 50%,
      rgba(200, 50, 60, 0) 100%);
  position: absolute;
  width: 100%;
  bottom: 0;
}

.center {
  text-align: center;
}

/* Tabs */
.faq-tabs,
.pro-tabs {
  padding-top: 10px;
  display: flex;
  gap: 20px;
  background: #fde3e3;
  border-radius: 30px 30px 0 0;
}

.tab-btn {
  padding: 8px 5px;
  border-radius: 25px 25px 0 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.5em;
  letter-spacing: .1em;
  line-height: 45px;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pro-tabs .tab-btn {
  width: 30%;
}

.tab-btn .icon {
  background: transparent url('../img/icon-tab.png') 0 0 no-repeat;
  width: 55px;
  height: 45px;
}

.tab-btn:nth-child(2) .icon {
  background-position: -55px 0;
}

.tab-btn:nth-child(3) .icon {
  background-position: -110px 0;
}

.tab-btn:nth-child(4) .icon {
  background-position: -165px 0;
}

.tab-btn.active {
  background: white;
  color: var(--sp-red);
}

.tab-btn.active .icon {
  background-position: 0 -45px;
}

.tab-btn:nth-child(2).active .icon {
  background-position: -55px -45px;
}

.tab-btn:nth-child(3).active .icon {
  background-position: -110px -45px;
}

.tab-btn:nth-child(4).active .icon {
  background-position: -165px -45px;
}

/* pro tabs icon overrides */
.pro-tabs .tab-btn .icon {
  background-position: -55px 0;
}

.pro-tabs .tab-btn:nth-child(2) .icon {
  background-position: -110px 0;
}

.pro-tabs .tab-btn:nth-child(3) .icon {
  background-position: -165px 0;
}

.pro-tabs .tab-btn.active .icon {
  background-position: -55px -45px;
}

.pro-tabs .tab-btn:nth-child(2).active .icon {
  background-position: -110px -45px;
}

.pro-tabs .tab-btn:nth-child(3).active .icon {
  background-position: -165px -45px;
}

/* FAQ */
.faq-item {
  background: #faebec;
  border-radius: 20px;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
  padding: 0 80px 0 60px;
  font-size: 16px;
}

.faq-item::before {
  content: 'Q';
  color: var(--sp-red);
  padding: 8px 14px;
  font-size: 1.25em;
  border-radius: 30px;
  border: 2px solid var(--sp-red);
  position: absolute;
  font-weight: 600;
  top: calc(50% - 20px);
  left: 20px;
}

.faq-item.active::before {
  color: white;
  border-radius: 30px;
  background: var(--sp-red);
}

.faq-item th,
.faq-item td {
  font-size: 0.8em;
  padding: 0 15px;
}

.nb {
  width: 80px;
}

.faq-item tr:nth-child(odd) {
  background: #fff;
}

.faq-item tr:nth-child(even) {
  background: #fefefe;
}

.faq-item th {
  background: #a1a1a1;
}

.faq-item ol {
  padding-left: 20px;
}

.faq-q {
  padding: 25px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  font-size: 1.125em;
  letter-spacing: .1em;
  color: #555;
}

.stxt {
  font-size: 0.8em;
}

.arrow-frame {
  position: absolute;
  right: 30px;
  top: calc(50% - 20px);
  background: #ccc;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  box-shadow: 0 3px 5px #33333337;
  cursor: pointer;
}

.arrow {
  width: 16px;
  height: 16px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  position: absolute;
  right: 13px;
  top: 40%;
  margin-top: -5px;
  transition: .3s;
}

.m-center {
  margin: 20px auto 0;
  max-width: 540px;
}

.subtitle {
  font-size: 1.25em;
  letter-spacing: .1em;
  color: white;
  background: var(--sp-red);
  display: inline-block;
  padding: 8px 18px;
  border-radius: 15px;
  margin-bottom: 20px;
}

.faq-item.active .arrow {
  transform: rotate(-135deg);
}

.faq-a {
  padding: 0 25px 20px;
  font-size: 1.125em;
  color: #555;
  display: none;
  line-height: 1.5;
  letter-spacing: .1em;
}

/* Tab Content */
.tab-content {
  background: white;
  padding: 40px 30px;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 3px 4px #33333334;
  display: none;
  margin-bottom: 60px;
}

.pro-content {
  padding: 60px 100px;
}

.tab-content.active {
  display: block;
}

/* Modal */
.c-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.c-modal.is-open {
  display: block;
}

.c-modal_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.c-modal_dialog {
  position: relative;
  width: min(520px, calc(100% - 40px));
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 18px;
  border: 2px solid #e85b5b;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .25);
  padding: 34px 28px 26px;
}

.c-modal_close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transform: rotate(45deg);
  background: linear-gradient(0, var(--sp-red), var(--sp-orange));
  color: #fff;
  font-size: 1.875em;
  line-height: 44px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(229, 72, 72, .35);
}

.c-modal_pill {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fde8ea;
  color: var(--sp-red);
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 14px;
  width: 100%;
  text-align: center;
}

.c-modal_body {
  color: #333;
  font-size: 1.125em;
  line-height: 1.75;
}

.c-modal.is-open .c-modal_dialog {
  animation: modalPop .18s ease-out both;
}

@keyframes modalPop {
  from {
    transform: translateY(-46%) scale(.98);
    opacity: .0;
  }

  to {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}

/* Lock scroll helper */
.is-scroll-locked {
  overflow: hidden;
}

/* RWD: 1024 */
@media (max-width: 1024px) {
  .kv_inner {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .nav-desktop,
  .header_cta {
    display: none;
  }

  .burger {
    display: flex;
    margin-left: auto;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .grid2 {
    grid-template-columns: 1fr;
  }

  .guide {
    grid-template-columns: 1fr;
  }

  .kv_notice {
    border-radius: 18px;
  }

  .tab-btn {
    flex-wrap: wrap;
    font-size: 1.125em;
    line-height: 1;
  }

  .pro-content {
    padding: 10px;
  }
}

/* fixed buttons */
.btn-blue {
  width: 30px;
  background: linear-gradient(180deg, rgba(45, 76, 180, 1) 0%, rgba(110, 140, 248, 1) 100%);
  color: white;
  padding: 8px 20px;
}

.btn-red {
  width: 30px;
  background: linear-gradient(180deg, rgba(200, 51, 58, 1) 0%, rgba(230, 68, 14, 1) 100%);
  color: white;
  padding: 8px 20px;
}

.dl-p {
  padding: 10px 20px;
  color: var(--sp-red);
  letter-spacing: .1em;
  font-size: 1.125em;
  font-weight: 500;
}

.final-title {
  margin-top: 40px;
}

.card p.phone {
  font-size: 2.25em;
  font-weight: 800;
  font-style: italic;
}

p.phone span {
  font-size: 0.7em;
}

.op-content {
  border-radius: 25px;
  padding: 20px;
  border: 2px solid #ffd4d4;
  margin-top: 30px;
}

.card .op-content h3 {
  color: var(--sp-red);
  text-align: center;
}

.op-content .steps {
  margin-left: 10px;
}

/* video tabs */
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 30px auto;
  justify-content: center;
}

.v-tab {
  border: 0;
  font-size: 1.5em;
  cursor: pointer;
  padding: 10px 30px;
  border-radius: 999px;
  background: #f7c9c9;
  font-weight: 500;
  color: #444;
}

.v-tab .sub {
  display: block;
}

.v-tab.is-active {
  background: linear-gradient(90deg, var(--sp-red), var(--sp-orange));
  color: #fff;
}

/* main video card */
.v-card {
  border-radius: 30px;
  overflow: hidden;
  border: 2px solid var(--sp-red);
  display: grid;
  grid-template-columns: 1fr 280px;
  background: #fff;
}

/* video area */
.video-area {
  position: relative;
  background: #000;
  min-height: 420px;
}

.video-inner {
  position: absolute;
  inset: 0;
}

.player-wrap {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.player-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* right panel */
.panel {
  background: #c7323c;
  padding: 25px;
  color: #fff;
}

.panel h3 {
  font-size: 1.125em;
  letter-spacing: .5px;
  color: white;
}

.panel p {
  font-size: 1em;
  margin: 0 0 20px;
  color: #ccc;
}

.chapter-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.chapter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 999px;
  background: #25333f;
  color: #fff;
  border: 0;
  cursor: pointer;
}

.chapter .left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tri {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 12px solid #c7323c;
}

.txt {
  font-size: 14px;
}

.time {
  opacity: .9;
  font-weight: 900;
}

.fix-btn {
  position: fixed;
  right: 2%;
  top: 30%;
  max-width: 60px;
  text-align: center;
  z-index: 10;
  display: none;
}

.fix-btn2 {
  position: fixed;
  right: 2%;
  top: 30%;
  max-width: 60px;
  text-align: center;
  z-index: 10;
}

.fix-btn button {
  margin-bottom: 15px;
}

/* RWD: video */
@media (max-width: 980px) {
  .v-card {
    grid-template-columns: 1fr;
  }

  .panel {
    border-top: 2px solid rgba(255, 255, 255, .18);
  }

  .video-area {
    min-height: 360px;
  }
}

/* RWD: mobile */
@media screen and (max-width: 768px) {
  .header_inner {
    height: 80px;
  }

  .hero {
    margin-top: -80px;
  }

  .apply-cards {
    flex-direction: column;
  }

  .card-icon {
    width: 100px;
  }

  .card ol {
    padding-left: 30px;
    font-size: 1.125em;
    line-height: 1.5;
    letter-spacing: normal;
  }

  .promo {
    padding: 30px 10px;
  }

  .txt {
    font-size: 16px;
  }

  .fix-btn,
  .fix-btn2 {
    right: 0;
  }

  .flow__title {
    font-size: 1.375em;
    transform: none;
  }

  .v-tab {
    font-size: 1.125em;
    padding: 10px 12px;
  }

  .panel p {
    text-align: center;
  }

  .section {
    padding: 60px 30px 40px;
  }

  .card p.phone {
    font-size: 1.5em;
  }

  .card h5 {
    text-align: center;
  }

  .kv {
    background: transparent url('../img/kv-m.jpg') center/cover no-repeat;
    width: 100%;
    aspect-ratio: 750 / 1334;
    min-height: 100vh;
  }

  .kv.is-static {
    background: transparent url('../img/kv-m.jpg') center/cover no-repeat;
  }

  .mainTxt {
    background: transparent url('../img/mainTxt-m.png') center / contain no-repeat;
    width: 100%;
    aspect-ratio: 800 / 425;
  }

  .kv_desc {
    width: 100%;
    padding: 0 40px;
  }

  .kv_notice {
    bottom: 15%;
    padding: 10px;
  }

  .pill-group {
    gap: 10px;
  }

  .pill {
    padding: 5px 8px;
    font-size: 1.25em;
  }

  .card2 {
    padding: 20px 15px;
  }

  .fnotice {
    border-radius: 25px;
    font-size: 16px;
    padding: 15px;
  }

  .card__title {
    flex-wrap: wrap;
    transform: none;
    font-size: 1.25em;
  }

  .ptitle {
    font-size: 1.25em;
  }

  .opt-btn {
    font-size: 1.25em;
    padding: 15px 10px;
    letter-spacing: normal;
  }

  .page h1 {
    font-size: 2.25em;
    margin-top: 120px;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }

  .download {
    margin: 60px auto;
  }

  .hero {
    min-height: 280px;
    background-position-x: 80%;
  }

  .contact {
    background-position-x: center;
  }

  .hero_sub {
    padding: 5px 30px;
    letter-spacing: normal;
  }

  .info li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .title {
    padding: 0 0 0 20px;
    white-space: nowrap;
    font-size: 2em;
  }

  label {
    white-space: nowrap;
    font-size: 1em;
  }

  .term-area {
    font-size: 1em;
  }

  h4 {
    font-size: .8em;
  }

  .title-group p {
    white-space: nowrap;
    font-weight: 500;
    margin: 15px auto 10px;
    font-size: 1.125em;
    letter-spacing: normal;
  }

  h3 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.25em;
  }

  input:not([type="checkbox"]),
  textarea {
    width: 100%;
  }

  .promo-title {
    font-size: 1.8em;
    letter-spacing: 0;
    font-weight: 700;
  }

  .promo p {
    line-height: 1.5;
    font-weight: 500;
  }

  .card {
    padding: 20px;
    border-radius: 30px;
    margin-bottom: 40px;
  }

  .content {
    border-radius: 30px;
  }

  .line {
    flex-wrap: wrap;
    justify-content: center;
  }

  .steps {
    flex-wrap: wrap;
    margin: 10px 0;
    gap: 0;
  }

  .timeline-title {
    font-size: 1.5em;
    margin: 0 0 10px;
    font-weight: 600;
  }

  .timeline-grid {
    margin-top: 10px;
  }

  .timeline-grid::before {
    content: none;
  }

  .time-item {
    gap: 0;
  }

  .time-date {
    font-size: 1.125em;
    text-align: center;
    padding: 10px 8px;
  }

  .time-spec {
    gap: 10px;
  }

  .time-spec .time-txt,
  .time-spec .time-info {
    width: 100%;
  }

  .time-spec .time-info {
    text-align: center;
  }

  .time-date2 {
    font-size: 1.125em;
    text-align: center;
  }

  .card p {
    line-height: 1.5;
  }

  .card h3 {
    font-size: 1.25em;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: normal;
  }

  .title-group {
    border-bottom: none;
    flex-wrap: wrap;
    justify-content: center;
  }

  .title-group .title {
    border: 2px solid var(--sp-red);
    font-weight: 700;
  }

  .btn-download {
    position: relative;
    top: auto;
    right: auto;
  }

  .btn-download div {
    font-size: 1.25em;
    letter-spacing: normal;
    text-align: center;
  }

  .download-group li {
    flex-wrap: wrap;
    justify-content: center;
  }

  .download-group li p {
    font-size: 1.125em;
  }

  .faq-item {
    padding: 0;
  }

  .faq-wrap {
    padding: 0;
    box-shadow: none;
  }

  .faq-item:last-child {
    margin-bottom: 0;
  }

  .faq-item::before {
    font-size: 1em;
    top: 22px;
    padding: 2px 7px;
    background: #ffc4c8;
    border: none;
  }

  .faq-q {
    text-indent: 28px;
    letter-spacing: normal;
  }

  .faq-a {
    letter-spacing: normal;
  }

  .arrow {
    width: 10px;
    height: 10px;
    right: 10px;
    border-color: #555;
    border-width: 3px;
  }

  .tab-content {
    padding: 20px 10px;
    margin-bottom: 40px;
  }

  .arrow-frame {
    background: transparent;
    box-shadow: none;
    right: 8px;
    cursor: pointer;
  }

  .notice {
    font-size: 1.125em;
  }

  .notice p {
    font-size: 1.125em;
  }

  .transfer-content .faq-wrap {
    background: none;
  }

  .transfer-content .faq-item {
    background: white;
  }

  .form {
    border-radius: 30px;
  }

  .btn-main {
    font-size: 1em;
  }

  .q-group {
    padding: 40px 10px 10px;
  }
}

@media screen and (max-width: 400px) {
  .card__title {
    letter-spacing: .05em;
  }

  .btn-rect {
    width: 45px;
    height: 45px;
  }

  .fix-btn,
  .fix-btn2 {
    max-width: 45px;
  }

  .flow__title {
    flex-wrap: wrap;
  }

  .pill {
    padding: 5px 9px;
  }

}