@charset "UTF-8";
:root {
  --font-normal: 400;
  --font-medium: 500;
  --font-bold: 700;
  --font-bolder: 900;
  --line-height-default: 1.5;
  --font-default: "Noto Sans TC", "微軟正黑體", "Microsoft JhengHe", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  --font-en: "Montserrat", sans-serif;
  --transit-default: all .3s ease-out;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: "Noto Sans TC", sans-serif, Arial, sans-serif;
  }
  
  ol,
  ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  
  .main-btn {
    background-color: #ff0a00;
    border-radius: 8px;
    height: 44px;
    width: 200px;
    border: 0px;
    transition: 0.2s;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    cursor: pointer;
    margin-bottom: 20px;
  }
  
  .end-btn {
    background-color: #ff0a00;
    border-radius: 8px;
    height: 44px;
    width: 250px;
    border: 0px;
    transition: 0.2s;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    cursor: pointer;
    margin-bottom: 20px;
  }
  
  .end-btn>a {
    color: #fff;
    text-decoration: none;
  }
  
  .main-btn:hover {
    background-color: #d40d06;
  }
  
  .main-btn:disabled {
    background-color: #c3c3c3;
    cursor: not-allowed;
  }
  
  
  
  .title-box {
    text-align: center;
  }
  
  .title-box>h1 {
    font-size: 24px;
    font-weight: 700;
    color: #102D3E;
    margin-bottom: 32px;
  }
  
  .title-box>p {
    font-size: 20px;
    line-height: 1.8em;
    color: #102D3E;
    margin-bottom: 32px;
    padding: 0px 8px;
  }
  
  .button-box {
    text-align: center;
  }

