@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;700&display=swap");
:root {
  --header-height: 80px;
}
@media screen and (max-width: 1000px) {
  :root {
    --header-height: 60px;
  }
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.5;
}

@media screen and (min-width: 767px) {
  body {
    font-family: "Noto Sans TC", sans-serif;
    font-weight: 400;
    background-image: url("../images/common/bg.png");
    background-size: 100% auto;
    background-attachment: fixed;
  }
}

.mobileBg {
  display: none;
}
@media screen and (max-width: 767px) {
  .mobileBg {
    display: block;
    width: 100%;
  }
  .mobileBg img {
    width: 100%;
  }
}

img {
  vertical-align: middle;
}

a {
  text-decoration: none;
}

#root {
  width: 100%;
  overflow: hidden;
}

main {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: var(--header-height, 80px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: var(--header-height, 80px);
  padding: 0 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 100;
}

.sm_tx{
  color: #000;
  text-align: center;
  font-size: 14px;
}

@media screen and (max-width: 1000px) {
  .header {
    padding: 0 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.header__logo {
  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;
  max-width: 200px;
}
.header__logo img {
  width: 100%;
  height: auto;
  max-width: 160px;
}
@media screen and (max-width: 1000px) {
  .header__logo {
    width: 120px;
  }
}
.header__hamburger {
  display: none;
  position: absolute;
  top: 20px;
  left: 20px;
}
@media screen and (max-width: 1000px) {
  .header__hamburger {
    display: block;
  }
  .header__hamburger svg,
.header__hamburger rect {
    -webkit-transition: all 0.25s ease-out 0s;
    -o-transition: all 0.25s ease-out 0s;
    transition: all 0.25s ease-out 0s;
  }
}
.header--active .header__hamburger rect:nth-child(1) {
  -webkit-transform: translate(7px, -2px) rotate(45deg);
  -ms-transform: translate(7px, -2px) rotate(45deg);
  transform: translate(7px, -2px) rotate(45deg);
}
.header--active .header__hamburger rect:nth-child(2) {
  -webkit-transform: translate(-15px, 10px) rotate(-45deg);
  -ms-transform: translate(-15px, 10px) rotate(-45deg);
  transform: translate(-15px, 10px) rotate(-45deg);
}
.header--active .header__hamburger rect:nth-child(3) {
  opacity: 0;
}
.header--active .nav {
  left: 0;
  visibility: visible;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.header--active .header__bg {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 1000px) {
  .header__bg {
    width: 100vw;
    height: calc(100vh - var(--header-height, 80px));
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: var(--header-height, 80px);
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
  }
}

.nav {
  position: relative;
  width: 65%;
  height: 100%;
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .nav {
    width: 75%;
  }
}
@media screen and (max-width: 1000px) {
  .nav {
    position: fixed;
    top: calc(var(--header-height, 80px) - 1px);
    left: -100%;
    width: 60%;
    height: 100vh;
    background-color: #fff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    visibility: hidden;
  }
}
.nav__ul {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0 80px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .nav__ul {
    padding: 50px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px 0px;
    overflow: auto;
  }
}
.nav__li {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.nav__li > p,
.nav__li > a {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  color: #2a2a2a;
}
.nav__li > a {
  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: 1000px) {
  .nav__li:not(.nav__info):hover {
    font-weight: 700;
  }
}
.nav__li--nested:hover > .nav__item,
.nav__li--nested:hover > .nav__triangle {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1000px) {
  .nav__li--nested {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .nav__li--nested > p {
    position: relative;
  }
  .nav__li--nested > p:before {
    content: "";
    width: 15px;
    height: 2px;
    border-radius: 4px;
    background-color: #008cd6;
    position: absolute;
    top: 15px;
    right: -35px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .nav__li--nested > p:after {
    content: "";
    width: 2px;
    height: 15px;
    border-radius: 4px;
    background-color: #008cd6;
    position: absolute;
    top: 15px;
    right: -22px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1000px) {
  .nav__li--arrow > p,
.nav__li--arrow > a {
    position: relative;
  }
  .nav__li--arrow > p::before,
.nav__li--arrow > a::before {
    content: "";
    width: 8px;
    height: 2px;
    background-color: #008cd6;
    border-radius: 4px;
    position: absolute;
    top: calc(50% - 2.5px);
    right: -22px;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .nav__li--arrow > p::after,
.nav__li--arrow > a::after {
    content: "";
    width: 8px;
    height: 2px;
    background-color: #008cd6;
    border-radius: 4px;
    position: absolute;
    top: calc(50% + 2.5px);
    right: -22px;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.nav__li--active .nav__item {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  max-height: 1000px;
}
@media screen and (min-width: 1000px) {
  .nav__li:hover > p,
.nav__li:hover > a {
    color: #1382c5;
  }
}
@media screen and (max-width: 1000px) {
  .nav__li {
    width: 100%;
    height: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.nav__text {
  font-size: 1.375rem;
}
@media screen and (max-width: 1000px) {
  .nav__text {
    margin: 0 30px;
    font-size: 1.125rem;
  }
}
.nav__triangle {
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .nav__triangle {
    display: none;
  }
}
.nav__inner {
  width: 100%;
  height: 100%;
  border-top-right-radius: 30%;
  -webkit-transform: translateY(10px) rotate(-60deg) skewX(-30deg) scale(1, 0.866);
  -ms-transform: translateY(10px) rotate(-60deg) skewX(-30deg) scale(1, 0.866);
  transform: translateY(10px) rotate(-60deg) skewX(-30deg) scale(1, 0.866);
  background: steelblue;
}
.nav__item {
  position: absolute;
  bottom: -67.5px;
  left: -170px;
  background-color: steelblue;
  padding: 20px 60px;
  border-radius: 40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .nav__item {
    position: relative;
    bottom: unset;
    left: unset;
    opacity: 1;
    visibility: visible;
    border-radius: 0px;
    padding: 0;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: max-height;
    -o-transition-property: max-height;
    transition-property: max-height;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
.nav__itemContainer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 0 60px;
}
.nav__itemContainer > a {
  color: #fff;
  letter-spacing: 0.05rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 1000px) {
  .nav__itemContainer {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0;
  }
  .nav__itemContainer > a {
    text-align: left;
    width: 100%;
    padding: 15px 30px;
    font-size: 1.125rem;
  }
  .nav__itemContainer > a:not(:last-child) {
    border-width: 0 0 1px 0;
    border-color: #fff;
    border-style: dashed;
  }
}
.nav__info {
  margin-left: auto;
}
.nav__info a {
  color: #1382c5;
}
.nav__info a:first-child {
  position: relative;
  padding-right: 20px;
}
.nav__info a:first-child:after {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #b9b9b9;
}
.nav__info a:last-child {
  padding-left: 20px;
}
@media screen and (max-width: 1000px) {
  .nav__info {
    margin-top: 40px;
    padding: 0 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px 0;
  }
  .nav__info a {
    font-size: 1.125rem;
  }
  .nav__info a:first-child {
    padding-right: 0;
  }
  .nav__info a:first-child::after {
    display: none;
  }
  .nav__info a:last-child {
    padding-left: 0px;
  }
}

.section {
  position: relative;
  width: 87.8477%;
  max-width: 1200px;
  padding: 60px 0;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .section {
    width: 91.5%;
  }
}
.section__block:not(:first-child) {
  padding-top: 120px;
}
.section__title h3 {
  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;
}
.section__title h3::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #84cdf8;
}
.section__title h3::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #97e6b2;
}
@media screen and (max-width: 1000px) {
  .section__title h3::before, .section__title h3::after {
    width: 25px;
    height: 25px;
  }
}
.section__title p {
  position: relative;
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 30px;
}
.section__title p::after {
  content: "";
  width: 110%;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #ffeeac;
  z-index: -1;
  border-radius: 50px;
}
@media screen and (max-width: 1000px) {
  .section__title p {
    font-size: 1.75rem;
    margin: 0 20px;
  }
  .section__title p::after {
    height: 25px;
    width: 107%;
  }
}
.section__title span {
  display: block;
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
}
.section__blockTitle {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  max-width: 900px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.section__blockTitle::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: block;
  background-color: #008cd6;
  z-index: 2;
}
.section__blockTitle::after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: block;
  background-color: #008cd6;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .section__blockTitle {
    padding: 30px 0;
  }
}
.section h4 {
  font-size: 1.75rem;
  color: #fff;
  font-weight: 700;
  background-color: #1acc60;
  border-radius: 50px;
  padding: 6px 50px;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .section h4 {
    font-size: 1.5rem;
    padding: 5px 30px;
  }
}
.section__line {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: 2px;
  background-color: #1acc60;
}

.footer {
  width: 100%;
  padding: 40px 0;
  background-color: #e5e8eb;
}
.footer__container {
  width: 87.8477%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.footer__container p,
.footer__container a {
  font-size: 1rem;
  color: #2a2a2a;
}
@media screen and (max-width: 1000px) {
  .footer__container {
    width: 91.5%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px 0;
}
.footer__left img {
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .footer__left {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px 0;
  }
  .footer__left img {
    margin-bottom: 10px;
  }
}
.footer__logo {
  width: 245px;
}
.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.footer__right a {
  text-decoration: underline;
}
.footer__right p {
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
  */
}

.footer__right p a{
  margin-right:10px;
}


@media screen and (max-width: 1000px) {
  .footer__right {
    margin-top: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__right p {
  /*  margin-top: 50px; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0.75rem;
  }
  .footer__right p a {
    margin-bottom: 4px;
  }
}
.footer__social {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0 10px;
}
@media screen and (min-width: 1000px) {
  .footer__social a circle,
.footer__social a path {
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
  }
  .footer__social a:hover circle {
    fill: #1382c5;
  }
  .footer__social a:hover path {
    fill: #fff;
  }
}

.share {
  position: absolute;
  top: 20px;
  right: 0;
  border: 2px solid #b9b9b9;
  font-size: 1rem;
  color: #8a8a8a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 20px;
  border-radius: 50px;
  gap: 0 10px;
}
.share a,
.share div {
  cursor: pointer;
  width: 25px;
  height: 25px;
  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;
}
.share a img,
.share div img {
  max-width: 100%;
}
@media screen and (max-width: 1000px) {
  .share {
    top: unset;
    bottom: 0;
    width: 100%;
    border: unset;
    border-radius: 0px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    height: 40px;
  }
  .share::after {
    content: "";
    width: 1020px;
    height: 1px;
    background-color: #b9b9b9;
    position: absolute;
    top: 0;
    left: -100px;
  }
}

.method {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 15px;
}
.method__step {
  font-size: 1.125rem;
  color: #ff0057;
  text-align: center;
  width: 80px;
  padding: 4px 0;
  border-radius: 50px;
  border: 2px solid #ff0057;
  border-style: dashed;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.method__description {
  color: #000000;
}
.method__description p {
  font-size: 1.5rem;
  font-weight: 700;
}
.method__description span {
  font-size: 1.125rem;
}
.method__description span.highlight {
  display: block;
  color: #ff0057;
}

.swiperPrev {
  cursor: pointer;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  border-radius: 2px;
  -webkit-filter: drop-shadow(0 0 6px #000);
  filter: drop-shadow(0 0 6px #000);
}

.swiperNext {
  cursor: pointer;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  border-radius: 2px;
  -webkit-filter: drop-shadow(0 0 6px #000);
  filter: drop-shadow(0 0 6px #000);
}

.template__custom {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 780px;
}
.template__custom > div[data-type=imgWidth] {
  width: 100%;
  max-width: calc(var(--width));
}
.template__custom img {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .template__custom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px 0;
  }
}
.template__group {
  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;
  gap: 20px 0;
}
.template__group .method {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.template__group .arrow {
  width: 15px;
  -ms-flex-item-align: center;
  align-self: center;
}
@media screen and (max-width: 1000px) {
  .template__group .arrow {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
.template__groupContainer {
  background-color: #39b4ff;
  border-radius: 20px;
  padding: 25px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 5px;
}
.template__groupContainer .template__swiperPrev,
.template__groupContainer .template__swiperNext {
  display: none;
}
@media screen and (max-width: 1000px) {
  .template__groupContainer {
    position: relative;
    width: 100%;
    padding: 25px 0;
    overflow: hidden;
  }
  .template__groupContainer .template__step {
    margin: 0 auto;
    max-width: unset;
  }
  .template__groupContainer .template__imgArea {
    max-width: 290px;
    margin: 0 auto;
  }
  .template__groupContainer .template__textArea {
    margin-top: 35px;
  }
  .template__groupContainer .template__swiperPrev,
.template__groupContainer .template__swiperNext {
    display: block;
  }
  .template__groupContainer .swiper-wrapper {
    width: 100%;
  }
  .template__groupContainer .swiper-pagination {
    bottom: 80px !important;
  }
  .template__groupContainer .swiper-notification {
    display: none;
  }
  .template__groupContainer .arrow {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .template__groupContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px 0;
  }
}
.template__multipleGroup {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 30%);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .template__multipleGroup {
    grid-template-columns: 1fr;
    gap: 30px 0;
  }
}
.template__multipleItem {
  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;
  gap: 10px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}
.template__multipleItem--full {
  width: 100%;
  grid-column: 1/-1;
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .template__multipleItem--full {
    margin-top: 30px;
  }
}
.template__multipleItem--empty .template__iconContainer {
  grid-template-columns: repeat(1, 1fr);
  margin-top: 0;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .template__multipleItem--empty .template__iconSquare {
    width: 50%;
    margin: 0 auto;
  }
}
.template__multipleItemContainer {
  position: relative;
  width: 100%;
  background-color: #39b4ff;
  border-radius: 20px;
  padding: 25px 40px;
  height: 100%;
  max-height: 680px;
}
.template__multipleItemContainer .swiper-pagination {
  position: static;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .template__multipleItemContainer {
    padding: 25px 20px;
  }
}
.template__step {
  width: 100%;
  margin: 0 auto;
  max-width: 290px;
  overflow: hidden;
}
.template__imgArea {
  width: 100%;
}
.template__imgArea img {
  width: 100%;
}
.template__textArea p {
  text-indent: -30px;
  padding-left: 30px;
  text-align: center;
}
.template__textArea p:before {
  content: attr(data-num);
  font-size: 2.25rem;
  color: #ffda74;
  font-weight: 700;
  margin-right: 5px;
}
.template__textArea p span {
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
}
.template__swiperPrev {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-filter: unset;
  filter: unset;
}
.template__swiperNext {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  -webkit-filter: unset;
  filter: unset;
}
.template__iconContainer {
  margin-top: 20px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .template__iconContainer {
    grid-template-columns: repeat(2, 1fr);
  }
}
.template__iconItem {
  width: 100%;
}
.template__iconSquare {
  width: 100%;
  border-radius: 20px;
  background-color: #e5e8eb;
  -webkit-box-shadow: 7px 7px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 7px 7px 0px rgba(0, 0, 0, 0.1);
  border: 2px solid #e5e8eb;
  overflow: hidden;
  position: relative;
}
.template__iconSquare img {
  width: 100%;
}
.template__iconSquare .small_text{
  position: absolute;
  bottom: 17px;
  color: #fff;
  background: #038cd5;
  padding: 5px 13px 8px;
  line-height: 1;
  border-radius: 30px;
  transform: translate(-50%, 0px);
  left: 50%;
  width: 95px;
}
.template__iconName {
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}

.multipleDot {
  cursor: pointer;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
}
.multipleDot--active {
  background-color: #ffda74;
}

.temp__sub {
  font-size: 1.25rem;
  color: #2a2a2a;
  text-align: center;
  margin: 15px 0px 5px;
}
@media screen and (max-width: 1000px) {
  .temp__sub {
    font-size: 1.125rem;
  }
}
.temp__block {
  width: 100%;
}
.temp__block:not(:last-child) {
  margin-bottom: 40px;
}
.temp__blockContainer {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.breadcrumb {
  width: 100%;
  background-color: #e5e8eb;
}
.breadcrumb__container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 8px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
}
.breadcrumb p,
.breadcrumb a,
.breadcrumb span {
  font-size: 1rem;
  font-weight: 400;
  color: #707070;
}
.breadcrumb span {
  color: #008cd6;
}

.top {
  z-index: 10;
  cursor: pointer;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 40px;
  right: 40px;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.top--sticky {
  position: absolute;
}
@media screen and (max-width: 1000px) {
  .top {
    width: 50px;
    height: 50px;
    bottom: 45px;
    right: 15px;
  }
}
.top img {
  width: 100%;
}

/*  aloha reset  */
#single_content table tr td {
  background: #f5f7f8;
}

#single_content table br {
  display: none;
}

#single_content table tr:first-child td {
  /* background:#ebf7ff; */
}

#single_content ol br {
  display: none;
}

#single_content ul br {
  display: none;
}

#single_content {
  text-align: justify;
  font-size: 1.125rem;
  color: #2a2a2a;
  letter-spacing: 0.05rem;
}

#single_content img{
  width:auto;
}

#single_content .alignleft{
  float:left;
}

#single_content .alignnone{
  float:none;
}

#single_content .alignright{
  float:right;
}

#select {
  opacity: 0;
}

.text-right{
  text-align: right;
  line-height: 1.5;;
}


@media screen and (min-width: 1000px) {
  .header .nav {
    width: calc(100% - 200px);
    position: relative;
    left: 0;
    z-index: -1;
  }
  .header .nav .nav__ul{
    justify-content: center
  }
}





@media screen and (min-width: 1500px) {
  .header .nav {
    width: 100%;
    position: absolute;
    left: 0;
    z-index: -1;
  }
  .header .nav .nav__ul{
    justify-content: center
  }
}


@media screen and (max-width: 1000px) {
  .footer__right p {
    margin-top: 0px;
  }
  .footer__right .text-right{
    margin-top: 50px;
    text-align: center;
  }
}

/* Mask   */ 

#mask{ 
  position: fixed;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:#fff;
  z-index: 222;
  opacity: 1;
  transition: 0.3s;;
}
#mask .center{
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);          
}
#mask .center img{
  display: block;
  margin:auto;
  max-width: 300px;;
}
#mask.ani{ opacity: 0;}
#mask.hide{ display: none; }