/*========== spacer ==========*/
.header {
  width: 100%;
  height: 60px;
  background-color: #d70c18;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
}
@media screen and (min-width: 1024px) {
  .header {
    height: 60px;;
  }
}
.header__inner {
  width: 100%;
  height: 3.3125rem;
  padding-left: 0.625rem;
  padding-right: 0.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 75rem;
    margin: 0 auto;
    padding-right: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .header__inner {
    padding-left: 40px;
    padding-right: 40px;
    height: 3.75rem;
  }
}
@media screen and (min-width: 1280px) {
  .header__inner {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 8.125rem;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 0;
  margin-right: auto;
  margin-left: 0.625rem;
}
@media screen and (min-width: 1024px) {
  .header__logo {
    max-width: 9.6875rem;
    margin-left: 0;
  }
}
@media screen and (min-width: 380px) {
    .header__logo {
        margin-top: 8px;
    }
  }

.header__logo > a {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.header .nav {
  background-color: #f6f6f6;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 3.3125rem;
  left: 0;
  padding-top: 3rem;
  overflow: auto;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
  z-index: 900;
}
@media screen and (min-width: 1024px) {
  .header .nav {
    background-color: transparent;
    width: auto;
    height: auto;
    overflow: visible;
    position: static;
    padding-top: 0;
    -webkit-transition: none;
    transition: none;
  }
}
.header .nav.is-closed {
  visibility: hidden;
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  .header .nav.is-closed {
    visibility: visible;
    opacity: 1;
  }
}
.header .nav.is-closed .header__nav__list > li {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
}
@media screen and (min-width: 1024px) {
  .header .nav.is-closed .header__nav__list > li {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.header .nav__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 3rem;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .header .nav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.header .nav__list > li {
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
  display: inline-block;
}
.header .nav__list > li:nth-child(1) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.header .nav__list > li:nth-child(2) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.header .nav__list > li:nth-child(3) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.header .nav__list > li:nth-child(4) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.header .nav__link {
  font-weight: var(--font-bold);
  color: #212121;
  font-size: 1.5rem;
  padding: 1.5rem 0.25rem;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .header .nav__link {
    color: #fff;
    font-size: 1rem;
    font-weight: var(--font-normal);
    padding: 1.25rem;
    display: inline-block;
  }
}
@media screen and (min-width: 1024px) {
  .header .nav__link > span {
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-property: color;
    transition-property: color;
    position: relative;
  }
}
@media screen and (min-width: 1024px) {
  .header .nav__link > span::before {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background-color: #f9c4c4;
    position: absolute;
    left: 0;
    bottom: -6px;
    -webkit-transition: all 0.25s cubic-bezier(1, 0, 0, 1);
    transition: all 0.25s cubic-bezier(1, 0, 0, 1);
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
.header .nav__link:hover {
  color: #212121;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .header .nav__link:hover {
    color: #f9c4c4;
  }
}
@media screen and (min-width: 1024px) {
  .header .nav__link:hover > span:before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.header {
  /* Change background header */
}
.header .burger {
  padding-left: 10px;
  padding-right: 10px;
  margin-right: 0.625rem;
  width: 2.5rem;
  height: 3.3125rem;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .header .burger {
    display: none;
  }
}
.header .burger .burger__bar,
.header .burger .burger__bar::after,
.header .burger .burger__bar::before {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: top 0.2s 0.15s, left 0.1s, background-color 0.4s 0.15s, -webkit-transform 0.2s;
  transition: top 0.2s 0.15s, left 0.1s, background-color 0.4s 0.15s, -webkit-transform 0.2s;
  transition: top 0.2s 0.15s, left 0.1s, transform 0.2s, background-color 0.4s 0.15s;
  transition: top 0.2s 0.15s, left 0.1s, transform 0.2s, background-color 0.4s 0.15s, -webkit-transform 0.2s;
}
.header .burger .burger__bar {
  width: 1.25rem;
  height: 2px;
  background-color: #fff;
  top: 1.625rem;
  left: 0.625rem;
}
.header .burger .burger__bar::after, .header .burger .burger__bar::before {
  content: "";
  width: 100%;
}
.header .burger .burger__bar::after {
  top: -7px;
  left: 0;
}
.header .burger .burger__bar::before {
  top: 7px;
  right: 0;
}
.header .burger.is-open .burger__bar,
.header .burger.is-open .burger__bar::after,
.header .burger.is-open .burger__bar::before {
  -webkit-transition: top 0.2s, left 0.2s, background-color 0.2s, -webkit-transform 0.2s 0.15s;
  transition: top 0.2s, left 0.2s, background-color 0.2s, -webkit-transform 0.2s 0.15s;
  transition: top 0.2s, left 0.2s, transform 0.2s 0.15s, background-color 0.2s;
  transition: top 0.2s, left 0.2s, transform 0.2s 0.15s, background-color 0.2s, -webkit-transform 0.2s 0.15s;
}
.header .burger.is-open .burger__bar {
  background-color: initial;
}
.header .burger.is-open .burger__bar::after, .header .burger.is-open .burger__bar::before {
  width: 24px;
}
.header .burger.is-open .burger__bar::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
  left: -2px;
}
.header .burger.is-open .burger__bar::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
  right: -2px;
}
.header .burger.is-scroll {
  visibility: hidden;
  opacity: 0;
}
.header .burger.is-open.is-scroll {
  visibility: hidden;
  opacity: 0;
}
.header .scroll-header {
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}/*# sourceMappingURL=header.css.map */



section {
  display: flex;
  justify-content: center;
  min-height: 800px;
  margin-top: 60px;
}

.container {
  max-width: 450px;
  margin-top: 76px;
  flex-grow: 1;
  width: 100%;
  margin-bottom: 120px;
}


.main-step {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 0px 32px 0px;
  padding: 0;
}


.main-step>li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  background: #cccccc;
  color: black;
  font-weight: 600;
  height: 40px;
}

.main-step>li.active {
  position: relative;
  background: #FF0A00;
  color: white;

}

.main-step>li.active:not(:last-child)::after {
  position: absolute;
  left: 100%;
  top: 0;
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-top: 20px solid transparent;
  border-left: 10px solid #FF0A00;
  border-bottom: 20px solid transparent;

}


/* sub-step */
.sub-step-box {
  display: flex;
  justify-content: center;
  padding: 0px 16px;
  margin-bottom: 16px;
}

.sub-step {
  display: flex;
  max-width: 350px;
  justify-content: space-between;
  flex-grow: 1;
}

.sub-step>li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 3px solid #ccc;
  color: #555;
  font-weight: bolder;
  font-size: 20px;
  background: white;
  transition: background .2s, border-color .2s, color .2s;
}

.sub-step>li.active {
  border-color: #FF0A00;
  background: #FF0A00;
  color: white;
  cursor: pointer;
}

.sub-step>li:not(:last-child)::after {
  display: block;
  position: absolute;
  content: "";
  height: 3px;
  width: 200%;
  top: calc(50% - 2px);
  left: 100%;
  background: #ccc;
}

.sub-step>li.active:not(:last-child)::after {
  background: #FF0A00;
}

/* question-box */
.question-box>.question {
  width: 100%;
}

/* question */
.question-title {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 20px;
  padding: 0px 8px;
}

.question p {
  font-size: 15px;
  text-align: center;
  margin-bottom: 20px;
}

.question h1 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}

.btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.option-but {
  position: relative;
  width: 95%;
  height: 60px;
  background-color: #fff;
  border-radius: 4px;
  text-align: center;
  font-size: 18px;
  color: black;
  font-weight: 400;
  border: 1px solid #979797;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.option-but+.option-but {
  margin-top: 18px;
}


.option-but>.icon-but::before {
  position: absolute;
  display: block;
  left: 16px;
  background-repeat: no-repeat;
  background-size: 40px;
  width: 40px;
  height: 40px;
  top: 8px;
  padding-right: 12px;
}

.option-but.correct {
  background-color: #fd5b5b;
  border: 1.2px solid #fff;
  color: #fff;
}

.option-but.incorrect {
  background-color: #60a0d8ea;
  border: 1.2px solid #fff;
  color: #fff;
}

.option-but.incorrect>.icon-but::before {
  content: "";
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg id="_圖層_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 40 40"><!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) --><defs><style> .st0 { fill: %23fff; } </style></defs><path class="st0" d="M7,7.2h0c.9-.9,2.3-.9,3.1,0l22.6,22.6c.9.9.9,2.3,0,3.1h0c-.9.9-2.3.9-3.1,0L7,10.3c-.9-.9-.9-2.3,0-3.1Z"/><path class="st0" d="M7.1,29.8L29.7,7.2c.9-.9,2.3-.9,3.1,0h0c.9.9.9,2.3,0,3.1l-22.6,22.6c-.9.9-2.3.9-3.1,0h0c-.9-.9-.9-2.3,0-3.1Z"/></svg>');
}

.option-but.correct>.icon-but::before {
  content: "";
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg id="_圖層_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 40 40"><!-- Generator: Adobe Illustrator 29.3.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 151) --><defs><style> .st0 { fill: %23fff; } </style></defs><rect class="st0" x="8" y="16.4" width="4.8" height="17.4" rx="2.4" ry="2.4" transform="translate(-14.7 14.7) rotate(-45)"/><rect class="st0" x="8.6" y="17.6" width="31.8" height="4.8" rx="2.4" ry="2.4" transform="translate(-7 23.2) rotate(-45)"/></svg>');
}

.TxtBox {
  background-color: #F4F4F4;
  border-radius: 16px;
  padding: 12px;
  margin: 12px;


}

.TxtBox p {
  font-size: 18px;
  line-height: 1.7;
  color: #323d47;
  text-align: left;
}

.timeline {
  /* width: 300px; */
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 20px;
}

.timeline::before {
  position: absolute;
  display: block;
  content: "";
  top: 42px;
  background: #525252;
  height: 2px;
}

.timeline.type1::before {
  left: 32px;
  width: 85%;
}

.timeline.type2::before {
  left: 37px;
  width: 75%;
}



.timeline-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.group-day {
  font-size: 15px;
  color: #000;
  text-align: center;
}

.group-dot {
  background-color: #555;
  text-align: center;
  border: 2px solid #525252;
  width: 16px;
  height: 16px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.group-text {
  font-size: 15px;
  color: #000;
  text-align: center;
}

.group-text2 {
  font-size: 15px;
  color: #fd5b5b;
  text-align: center;
}

.group-text.text-2 {
  transform: translateX(45px);
}

.group-text p samp {
  text-align: left;

}

.group-dot {
  /* white */
  background-color: #fff;
  text-align: center;
  border-radius: 60px;
}


.group-dot.dot-red {
  /* red */
  background-color: #fd7676;
  text-align: center;
  border-radius: 60px;
}

.checkbox-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.form-check-input {
  width: 20px;
  height: 20px;
}

.form-check-input:checked {
  accent-color: #FF0A00;
}


.next-but {
  width: 200px;
  height: 40px;
  background-color: #FF0A00;
  border-radius: 8px;
  align-content: center;
  text-align: center;
  font-size: 18px;
  margin-bottom: 32px;
  border: none;

}

.next-but a {
  font-size: 20px;
  color: #fff;

}


.cis {
  /* width: 100%; */
  background: white;
  font-size: 0.6em;
  color: #D0D0D0;
  padding-left: 20px;
  text-align: left;
  padding-bottom: 8px;
}


/*========== spacer ==========*/
.footer {
  font-family: "微軟正黑體", "Microsoft JhengHe", "Helvetica Neue", Helvetica, sans-serif, serif;
  font-size: 0.75rem;
  color: #333333;
}
.footer .footer__inner {
  max-width: 75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer .footer__info {
  background-color: #ededed;
  padding-top: 15px;
  padding-bottom: 15px;
}
.footer .footer__info .footer__inner {
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  row-gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .footer .footer__info .footer__inner {
    row-gap: 0.625rem;
  }
}
.footer .footer__info .footer__inner > span {
  text-align: center;
  line-height: 1.2;
  width: 100%;
  line-height: 1.2;
  padding-left: 6px;
  padding-right: 6px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer .footer__info .footer__inner > span {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .footer .footer__info .footer__inner > span:not(:first-child)::before {
    content: "";
    -webkit-transform: scaleX(1.105) rotate(30deg);
            transform: scaleX(1.105) rotate(30deg);
    width: 1px;
    height: 12px;
    background-color: #333;
    position: absolute;
    top: 2px;
    left: -1px;
    bottom: 0;
    margin: auto 0;
  }
}
.footer .footer__copyright {
  background-color: #d70c18;
}
@media screen and (min-width: 1024px) {
  .footer .footer__copyright {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #D70C18), color-stop(51%, #D9D9D9));
    background-image: linear-gradient(90deg, #D70C18 50%, #D9D9D9 51%);
  }
}
.footer .footer__copyright .footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 1.5625rem;
  line-height: 13px;
}
@media screen and (min-width: 768px) {
  .footer .footer__copyright .footer__inner {
    height: 2.1875rem;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .footer .footer__copyright .footer__inner {
    height: 3.5rem;
    padding-left: 0px;
    padding-right: 0px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.footer .footer__copyright__text {
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .footer .footer__copyright__text {
    width: 74.75%;
    height: 3.5rem;
    background-color: #d70c18;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
    padding-left: 1.25rem;
  }
}
.footer .footer__copyright__logo {
  display: none;
}
@media screen and (min-width: 1024px) {
  .footer .footer__copyright__logo {
    display: inline-block;
    width: 25.25%;
    padding-left: 1.5625rem;
    height: 1.3125rem;
  }
}
@media screen and (min-width: 1024px) {
  .footer .footer__copyright__logo img {
    height: 1.3125rem;
  }
}
.footer .copyright__eng {
  display: none;
}
@media screen and (min-width: 1024px) {
  .footer .copyright__eng {
    display: inline-block;
  }
}

.pageTop {
  position: fixed;
  right: 10px;
  bottom: -50px;
  z-index: 900;
  -webkit-transition: bottom 0.4s ease;
  transition: bottom 0.4s ease;
  display: none;
}
.pageTop__icon {
  font-size: 2rem;
  color: #fff;
}
.pageTop > a {
  background-color: #000;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.5;
  text-decoration: none;
}
.pageTop > a:hover {
  opacity: 1;
  text-decoration: none;
}
.pageTop > a:hover i {
  text-decoration: none;
}
.pageTop-active .pageTop {
  bottom: 5rem;
}/*# sourceMappingURL=footer.css.map */

