@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

html {
  font-size: 62.5%;
}

.eng {
  text-transform: uppercase;
  font-family: sans-serif;
}

.container1400 {
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .container1400 {
    max-width: 100%;
    padding: 0 5%;
  }
}

.container900 {
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .container900 {
    max-width: 100%;
    padding: 0 5%;
  }
}

.container1200 {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .container1200 {
    max-width: 100%;
    padding: 0 5%;
  }
}

.sectionTitle {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
  z-index: 3;
}
@media (max-width: 1024px) {
  .sectionTitle {
    flex-direction: column;
    align-items: center;
  }
}
.sectionTitle p.eng {
  font-size: 6rem;
  border-right: 1rem solid #000;
  padding-right: 2rem;
  position: relative;
}
@media (max-width: 1024px) {
  .sectionTitle p.eng::after {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 6rem;
    height: 0.6rem;
    background: #000;
  }
}
@media (max-width: 1024px) {
  .sectionTitle p.eng {
    font-size: 2.8rem;
    border-right: none !important;
    padding-right: 0;
    margin-bottom: 2rem;
  }
}
.sectionTitle h1,
.sectionTitle h2 {
  padding-left: 2rem;
}
@media (max-width: 1024px) {
  .sectionTitle h1,
  .sectionTitle h2 {
    padding-left: 0;
  }
}
.sectionTitle h1 span,
.sectionTitle h2 span {
  display: block;
  font-size: 2.6rem;
}
.sectionTitle h1 span.eng,
.sectionTitle h2 span.eng {
  font-size: 1.8rem;
  letter-spacing: 0.4rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .sectionTitle h1 span.eng,
  .sectionTitle h2 span.eng {
    display: none;
  }
}

.centerBanner {
  max-width: 100%;
}
@media (max-width: 1024px) {
  .centerBanner {
    display: none;
  }
}

.fontSizeControl {
  display: flex;
}
@media (max-width: 1024px) {
  .fontSizeControl {
    justify-content: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
}
.fontSizeControl #increaseFont,
.fontSizeControl #decreaseFont {
  display: flex;
  align-items: center;
  border: none;
  background: #b3c3d6;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.2rem;
  padding: 0.5rem 1rem;
  font-size: 2rem;
  cursor: pointer;
  opacity: 1;
  margin-right: 1rem;
  border-radius: 10px;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s, background-color 0.3s;
}
.fontSizeControl #increaseFont:disabled,
.fontSizeControl #decreaseFont:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  background-color: #ccc;
}

/* 隱藏 Google reCAPTCHA 徽章 */
.grecaptcha-badge {
  visibility: hidden;
}

/* 完全移除 Google reCAPTCHA 徽章 */
.grecaptcha-badge {
  display: none;
}

#topLogo {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 9;
}
#topLogo img {
  max-width: 200px;
}
@media (max-width: 1024px) {
  #topLogo img {
    width: 150px;
  }
}

#pcOpenMenuBtn {
  position: fixed;
  right: 2rem;
  top: 2rem;
  z-index: 7;
  cursor: pointer;
  opacity: 1;
  font-size: 6rem;
  color: #fcb335;
  text-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  #pcOpenMenuBtn {
    display: none;
  }
}

nav.pcNavbar {
  background: #fffaf6;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
nav.pcNavbar.active {
  transform: translateX(0);
}
nav.pcNavbar.active .mainMenu {
  opacity: 1;
}
@media (max-width: 1024px) {
  nav.pcNavbar {
    display: none;
  }
}
nav.pcNavbar .mainMenu {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
  padding-left: 3rem;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0.5s;
}
nav.pcNavbar .mainMenu a {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  color: #c49b7a;
  position: relative;
}
nav.pcNavbar .mainMenu a:hover {
  color: #b96969;
}
nav.pcNavbar .mainMenu a:hover:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #b96969;
  width: 100%;
  height: 6px;
  content: "";
}
nav.pcNavbar .mainMenu a span {
  display: block;
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
}
nav.pcNavbar .mainMenu a span.eng {
  margin: 0;
  letter-spacing: 0;
  font-size: 1.2rem;
}
nav.pcNavbar .mainMenu .pcCloseMenuBtn {
  position: absolute;
  right: 0;
  top: 0;
  height: 120px;
  cursor: pointer;
}

.indexCover {
  max-width: 100%;
  position: relative;
}
.indexCover picture {
  max-width: 100%;
}
.indexCover picture img {
  max-width: 100%;
  min-width: 100%;
}
.indexCover .bannerSlogan {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #fff;
  font-size: 46px;
  text-align: center;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}
@media (max-width: 1024px) {
  .indexCover .bannerSlogan {
    top: 45%;
    font-size: 26px;
    width: 85%;
    letter-spacing: 2px;
    line-height: 2;
  }
}
.indexCover .bannerSlogan br {
  display: none;
}
@media (max-width: 1024px) {
  .indexCover .bannerSlogan br {
    display: block;
  }
}
.indexCover .bannerSlogan span {
  display: inline;
}
@media (max-width: 1024px) {
  .indexCover .bannerSlogan span {
    display: none;
  }
}
.indexCover .coverText {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}
@media (max-width: 1024px) {
  .indexCover .coverText {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.indexCover .coverText a {
  display: block;
  font-size: 8rem;
  letter-spacing: 0.6rem;
  color: #f00;
  font-weight: bold;
  margin-bottom: 2rem;
  text-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .indexCover .coverText a {
    font-size: 3.6rem;
    margin-bottom: 0;
  }
}
.indexCover .coverText p {
  font-size: 2.6rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
  letter-spacing: 0.2rem;
}
@media (max-width: 1024px) {
  .indexCover .coverText p {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

.indexFeature {
  max-width: 100%;
  background: #ebe7f1;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.indexFeature .icon1 {
  position: absolute;
  max-width: 40rem;
  left: 5%;
  bottom: 5%;
}
@media (max-width: 1024px) {
  .indexFeature .icon1 {
    display: none;
  }
}
.indexFeature .icon2 {
  position: absolute;
  max-width: 50rem;
  right: 5%;
  top: 5%;
}
@media (max-width: 1024px) {
  .indexFeature .icon2 {
    max-width: 20rem;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
  }
}
.indexFeature .sectionTitle p.eng {
  color: #8c69b9;
  border-right: 1rem solid #8c69b9;
}
.indexFeature .sectionTitle p.eng::after {
  background: #8c69b9;
}
.indexFeature .sectionTitle h1,
.indexFeature .sectionTitle h2 {
  color: #8c69b9;
  letter-spacing: 0.4rem;
}
.indexFeature .sectionTitle h1 span,
.indexFeature .sectionTitle h2 span {
  color: #8c69b9;
}
.indexFeature .featureContent {
  position: relative;
  z-index: 3;
}
.indexFeature .featureContent .featureCards {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .indexFeature .featureContent .featureCards {
    flex-direction: column;
  }
}
.indexFeature .featureContent .featureCards .featureCard {
  border-radius: 1rem;
  background: #fff;
  max-width: calc(33.3333333333% - 5rem);
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .indexFeature .featureContent .featureCards .featureCard {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}
.indexFeature .featureContent .featureCards .featureCard .cardImage {
  position: relative;
}
.indexFeature .featureContent .featureCards .featureCard .cardImage img {
  width: 100%;
  height: 18rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}
.indexFeature .featureContent .featureCards .featureCard .cardImage span.eng {
  position: absolute;
  color: rgba(255, 255, 255, 0.8);
  font-size: 2.6rem;
  bottom: 10px;
  right: 10px;
}
.indexFeature .featureContent .featureCards .featureCard .cardText {
  padding: 1.5rem 1rem;
}
@media (max-width: 1024px) {
  .indexFeature .featureContent .featureCards .featureCard .cardText {
    padding: 2rem;
  }
}
.indexFeature .featureContent .featureCards .featureCard .cardText h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #8c69b9;
}
.indexFeature .featureContent .featureCards .featureCard .cardText p {
  font-size: 1.6rem;
}

.indexTestimonies {
  max-width: 100%;
  background: #dce6ff;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.indexTestimonies .icon1 {
  position: absolute;
  max-width: 40rem;
  left: 5%;
  bottom: 5%;
}
@media (max-width: 1024px) {
  .indexTestimonies .icon1 {
    display: none;
  }
}
.indexTestimonies .icon2 {
  position: absolute;
  max-width: 50rem;
  right: 5%;
  top: 5%;
}
@media (max-width: 1024px) {
  .indexTestimonies .icon2 {
    max-width: 20rem;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
  }
}
.indexTestimonies .sectionTitle p.eng {
  color: #5585aa;
  border-right: 1rem solid #5585aa;
}
.indexTestimonies .sectionTitle p.eng::after {
  background: #5585aa;
}
.indexTestimonies .sectionTitle h1,
.indexTestimonies .sectionTitle h2 {
  color: #5585aa;
  letter-spacing: 0.4rem;
}
.indexTestimonies .sectionTitle h1 span,
.indexTestimonies .sectionTitle h2 span {
  color: #5585aa;
}
.indexTestimonies .customerTestimonies .swiper-wrapper {
  height: 52rem;
}
.indexTestimonies .customerTestimonies .swiper-wrapper .swiper-slide img {
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(85, 133, 170, 0.5);
}
.indexTestimonies .customerTestimonies .swiper-pagination {
  bottom: 0;
}

.indexCertification {
  max-width: 100%;
  background: #fff3de;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.indexCertification .icon2 {
  position: absolute;
  max-width: 50rem;
  right: 5%;
  top: 5%;
}
@media (max-width: 1024px) {
  .indexCertification .icon2 {
    max-width: 20rem;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
  }
}
.indexCertification .sectionTitle p.eng {
  color: #fcb335;
  border-right: 1rem solid #fcb335;
}
.indexCertification .sectionTitle p.eng::after {
  background: #fcb335;
}
.indexCertification .sectionTitle h1,
.indexCertification .sectionTitle h2 {
  color: #fcb335;
  letter-spacing: 0.4rem;
}
.indexCertification .sectionTitle h1 span,
.indexCertification .sectionTitle h2 span {
  color: #fcb335;
}
.indexCertification .certification {
  padding: 5% 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .indexCertification .certification {
    flex-direction: column;
  }
}
.indexCertification .certification img {
  position: relative;
  z-index: 3;
  max-width: calc(33.3333333333% - 50px);
  border-radius: 10px;
  box-shadow: 5px 5px 0.3rem rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .indexCertification .certification img {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}

.serviceList {
  display: flex;
  justify-content: space-between;
  padding: 5% 0;
}
@media (max-width: 1024px) {
  .serviceList {
    flex-direction: column;
    padding: 5%;
  }
}
.serviceList .serviceBox {
  max-width: calc(33.3333333333% - 5rem);
  padding: 2rem;
  border-radius: 1rem 4rem 1rem 4rem;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .serviceList .serviceBox {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}
.serviceList .serviceBox .serviceBoxTitle {
  border-left: 1rem solid #b96969;
  color: #b96969;
  padding-left: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}
.serviceList .serviceBox .serviceBoxTitle p {
  margin-bottom: 10px;
  font-size: 1.6rem;
}
.serviceList .serviceBox .serviceBoxTitle h4 {
  font-size: 2.6rem;
  font-weight: normal;
}
.serviceList .serviceBox .serviceBoxText {
  margin-bottom: 2rem;
  font-size: 1.6rem;
}
.serviceList .serviceBox .serviceBoxLinks {
  display: flex;
  flex-direction: column;
}
.serviceList .serviceBox .serviceBoxLinks a {
  text-align: center;
  margin: 1rem 0;
  padding: 1rem;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  background: #b96969;
  border-radius: 1rem;
}
.serviceList .serviceBox .serviceBoxLinks a span {
  display: block;
}
.serviceList .serviceBox .serviceBoxLinks a span:last-child {
  margin-top: 0.5rem;
  font-size: 1rem;
  letter-spacing: 0rem;
}
@media (max-width: 1024px) {
  .serviceList .serviceBox .serviceBoxLinks a span:last-child {
    display: none;
  }
}
.serviceList .serviceBox1 {
  background: #ffc7c7;
}
.serviceList .serviceBox1 .serviceBoxTitle {
  border-left: 1rem solid #b96969;
  color: #b96969;
}
.serviceList .serviceBox1 .serviceBoxText {
  color: #b96969;
}
.serviceList .serviceBox1 .serviceBoxLinks a {
  color: #ffc7c7;
  background: #b96969;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(185, 105, 105, 0.5);
}
.serviceList .serviceBox2 {
  background: #ebd1b4;
}
.serviceList .serviceBox2 .serviceBoxTitle {
  border-left: 1rem solid #b28451;
  color: #b28451;
}
.serviceList .serviceBox2 .serviceBoxText {
  color: #b28451;
}
.serviceList .serviceBox2 .serviceBoxLinks a {
  color: #ebd1b4;
  background: #b28451;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(178, 132, 81, 0.5);
}
.serviceList .serviceBox3 {
  background: #add4d8;
}
.serviceList .serviceBox3 .serviceBoxTitle {
  border-left: 1rem solid #45848b;
  color: #45848b;
}
.serviceList .serviceBox3 .serviceBoxText {
  color: #45848b;
}
.serviceList .serviceBox3 .serviceBoxLinks a {
  color: #add4d8;
  background: #45848b;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(69, 132, 139, 0.5);
}

.atIndex .otherServiceBoxLinks {
  display: none;
}

.serviceList.inMenu {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  min-width: 100%;
  height: calc(100vh - 103px);
  padding: 0;
}
.serviceList.inMenu .serviceBox {
  max-width: 33.3333333333%;
  min-width: 33.3333333333%;
  padding: 2rem;
  border-radius: 0;
  box-shadow: none;
}
.serviceList.inMenu .serviceBox .serviceBoxLinks a {
  padding: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 1710px) {
  .serviceList.inMenu .serviceBox .serviceBoxLinks a {
    margin-bottom: 1rem;
    padding: 1rem;
  }
}
@media (max-width: 1550px) {
  .serviceList.inMenu .serviceBox .serviceBoxLinks a {
    margin-bottom: 0rem;
    padding: 1rem;
  }
}

.faq {
  max-width: 100%;
  background: #f1f9ff;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.faq .icon1 {
  position: absolute;
  max-width: 40rem;
  left: 5%;
  bottom: 5%;
}
@media (max-width: 1024px) {
  .faq .icon1 {
    max-width: 10rem;
    right: initial;
    left: 30%;
    top: 5%;
    transform: translateX(-50%);
  }
}
.faq .icon2 {
  position: absolute;
  max-width: 50rem;
  right: 5%;
  top: 5%;
}
@media (max-width: 1024px) {
  .faq .icon2 {
    max-width: 15rem;
    right: initial;
    top: 0;
    left: 70%;
    transform: translateX(-50%);
  }
}
.faq .sectionTitle p.eng {
  color: #153897;
  border-right: 1rem solid #153897;
}
.faq .sectionTitle p.eng:after {
  background: #153897;
}
.faq .sectionTitle h1,
.faq .sectionTitle h2 {
  color: #153897;
  letter-spacing: 0.4rem;
}
.faq .sectionTitle h1 span,
.faq .sectionTitle h2 span {
  color: #153897;
}
.faq .faqContent {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 5rem;
}
@media (max-width: 1024px) {
  .faq .faqContent {
    grid-template-columns: repeat(1, 1fr);
    padding: 0rem;
  }
}
.faq .faqContent a {
  background: #153897;
  color: #fff;
  padding: 2rem 0;
  letter-spacing: 0.4rem;
  font-size: 1.8rem;
  text-align: center;
  border-radius: 10px;
}
.faq .faqContent a:nth-child(even) {
  background: #153897;
}
@media (max-width: 1024px) {
  .faq .faqContent a:nth-child(even) {
    background: #8fa2d5;
  }
}
@media (max-width: 1024px) {
  .faq .faqContent a {
    padding-right: 2rem;
    padding-left: 1rem;
    text-align: left;
    position: relative;
  }
}
.faq .faqContent a i {
  display: none;
}
@media (max-width: 1024px) {
  .faq .faqContent a i {
    display: block;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    font-size: 2.6rem;
  }
}

.footerPhone {
  max-width: 100%;
  background: #e6e7ec;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.footerPhone .sectionTitle p.eng {
  color: #4d557e;
  border-right: 1rem solid #4d557e;
}
.footerPhone .sectionTitle p.eng:after {
  background: #4d557e;
}
.footerPhone .sectionTitle h1,
.footerPhone .sectionTitle h2 {
  color: #4d557e;
  letter-spacing: 0.4rem;
}
.footerPhone .sectionTitle h1 span,
.footerPhone .sectionTitle h2 span {
  color: #4d557e;
}
.footerPhone #footerPhoneList {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0;
}
@media (max-width: 1024px) {
  .footerPhone #footerPhoneList {
    grid-template-columns: repeat(1, 1fr);
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 0px;
  }
}
.footerPhone #footerPhoneList .phoneListBox {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footerPhone #footerPhoneList .phoneListBox h5 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #4d557e;
  letter-spacing: 0.35rem;
}
@media (max-width: 1024px) {
  .footerPhone #footerPhoneList .phoneListBox h5 {
    width: 300px;
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
    background: #4d557e;
    padding: 10px 0;
    text-align: center;
    border-radius: 10px;
  }
}
.footerPhone #footerPhoneList .phoneListBox .phoneNumber {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0;
  align-items: center;
  height: auto;
}
@media (max-width: 1024px) {
  .footerPhone #footerPhoneList .phoneListBox .phoneNumber {
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    height: 0;
    transition: all 0.3s;
  }
  .footerPhone #footerPhoneList .phoneListBox .phoneNumber.active {
    align-items: flex-start;
    width: 300px;
    height: 200px;
    padding-left: 40px;
    margin-top: -10px;
    padding-top: 5px;
    border-radius: 0px 0px 10px 10px;
    font-family: serif;
    line-height: 1.25;
  }
}
.footerPhone #footerPhoneList .phoneListBox .phoneNumber a {
  color: #fff;
  background: #4d557e;
  font-weight: bold;
  letter-spacing: 0.2rem;
  padding: 0.5rem 1.5rem;
  font-size: 2rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}
@media (max-width: 1024px) {
  .footerPhone #footerPhoneList .phoneListBox .phoneNumber a {
    margin-bottom: 5px;
    color: #4d557e;
    background: transparent;
  }
}

.footerMail {
  max-width: 100%;
  background: url("../img/ContactUs.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.footerMail .sectionTitle p.eng {
  color: #153897;
  border-right: 1rem solid #153897;
}
.footerMail .sectionTitle p.eng::after {
  background: #153897;
}
.footerMail .sectionTitle h1,
.footerMail .sectionTitle h2 {
  color: #153897;
  letter-spacing: 0.4rem;
}
.footerMail .sectionTitle h1 span,
.footerMail .sectionTitle h2 span {
  color: #153897;
}

form#form {
  padding-top: 3rem;
  font-size: 2rem;
  max-width: 50%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  form#form {
    max-width: 100%;
  }
}
form#form .form1 {
  display: flex;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  form#form .form1 {
    flex-direction: column;
  }
}
form#form .form1 .form-name {
  margin-right: 2rem;
}
@media (max-width: 1024px) {
  form#form .form1 .form-name {
    margin-right: 0;
  }
}
form#form .form1 .form-name label {
  color: #153897;
  margin-right: 1rem;
  font-weight: bold;
}
form#form .form1 .form-name label::before {
  content: "*";
  color: #f00;
}
form#form .form1 .form-name input {
  background-color: #fbfbfb;
  border: none;
  border-radius: 5px;
  padding: 0.4rem;
  font-size: 1.8rem;
}
form#form .form1 .form-name input:focus {
  outline: none;
}
@media (max-width: 1024px) {
  form#form .form1 .form-name input {
    margin-bottom: 1rem;
    max-width: 100%;
  }
}
form#form .form1 .form-sex label {
  color: #153897;
  font-weight: bold;
  margin-right: 10px;
}
form#form .form2 {
  display: flex;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  form#form .form2 {
    flex-direction: column;
    margin-bottom: 0;
  }
}
form#form .form2 label {
  font-weight: bold;
  color: #153897;
  margin-right: 1rem;
}
form#form .form2 label::before {
  content: "*";
  color: #f00;
}
form#form .form2 input {
  font-size: 1.8rem;
  background-color: #fbfbfb;
  border: none;
  border-radius: 5px;
  padding: 0.4rem;
}
form#form .form2 input:focus {
  outline: none;
}
@media (max-width: 1024px) {
  form#form .form2 input {
    width: 100%;
    margin-bottom: 3rem;
  }
}
form#form .form2 .form-phone {
  margin-right: 2.5rem;
}
@media (max-width: 1024px) {
  form#form .form2 .form-phone {
    margin-right: 0;
  }
}
form#form .form3 {
  margin-bottom: 3rem;
}
form#form .form3 label {
  color: #153897;
  font-weight: bold;
  margin-right: 1rem;
}
form#form .form3 label::before {
  content: "*";
  color: #f00;
}
@media (max-width: 1024px) {
  form#form .form3 label {
    display: block;
  }
}
form#form .form3 select {
  font-size: 1.8rem;
  width: 33%;
  padding: 0.5rem;
  background-color: #fbfbfb;
  border: none;
  border-radius: 4px;
}
form#form .form3 select:focus {
  outline: none;
}
@media (max-width: 1024px) {
  form#form .form3 select {
    width: 100%;
  }
}
form#form .form-message {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
form#form .form-message label {
  font-weight: bold;
  color: #153897;
  margin-bottom: 1rem;
}
form#form .form-message label::before {
  content: "*";
  color: #f00;
}
form#form .form-message textarea {
  font-size: 1.8rem;
  width: 100%;
  height: 15rem;
  resize: none;
  background-color: #fbfbfb;
  border: none;
  border-radius: 5px;
  padding: 0.5rem;
}
form#form .form-message textarea:focus {
  outline: none;
}
form#form .form-btn {
  display: flex;
  justify-content: center;
}
form#form .form-btn button {
  font-size: 2rem;
  cursor: pointer;
  background-color: transparent;
  color: #fff;
  background: #153897;
  border-radius: 30px;
  padding: 0.5rem 2rem;
  transition: all 0.3s;
  margin: 0 5rem;
  border: none;
}
form#form .form-btn button:hover {
  background: rgb(14.773255814, 39.3953488372, 106.226744186);
  color: #fff;
}
@media (max-width: 1024px) {
  form#form .form-btn button {
    margin: 0px 20px;
  }
}

.mail-slogan {
  padding: 0 5%;
  margin: 3rem 0;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  color: #f00;
}

.copyright {
  background: #fff5ed;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 3rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
}
@media (max-width: 1024px) {
  .copyright {
    padding-top: 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.copyright .leftPhone {
  text-align: center;
}
@media (max-width: 1024px) {
  .copyright .leftPhone {
    order: 3;
  }
}
.copyright .leftPhone p {
  color: #b96969;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2rem;
}
.copyright .leftPhone .google-reCAPTCHA {
  font-size: 1.2rem;
  color: #bdbdbc;
}
.copyright .leftPhone .google-reCAPTCHA a {
  font-size: 1.2rem;
  color: #bdbdbc;
}
.copyright .centerLogo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (max-width: 1024px) {
  .copyright .centerLogo {
    order: 1;
    position: relative;
    top: initial;
    left: initial;
    transform: translate(0%, 0%);
    margin-bottom: 1rem;
  }
}
.copyright .centerLogo img {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.copyright .rightPacts {
  text-align: center;
}
@media (max-width: 1024px) {
  .copyright .rightPacts {
    order: 2;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.copyright .rightPacts p {
  color: #b96969;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2rem;
}
.copyright .rightPacts .pactLinks a {
  font-size: 1.2rem;
  color: #bdbdbc;
  padding: 0 0.5rem;
  border-left: 0.1rem solid #bdbdbc;
}
.copyright .rightPacts .pactLinks a:first-child {
  border-left: none;
}

.fixedBtn {
  position: fixed;
  z-index: 9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  left: 20px;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
}

.messageBtn {
  bottom: 120px;
  background: #ffaa3b;
  display: grid;
  place-content: center;
}
.messageBtn i {
  color: #fff;
  font-size: 2.8rem;
}

.lineBtn {
  bottom: 40px;
  background: #45d636;
  display: grid;
  place-content: center;
}
.lineBtn img {
  width: 25px;
}

.floating-contact {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 9;
}
.floating-contact .contact-content {
  background-color: #2c499a;
  color: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  letter-spacing: 0.2rem;
}
.floating-contact .contact-content .contact-title {
  font-size: 1.6rem;
  margin: 0;
}
.floating-contact .contact-content .contact-number {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
  color: #fff;
  letter-spacing: 0.4rem;
}
.floating-contact .close-button {
  position: absolute;
  right: -10px;
  top: -10px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0;
}

.innerPageCover {
  max-width: 100%;
  position: relative;
}
.innerPageCover picture {
  max-width: 100%;
}
.innerPageCover picture img {
  max-width: 100%;
  min-width: 100%;
}
.innerPageCover .coverText {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}
@media (max-width: 1024px) {
  .innerPageCover .coverText {
    width: 100%;
    top: 70%;
  }
}
.innerPageCover .coverText h1 {
  font-size: 4rem;
  color: #fff;
  letter-spacing: 0.4rem;
  text-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .innerPageCover .coverText h1 {
    font-size: 2.6rem;
  }
}
.innerPageCover .coverText p.eng {
  color: #fff;
  font-size: 3rem;
  letter-spacing: 0.2rem;
  text-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .innerPageCover .coverText p.eng {
    font-size: 1.6rem;
  }
}

.innerPageCover.special .coverText {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}
@media (max-width: 1024px) {
  .innerPageCover.special .coverText {
    width: 80%;
    top: 50%;
    line-height: 1.5;
  }
}
.innerPageCover.special .coverText h1 {
  font-size: 4rem;
  color: #fff;
  letter-spacing: 0.4rem;
  text-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
  margin-bottom: 10rem;
}
@media (max-width: 1024px) {
  .innerPageCover.special .coverText h1 {
    font-size: 2.8rem;
  }
}
.innerPageCover.special .coverText p.eng {
  color: #fff;
  font-size: 3rem;
  letter-spacing: 0.2rem;
  text-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .innerPageCover.special .coverText p.eng {
    font-size: 1.6rem;
  }
}
.innerPageCover.special .coverText .specialText p {
  font-weight: bold;
  width: 100%;
  color: #fff;
  text-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
  margin-bottom: 5rem;
  font-size: 4.6rem;
}
@media (max-width: 1710px) {
  .innerPageCover.special .coverText .specialText p {
    font-size: 3.8rem;
  }
}
@media (max-width: 1024px) {
  .innerPageCover.special .coverText .specialText p {
    font-size: 2.6rem;
    line-height: 1.5;
  }
}

.aboutArticleTop {
  padding: 5% 0;
}
.aboutArticleTop h2 {
  font-size: 3rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: #45848b;
}
.aboutArticleTop p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.aboutArticleTop p.titleSubText {
  text-align: center;
}
.aboutArticleTop .teamCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 3rem;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .aboutArticleTop .teamCards {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.aboutArticleTop .teamCards .teamCard {
  background: #d2eef1;
  border-left: 1.5rem solid #45848b;
  padding: 2rem;
  border-radius: 1rem 3rem 1rem 3rem;
}
.aboutArticleTop .teamCards .teamCard h3 {
  color: #45848b;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.aboutArticleTop .teamCards .teamCard p {
  margin-bottom: 1rem;
  color: #45848b;
}
.aboutArticleTop h5 {
  font-size: 1.6rem;
  margin-top: 5rem;
  text-align: center;
}

.indexCertification.about {
  background: #d2eef1;
}
.indexCertification.about .sectionTitle p.eng {
  color: #45848b;
  border-right: 1rem solid #45848b;
}
.indexCertification.about .sectionTitle p.eng::after {
  background: #45848b;
}
.indexCertification.about .sectionTitle h1,
.indexCertification.about .sectionTitle h2 {
  color: #45848b;
  letter-spacing: 0.4rem;
}
.indexCertification.about .sectionTitle h1 span,
.indexCertification.about .sectionTitle h2 span {
  color: #45848b;
}
.indexCertification.about .certificationText {
  padding-top: 3rem;
  color: #45848b;
  font-size: 1.6rem;
}
.indexCertification.about .certificationText p {
  margin-bottom: 2rem;
}

.aboutCenterPhoto {
  width: 100%;
}
.aboutCenterPhoto img {
  width: 100%;
}

.aboutArticleBottom {
  padding: 5% 0;
}
.aboutArticleBottom h2 {
  font-size: 3rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: #45848b;
}
.aboutArticleBottom p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.aboutArticleBottom strong {
  color: red;
  font-weight: bold;
}
.aboutArticleBottom ul {
  margin-bottom: 2rem;
  padding-left: 2rem;
}
.aboutArticleBottom ul li {
  font-weight: bold;
  color: #45848b;
}
.aboutArticleBottom ol {
  margin-bottom: 2rem;
  list-style: none;
}
.aboutArticleBottom li {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.aboutArticleBottom h6 {
  text-align: center;
  color: #45848b;
  font-size: 2.2rem;
}
@media (max-width: 1024px) {
  .aboutArticleBottom h6 {
    font-size: 1.8rem;
  }
}

.processPage {
  padding: 5% 0;
}
.processPage h2 {
  text-align: center;
  font-size: 3.6rem;
  color: #153897;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .processPage h2 {
    font-size: 2.8rem;
  }
}
.processPage p {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.processPage .processStep {
  padding: 2% 0;
}
.processPage .stepBox {
  padding: 5rem 0;
}
.processPage .stepBox .stepContent {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .processPage .stepBox .stepContent {
    flex-direction: column;
  }
}
.processPage .stepBox .stepContent .stepNumber {
  display: grid;
  place-content: center;
  font-size: 6rem;
  font-weight: bold;
  border-radius: 50%;
  color: #fff;
  min-width: 15rem;
  min-height: 15rem;
  aspect-ratio: 1;
}
.processPage .stepBox .stepContent .stepText {
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .processPage .stepBox .stepContent .stepText {
    padding-left: 0;
  }
}
.processPage .stepBox .stepContent .stepText h3 {
  font-size: 2.6rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .processPage .stepBox .stepContent .stepText h3 {
    text-align: center;
    margin-top: 3rem;
    font-size: 3rem;
  }
}
.processPage .stepBox .stepContent .stepText p {
  font-size: 1.6rem;
  text-align: left;
}
@media (max-width: 1024px) {
  .processPage .stepBox .stepContent .stepText p {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.processPage .stepBoxA {
  background: linear-gradient(to right, #f1f9ff, #fff);
}
.processPage .stepBoxA .stepNumber {
  background: #153897;
}
.processPage .stepBoxA .stepText h3,
.processPage .stepBoxA .stepText p {
  color: #153897;
}
.processPage .stepBoxB {
  background: linear-gradient(to left, #e0f7f9, #fff);
}
.processPage .stepBoxB .stepNumber {
  background: #45848b;
}
.processPage .stepBoxB .stepText h3,
.processPage .stepBoxB .stepText p {
  color: #45848b;
}

.priceArticle {
  padding: 5% 0;
}
.priceArticle .priceTopText p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.priceArticle .priceFeature {
  background: #f1f9ff;
  padding: 5rem 0;
  margin-top: 3rem;
}
.priceArticle .priceFeature h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #153897;
}
.priceArticle .priceFeature .priceFeatureCards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
@media (max-width: 1024px) {
  .priceArticle .priceFeature .priceFeatureCards {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
}
.priceArticle .priceFeature .priceFeatureCards .priceFeatureCard {
  padding: 3rem;
  background: linear-gradient(135deg, #a2d1fb, #a2d1fb, #6aa9ff, #153897);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #fff;
  border-radius: 2rem;
  text-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
}
.priceArticle .priceFeature .priceFeatureCards .priceFeatureCard h3 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.priceArticle .priceFeature .priceFeatureCards .priceFeatureCard p {
  font-size: 1.8rem;
  line-height: 1.5;
}
.priceArticle .priceBottomText {
  padding-top: 5%;
}
.priceArticle .priceBottomText h4 {
  text-align: center;
  color: #153897;
  font-size: 3rem;
  margin-bottom: 2rem;
}
.priceArticle .priceBottomText p {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.priceArticle .priceBottomText ul {
  list-style: none;
}
.priceArticle .priceBottomText ul li {
  color: #153897;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .pcPriceTable {
    display: none;
  }
}
.pcPriceTable .filterBox {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem;
  margin-top: 5rem;
}
@media (max-width: 1024px) {
  .pcPriceTable .filterBox {
    flex-direction: column;
    padding: 0.1rem 0;
  }
}
.pcPriceTable .filterBox::after, .pcPriceTable .filterBox::before {
  position: absolute;
  content: "";
  background-color: #06388a;
  height: 1px;
  width: 100%;
  left: 0;
}
@media (max-width: 1024px) {
  .pcPriceTable .filterBox::after, .pcPriceTable .filterBox::before {
    display: none;
  }
}
.pcPriceTable .filterBox::before {
  top: 0;
}
.pcPriceTable .filterBox::after {
  bottom: 0;
}
.pcPriceTable .filterBox button {
  border: none;
  background-color: transparent;
  font-size: 26px;
  color: #06388a;
  font-weight: bold;
  margin: 0px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .pcPriceTable .filterBox button {
    background-color: #a2d1fb;
    color: #06388a;
    letter-spacing: 5px;
    width: 350px;
    border-radius: 20px;
    margin: 5px 0;
    font-size: 20px;
  }
}
.pcPriceTable .filterBox button:hover {
  color: #fff;
  background-color: #06388a;
}
.pcPriceTable .filterBox button.active {
  color: #fff;
  background-color: #06388a;
}
.pcPriceTable table {
  width: 100%;
  border-spacing: 5px 10px;
}
.pcPriceTable table thead tr th {
  padding: 10px;
  background-color: #06388a;
  color: #fff;
  border-radius: 10px;
  border: none;
  font-size: 18px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
}
.pcPriceTable table tbody tr:nth-child(even) td {
  background-color: #eeeeee;
  color: #000;
}
.pcPriceTable table tbody tr td {
  padding: 10px;
  background-color: #fff;
  color: #000;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}
.pcPriceTable table tbody tr td:nth-child(1) {
  width: 12%;
  text-align: center;
}
.pcPriceTable table tbody tr td:nth-child(2) {
  width: 12%;
  text-align: center;
}
.pcPriceTable table tbody tr td:nth-child(3) {
  width: 16%;
  text-align: center;
}
.pcPriceTable table tbody tr td:nth-child(4) {
  width: 30%;
}
.pcPriceTable table tbody tr td:nth-child(5) {
  width: 30%;
}

.mobilePriceAccordion {
  display: none;
}
@media (max-width: 1024px) {
  .mobilePriceAccordion {
    display: block;
  }
}
.mobilePriceAccordion .filterBox {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem;
  margin-top: 5rem;
  flex-direction: column;
  padding: 1rem 0;
}
.mobilePriceAccordion .filterBox button {
  border: none;
  font-weight: bold;
  padding: 1rem 0;
  cursor: pointer;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .mobilePriceAccordion .filterBox button {
    background-color: #a2d1fb;
    box-shadow: 0rem 0rem 0.3rem rgba(0, 0, 0, 0.3);
    color: #06388a;
    letter-spacing: 5px;
    width: 90%;
    border-radius: 10px;
    margin: 0.5rem auto;
    font-size: 2rem;
  }
}
.mobilePriceAccordion .filterBox button:hover {
  color: #fff;
  background-color: #06388a;
}
.mobilePriceAccordion .filterBox button.active {
  color: #fff;
  background-color: #06388a;
}
.mobilePriceAccordion .accordionGroup:nth-child(even) button {
  background-color: #e5efff;
  color: #000;
}
.mobilePriceAccordion .accordionGroup button {
  min-width: 100%;
  padding: 1rem 0;
  font-size: 2rem;
  border: none;
  background-color: #f5f5f5;
  letter-spacing: 0.4rem;
  color: #000;
  margin-bottom: 1rem;
  position: relative;
}
.mobilePriceAccordion .accordionGroup button i {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  right: 20px;
}
.mobilePriceAccordion .accordionGroup .accordionContent {
  padding: 1.5rem;
}
.mobilePriceAccordion .accordionGroup .accordionContent .accordionContentBox {
  background-color: #fff;
  margin-bottom: 1rem;
  padding: 1rem;
  box-shadow: 0px 0px 3px #ccc;
  border-radius: 10px;
}
.mobilePriceAccordion .accordionGroup .accordionContent .accordionContentBox h5 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.mobilePriceAccordion .accordionGroup .accordionContent .accordionContentBox p {
  font-size: 1.6rem;
}

.accordion-enter-active,
.accordion-leave-active {
  transition: max-height 0.3s ease;
}

.accordion-enter-from,
.accordion-leave-to {
  max-height: 0;
  overflow: hidden;
}

.accordion-enter-to,
.accordion-leave-from {
  max-height: 1000px; /* 確保這個值足夠大以容納內容 */
}

.specialPageArticle {
  padding-top: 5%;
}
.specialPageArticle .specialPageArticleTop p {
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .specialPageArticle .specialPageArticleTop p br {
    display: none;
  }
}
.specialPageArticle .badStore {
  padding: 3% 0;
  width: 100%;
  background: #fff1f1;
}
.specialPageArticle .badStore h2 {
  color: #f00;
  font-size: 3rem;
  text-align: center;
  letter-spacing: 0.4rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .specialPageArticle .badStore h2 {
    margin-top: 3rem;
    font-size: 2.8rem;
  }
}
.specialPageArticle .badStore .badStoreCards {
  display: flex;
  flex-direction: column;
}
.specialPageArticle .badStore .badStoreCards .badStoreCard {
  border-radius: 20px;
  display: flex;
  align-items: center;
  background: #ffd8d8;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
  margin: 1rem 0;
  padding: 2rem;
}
@media (max-width: 1024px) {
  .specialPageArticle .badStore .badStoreCards .badStoreCard img {
    display: none;
  }
}
.specialPageArticle .badStore .badStoreCards .badStoreCard .badStoreCardText {
  padding-left: 2rem;
}
.specialPageArticle .badStore .badStoreCards .badStoreCard .badStoreCardText h3 {
  font-size: 2rem;
  color: #f00;
  margin-bottom: 1rem;
}
.specialPageArticle .badStore .badStoreCards .badStoreCard .badStoreCardText p {
  font-size: 1.6rem;
}
.specialPageArticle .badStore .badStoreCards .badStoreCard:nth-child(even) {
  background: #ffe6cf;
}
.specialPageArticle .howToChoose {
  width: 100%;
  background: #f8faff;
  padding: 3% 0;
}
.specialPageArticle .howToChoose h2 {
  color: #153897;
  font-size: 3rem;
  text-align: center;
  letter-spacing: 0.4rem;
  margin-bottom: 5rem;
}
@media (max-width: 1024px) {
  .specialPageArticle .howToChoose h2 {
    margin-top: 3rem;
    font-size: 2.8rem;
  }
}
.specialPageArticle .howToChoose .chooseCards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
@media (max-width: 1024px) {
  .specialPageArticle .howToChoose .chooseCards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.specialPageArticle .howToChoose .chooseCards .chooseCard {
  background: #153897;
  padding: 3rem;
  position: relative;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
}
.specialPageArticle .howToChoose .chooseCards .chooseCard > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.specialPageArticle .howToChoose .chooseCards .chooseCard h3 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 3rem;
  text-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
}
.specialPageArticle .howToChoose .chooseCards .chooseCard p {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 3rem;
  text-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
}
.specialPageArticle .howToChoose .chooseCards .chooseCard1 {
  background: linear-gradient(135deg, #e07072, #ed8b8c);
}
.specialPageArticle .howToChoose .chooseCards .chooseCard2 {
  background: linear-gradient(135deg, #a2d1fb, #a2e4fb);
}
.specialPageArticle .howToChoose .chooseCards .chooseCard3 {
  background: linear-gradient(135deg, #9183d5, #9183d5);
}
.specialPageArticle .howToChoose .chooseCards .chooseCard4 {
  background: linear-gradient(135deg, #e49838, #ebc07a);
}
.specialPageArticle .whyChooseUs {
  width: 100%;
  padding: 3% 0;
}
.specialPageArticle .whyChooseUs h2 {
  color: #153897;
  font-size: 3rem;
  text-align: center;
  letter-spacing: 0.4rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .specialPageArticle .whyChooseUs h2 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.specialPageArticle .whyChooseUs .whyChooseUsArticle h3 {
  color: #153897;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.specialPageArticle .whyChooseUs .whyChooseUsArticle p {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.specialPageArticle .whyChooseUs .whyChooseUsArticle h4 {
  text-align: center;
  font-size: 2rem;
  padding-top: 2rem;
}
.specialPageArticle .whyChooseUs .whyChooseUsArticle table {
  margin-top: 3rem;
  margin-bottom: 3rem;
  width: 100%;
  table-layout: fixed;
  border-spacing: 10px;
  border-collapse: separate;
}
@media (max-width: 1024px) {
  .specialPageArticle .whyChooseUs .whyChooseUsArticle table {
    table-layout: auto;
    border-spacing: 5px;
  }
}
.specialPageArticle .whyChooseUs .whyChooseUsArticle table thead td {
  text-align: center;
  padding: 0.5rem;
  background-color: #153897;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.4rem;
  font-size: 1.8rem;
  border-radius: 5px;
}
.specialPageArticle .whyChooseUs .whyChooseUsArticle table tbody tr {
  background: #cbd9ff;
}
.specialPageArticle .whyChooseUs .whyChooseUsArticle table tbody tr:nth-child(even) {
  background: #ecf1ff;
}
.specialPageArticle .whyChooseUs .whyChooseUsArticle table tbody tr td {
  border-radius: 5px;
  text-align: center;
  padding: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.4rem;
}
.specialPageArticle .fee {
  width: 100%;
  background: #f8faff;
  padding-top: 3%;
  padding-bottom: 3%;
}
.specialPageArticle .fee h2 {
  color: #153897;
  font-size: 3rem;
  text-align: center;
  letter-spacing: 0.4rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .specialPageArticle .fee h2 {
    margin-top: 3rem;
  }
}
.specialPageArticle .fee .feeArticle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  row-gap: 10rem;
  padding-top: 8rem;
}
@media (max-width: 1024px) {
  .specialPageArticle .fee .feeArticle {
    grid-template-columns: repeat(1, 1fr);
    -moz-column-gap: 0rem;
         column-gap: 0rem;
  }
}
.specialPageArticle .fee .feeArticle .feeBox {
  height: 250px;
  padding: 5rem;
  background: #dce6ff;
  position: relative;
  border-radius: 20px;
}
.specialPageArticle .fee .feeArticle .feeBox .boxNumber {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 12rem;
  font-family: sans-serif;
  color: #153897;
  font-weight: bold;
}
.specialPageArticle .fee .feeArticle .feeBox h4 {
  text-align: center;
  color: #153897;
  font-size: 3rem;
  margin-bottom: 2rem;
}
.specialPageArticle .fee .feeArticle .feeBox p {
  text-align: center;
  color: #153897;
  font-size: 1.6rem;
}
.specialPageArticle .indexTestimonies.special {
  background: #fff;
}
.specialPageArticle .indexTestimonies.special h2 {
  text-align: center;
  color: #153897;
  font-size: 3rem;
  margin: 3rem 0;
  letter-spacing: 0.4rem;
}
.specialPageArticle .feedback .feedbackBox {
  display: flex;
  background: #f8faff;
  border-radius: 20px;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .specialPageArticle .feedback .feedbackBox {
    flex-direction: column-reverse;
  }
}
.specialPageArticle .feedback .feedbackBox .feedbackBoxText {
  width: 66%;
  padding: 2rem;
}
@media (max-width: 1024px) {
  .specialPageArticle .feedback .feedbackBox .feedbackBoxText {
    width: 100%;
  }
}
.specialPageArticle .feedback .feedbackBox .feedbackBoxText h4 {
  font-size: 2.2rem;
  color: #153897;
  margin-bottom: 1rem;
}
.specialPageArticle .feedback .feedbackBox .feedbackBoxText .content {
  display: flex;
}
@media (max-width: 1024px) {
  .specialPageArticle .feedback .feedbackBox .feedbackBoxText .content {
    flex-direction: column;
  }
}
.specialPageArticle .feedback .feedbackBox .feedbackBoxText .content .left {
  width: 50%;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .specialPageArticle .feedback .feedbackBox .feedbackBoxText .content .left {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.specialPageArticle .feedback .feedbackBox .feedbackBoxText .content .right {
  padding-left: 2rem;
  width: 50%;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .specialPageArticle .feedback .feedbackBox .feedbackBoxText .content .right {
    width: 100%;
    padding-left: 0;
  }
}
.specialPageArticle .feedback .feedbackBox .feedbackBoxImage {
  width: 34%;
}
@media (max-width: 1024px) {
  .specialPageArticle .feedback .feedbackBox .feedbackBoxImage {
    width: 100%;
  }
}
.specialPageArticle .feedback .feedbackBox .feedbackBoxImage img {
  width: 100%;
  height: 100%;
  border-radius: 0px 20px 20px 0;
}
@media (max-width: 1024px) {
  .specialPageArticle .feedback .feedbackBox .feedbackBoxImage img {
    border-radius: 20px 20px 0 0;
  }
}
.specialPageArticle .privacy {
  width: 100%;
  padding-top: 3%;
}
.specialPageArticle .privacy h2 {
  color: #153897;
  font-size: 3rem;
  text-align: center;
  letter-spacing: 0.4rem;
  margin-bottom: 5rem;
}
.specialPageArticle .privacy .privacyCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}
@media (max-width: 1024px) {
  .specialPageArticle .privacy .privacyCards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.specialPageArticle .privacy .privacyCards .privacyCard {
  background: linear-gradient(135deg, #153897, #5171cc);
  color: #fff;
  padding: 3rem;
  text-align: center;
  border-radius: 10px;
}
.specialPageArticle .privacy .privacyCards .privacyCard h4 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}
.specialPageArticle .privacy .privacyCards .privacyCard p {
  font-size: 1.6rem;
}
.specialPageArticle .privacy .privacyText {
  padding-top: 5rem;
}
.specialPageArticle .privacy .privacyText p {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 2rem;
}

#serviceArticleContent {
  padding-top: 5%;
}
#serviceArticleContent h2 {
  text-align: center;
  font-size: 2.6rem;
  letter-spacing: 0.4rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
#serviceArticleContent h3 {
  color: #f00;
  font-size: 2.6rem;
  letter-spacing: 0.4rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
#serviceArticleContent p {
  font-size: 2rem;
  margin-bottom: 2rem;
}
#serviceArticleContent p strong {
  color: #f00;
}
#serviceArticleContent ul,
#serviceArticleContent ol {
  list-style: none;
}
#serviceArticleContent ul li,
#serviceArticleContent ol li {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
#serviceArticleContent ul li strong,
#serviceArticleContent ol li strong {
  color: #f00;
}
#serviceArticleContent h4 {
  text-align: center;
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.relatedCases h2 {
  text-align: center;
  color: #b96969;
  font-size: 3rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .relatedCases h2 {
    color: #26636a;
  }
}
.relatedCases #caseList a {
  display: block;
  padding: 1rem 0;
  padding-left: 2rem;
  background: #b96969;
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 10px;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
  position: relative;
}
@media (max-width: 1024px) {
  .relatedCases #caseList a {
    background: #26636a;
  }
}
.relatedCases #caseList a:nth-child(even) {
  background: #d48d8d;
}
@media (max-width: 1024px) {
  .relatedCases #caseList a:nth-child(even) {
    background: #45848b;
  }
}
.relatedCases #caseList a i {
  position: absolute;
  right: 2rem;
  font-size: 2rem;
}

.faqIndexPage {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #f1f9ff;
  padding: 5% 0;
}
.faqIndexPage .faqIndexContent {
  display: flex;
  position: relative;
  z-index: 3;
}
@media (max-width: 1024px) {
  .faqIndexPage .faqIndexContent {
    flex-direction: column;
  }
}
.faqIndexPage .faqIndexContent .faqLinks {
  width: 20%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .faqIndexPage .faqIndexContent .faqLinks {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.faqIndexPage .faqIndexContent .faqLinks .faqLink {
  text-align: center;
  background: #fff;
  color: #153897;
  padding: 1rem;
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
  border-radius: 10px;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
}
.faqIndexPage .faqIndexContent .faqLinks .faqLink i {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  font-size: 3rem;
}
@media (max-width: 1024px) {
  .faqIndexPage .faqIndexContent .faqLinks .faqLink i {
    display: none;
  }
}
.faqIndexPage .faqIndexContent .faqLinks .faqLink.active,
.faqIndexPage .faqIndexContent .faqLinks .faqLink:hover {
  background: #153897;
  color: #fff;
}
.faqIndexPage .faqIndexContent .faqList {
  width: 80%;
  display: flex;
  flex-direction: column;
  padding-left: 3rem;
}
@media (max-width: 1024px) {
  .faqIndexPage .faqIndexContent .faqList {
    width: 100%;
    padding-left: 0;
  }
}
.faqIndexPage .faqIndexContent .faqList a {
  padding: 1rem 0;
  padding-left: 2rem;
  padding-right: 5rem;
  color: #fff;
  background: #153897;
  position: relative;
  margin-bottom: 2rem;
  font-size: 2rem;
  border-radius: 10px;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
}
.faqIndexPage .faqIndexContent .faqList a:nth-child(even) {
  background: #fff;
  color: #153897;
}
@media (max-width: 1024px) {
  .faqIndexPage .faqIndexContent .faqList a:nth-child(even) {
    background: #8fa2d5;
    color: #fff;
  }
}
.faqIndexPage .faqIndexContent .faqList a:nth-child(even) i {
  color: #153897;
}
@media (max-width: 1024px) {
  .faqIndexPage .faqIndexContent .faqList a:nth-child(even) i {
    color: #fff;
  }
}
.faqIndexPage .faqIndexContent .faqList a i {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  color: #fff;
  font-size: 3rem;
}
.faqIndexPage .icon1 {
  position: absolute;
  bottom: 5rem;
  left: -5rem;
}
@media (max-width: 1024px) {
  .faqIndexPage .icon1 {
    display: none;
  }
}
.faqIndexPage .icon2 {
  position: absolute;
  top: 5rem;
  right: -5rem;
}
@media (max-width: 1024px) {
  .faqIndexPage .icon2 {
    display: none;
  }
}
.faqIndexPage .contactBtn {
  text-align: center;
  margin-top: 3rem;
}
.faqIndexPage .contactBtn a {
  font-size: 2rem;
  padding: 1rem 5rem;
  background: #dc1818;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
}
.faqIndexPage .contactBtn a:hover {
  background: rgb(174.0163934426, 18.9836065574, 18.9836065574);
}
@media (max-width: 1024px) {
  .faqIndexPage .contactBtn a {
    display: none;
  }
}

.faqPage {
  padding: 3% 0;
  background: #f1f9ff;
}
.faqPage .faqPageContent h2 {
  font-size: 2.6rem;
  padding-top: 3%;
  text-align: center;
}
.faqPage .faqPageContent .faqPageContentText {
  padding: 3% 0;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.2rem;
}
.faqPage .faqPageContent .faqPageContentText p {
  margin-bottom: 1rem;
}
.faqPage .faqPageContent .faqPageContentText strong {
  color: #f00;
}
.faqPage .faqPageContent .faqPageContentText ul,
.faqPage .faqPageContent .faqPageContentText ol {
  margin-left: 2rem;
}
.faqPage .faqPageContent .faqPageContentText ul li,
.faqPage .faqPageContent .faqPageContentText ol li {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.faqPage .bottomButton {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .faqPage .bottomButton {
    flex-direction: column;
  }
}
.faqPage .bottomButton a {
  font-size: 1.8rem;
  letter-spacing: 0.4rem;
  padding: 1rem 5rem;
  border-radius: 10px;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
  font-weight: bold;
}
@media (max-width: 1024px) {
  .faqPage .bottomButton a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
    margin-bottom: 2rem;
    padding: 1rem;
  }
}
.faqPage .bottomButton #prevFaq {
  color: #fff;
  background: #153897;
}
.faqPage .bottomButton #prevFaq.disabled {
  background: #eee;
  color: #aaa;
}
.faqPage .bottomButton #gobackIndex {
  color: #153897;
  background: #fff;
}
.faqPage .bottomButton #nextFaq {
  color: #fff;
  background: #153897;
}
.faqPage .bottomButton #nextFaq.disabled {
  background: #eee;
  color: #aaa;
}

.caseIndexPage {
  padding: 3% 0;
}
.caseIndexPage .caseTypeOpen {
  margin-bottom: 3rem;
}
.caseIndexPage .caseTypeOpen h2 {
  text-align: center;
  font-size: 3rem;
  margin-top: 2rem;
  margin-bottom: 5rem;
  position: relative;
}
.caseIndexPage .caseTypeOpen h2::after {
  position: absolute;
  width: 10rem;
  height: 1rem;
  content: "";
  bottom: -2rem;
  left: 50%;
  transform: translate(-50%, -50%);
}
.caseIndexPage .caseTypeOpen .caseList {
  display: flex;
}
@media (max-width: 1024px) {
  .caseIndexPage .caseTypeOpen .caseList {
    flex-direction: column-reverse;
  }
}
.caseIndexPage .caseTypeOpen .caseList a {
  display: block;
  position: relative;
  border-radius: 10px;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
}
.caseIndexPage .caseTypeOpen .caseList a i {
  position: absolute;
  right: 2rem;
  font-size: 3rem;
}
.caseIndexPage .caseTypeOpen .caseList .leftType {
  width: 25%;
}
@media (max-width: 1024px) {
  .caseIndexPage .caseTypeOpen .caseList .leftType {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.caseIndexPage .caseTypeOpen .caseList .leftType a {
  text-align: center;
  background: #b96969;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 2rem;
  color: #fff;
}
@media (max-width: 1024px) {
  .caseIndexPage .caseTypeOpen .caseList .leftType a {
    padding: 3rem;
  }
}
.caseIndexPage .caseTypeOpen .caseList .leftType a i {
  display: none;
}
@media (max-width: 1024px) {
  .caseIndexPage .caseTypeOpen .caseList .leftType a i {
    display: none;
  }
}
.caseIndexPage .caseTypeOpen .caseList .leftType a.active,
.caseIndexPage .caseTypeOpen .caseList .leftType a:hover {
  background: #984343;
}
.caseIndexPage .caseTypeOpen .caseList .leftType a.active i,
.caseIndexPage .caseTypeOpen .caseList .leftType a:hover i {
  color: #984343;
}
.caseIndexPage .caseTypeOpen .caseList .rightList {
  width: 75%;
  padding-left: 3rem;
}
@media (max-width: 1024px) {
  .caseIndexPage .caseTypeOpen .caseList .rightList {
    width: 100%;
    padding-left: 0;
    margin-bottom: 3rem;
  }
}
.caseIndexPage .caseTypeOpen .caseList .rightList a {
  background: #b96969;
  margin-bottom: 1rem;
  padding: 1rem 0;
  padding-left: 3rem;
  padding-right: 5rem;
  font-size: 2rem;
  color: #fff;
}
.caseIndexPage .caseTypeOpen .caseList .rightList a:nth-child(even) {
  background: #d48d8d;
}
.caseIndexPage .aType h2 {
  color: #b96969;
}
.caseIndexPage .aType h2::after {
  background-color: #b96969;
}
.caseIndexPage .bType h2 {
  color: #b28451;
}
.caseIndexPage .bType h2::after {
  background-color: #b28451;
}
.caseIndexPage .bType .caseList .leftType a {
  background: #b28451;
  color: #fff;
}
.caseIndexPage .bType .caseList .leftType a.active,
.caseIndexPage .bType .caseList .leftType a:hover {
  background: #604527;
}
.caseIndexPage .bType .caseList .leftType a.active i,
.caseIndexPage .bType .caseList .leftType a:hover i {
  color: #604527;
}
.caseIndexPage .bType .caseList .rightList a {
  background: #b28451;
  color: #fff;
}
.caseIndexPage .bType .caseList .rightList a:nth-child(even) {
  background: #ceb495;
}
.caseIndexPage .cType h2 {
  color: #45848b;
}
.caseIndexPage .cType h2::after {
  background-color: #45848b;
}
.caseIndexPage .cType .caseList .leftType a {
  background: #45848b;
  color: #fff;
}
.caseIndexPage .cType .caseList .leftType a.active,
.caseIndexPage .cType .caseList .leftType a:hover {
  background: #31686e;
}
.caseIndexPage .cType .caseList .leftType a.active i,
.caseIndexPage .cType .caseList .leftType a:hover i {
  color: #31686e;
}
.caseIndexPage .cType .caseList .rightList a {
  background: #45848b;
  color: #fff;
}
.caseIndexPage .cType .caseList .rightList a:nth-child(even) {
  background: #add4d8;
}
.caseIndexPage .caseSection h2 {
  text-align: center;
  font-size: 3rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.caseIndexPage .caseSection h2::after {
  position: absolute;
  width: 10rem;
  height: 1rem;
  content: "";
  bottom: -2rem;
  left: 50%;
  transform: translate(-50%, -50%);
}
.caseIndexPage .caseSection .caseTypeList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  padding: 3% 0;
}
@media (max-width: 1024px) {
  .caseIndexPage .caseSection .caseTypeList {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    row-gap: 2rem;
  }
}
.caseIndexPage .caseSection .caseTypeList a {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .caseIndexPage .caseSection .caseTypeList a {
    padding: 3rem 1rem;
  }
}
.caseIndexPage .caseSection .caseTypeList a span {
  margin-bottom: 1rem;
  letter-spacing: 0.2rem;
}
.caseIndexPage .caseSection .caseTypeList a span.eng {
  font-size: 1.2rem;
  margin-bottom: 0;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  .caseIndexPage .caseSection .caseTypeList a span.eng {
    display: none;
  }
}
.caseIndexPage .caseTypeA h2 {
  color: #b96969;
}
.caseIndexPage .caseTypeA h2::after {
  background-color: #b96969;
}
.caseIndexPage .caseTypeA .caseTypeList a {
  color: #efbfbf;
  background: #b96969;
}
.caseIndexPage .caseTypeB h2 {
  color: #b28451;
}
.caseIndexPage .caseTypeB h2::after {
  background-color: #b28451;
}
.caseIndexPage .caseTypeB .caseTypeList a {
  color: #ebd1b4;
  background: #b28451;
}
.caseIndexPage .caseTypeC h2 {
  color: #45848b;
}
.caseIndexPage .caseTypeC h2::after {
  background-color: #45848b;
}
.caseIndexPage .caseTypeC .caseTypeList a {
  color: #add4d8;
  background: #45848b;
}

.casePage {
  padding: 3% 0;
  background: #fff;
}
.casePage .casePageContent h2 {
  font-size: 2.6rem;
  padding-top: 3%;
  text-align: center;
}
.casePage .casePageContent .casePageContentText {
  padding: 3% 0;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.2rem;
}
.casePage .casePageContent .casePageContentText p {
  margin-bottom: 1rem;
}
.casePage .casePageContent .casePageContentText strong {
  color: #f00;
}
.casePage .casePageContent .casePageContentText ul,
.casePage .casePageContent .casePageContentText ol {
  margin-left: 2rem;
}
.casePage .casePageContent .casePageContentText ul li,
.casePage .casePageContent .casePageContentText ol li {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.casePage .bottomButton {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .casePage .bottomButton {
    flex-direction: column;
  }
}
.casePage .bottomButton a {
  font-size: 1.8rem;
  letter-spacing: 0.4rem;
  padding: 1rem 5rem;
  border-radius: 10px;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
  font-weight: bold;
}
@media (max-width: 1024px) {
  .casePage .bottomButton a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
    margin-bottom: 2rem;
    padding: 1rem;
  }
}
.casePage .bottomButton #prevCase {
  color: #fff;
  background: #d48d8d;
}
.casePage .bottomButton #prevCase.disabled {
  background: #eee;
  color: #aaa;
}
.casePage .bottomButton #goBackIndex {
  color: #fff;
  background: #b96969;
}
.casePage .bottomButton #nextCase {
  color: #fff;
  background: #d48d8d;
}
.casePage .bottomButton #nextCase.disabled {
  background: #eee;
  color: #aaa;
}
.casePage .bottomButton #goBackService {
  color: #fff;
  background: #b96969;
}

#mobileOpenMenuBtn {
  position: fixed;
  right: 2rem;
  top: 2rem;
  z-index: 7;
  cursor: pointer;
  opacity: 1;
  font-size: 6rem;
  color: #fcb335;
  text-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.3);
  display: none;
}
@media (max-width: 1024px) {
  #mobileOpenMenuBtn {
    display: block;
  }
}

.mobileMainMenu {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  z-index: 10;
  background-color: #fffaf6;
  display: flex;
  flex-direction: column;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 10rem;
  transition: left 0.3s ease-in-out;
}
.mobileMainMenu.active {
  left: 0;
}
.mobileMainMenu.active .closeMenuBtn {
  top: 0;
}
.mobileMainMenu .closeMenuBtn {
  position: absolute;
  right: -5rem;
  top: -100%;
  transition: all 0.3s;
  transition-delay: 0.3s;
}
.mobileMainMenu .menuLogo {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 150px;
}
.mobileMainMenu a {
  margin-bottom: 2rem;
  position: relative;
  border-left: 8px solid #c49b7a;
  padding-left: 1rem;
  color: #c49b7a;
}
.mobileMainMenu a span {
  font-weight: bold;
  font-size: 2.4rem;
  display: block;
}
.mobileMainMenu a span.eng {
  font-size: 1.2rem;
}
.mobileMainMenu a i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
}

.serviceMainMenu {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  z-index: 10;
  background-color: #fffaf6;
  display: flex;
  flex-direction: column;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 10rem;
  transition: left 0.3s ease-in-out;
}
.serviceMainMenu.active {
  left: 0;
}
.serviceMainMenu.active .closeMenuBtn {
  top: 0;
}
.serviceMainMenu .closeMenuBtn {
  position: absolute;
  right: -5rem;
  top: -100%;
  transition: all 0.3s;
  transition-delay: 0.3s;
}
.serviceMainMenu .backToMainMenuBtn {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #c49b7a;
  padding: 0.5rem 2rem;
  color: #fffaf6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2rem;
  border-radius: 20px;
}
.serviceMainMenu .backToMainMenuBtn i {
  font-size: 3rem;
}
.serviceMainMenu .serviceIntroduceCard {
  border-radius: 10px 30px 10px 30px;
  background: #c49b7a;
  padding: 3rem;
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
}
.serviceMainMenu .serviceIntroduceCard .serviceBoxTitle {
  border-left: 6px solid #000;
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.serviceMainMenu .serviceIntroduceCard .serviceBoxTitle p.eng {
  font-size: 1.2rem;
}
.serviceMainMenu .serviceIntroduceCard .serviceBoxTitle h4 {
  font-size: 2.6rem;
}
.serviceMainMenu .serviceIntroduceCard .serviceBoxText {
  font-size: 1.8rem;
}
.serviceMainMenu .serviceIntroduceCard i {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  font-size: 3rem;
}
.serviceMainMenu .serType1 {
  background: #ffc7c7;
}
.serviceMainMenu .serType1 .serviceBoxTitle {
  border-left: 6px solid #b96969;
}
.serviceMainMenu .serType1 .serviceBoxTitle p.eng {
  color: #b96969;
}
.serviceMainMenu .serType1 .serviceBoxTitle h4 {
  color: #b96969;
}
.serviceMainMenu .serType1 .serviceBoxText {
  color: #b96969;
}
.serviceMainMenu .serType1 i {
  color: #b96969;
}
.serviceMainMenu .serType2 {
  background: #ebd1b4;
}
.serviceMainMenu .serType2 .serviceBoxTitle {
  border-left: 6px solid #b28451;
}
.serviceMainMenu .serType2 .serviceBoxTitle p.eng {
  color: #b28451;
}
.serviceMainMenu .serType2 .serviceBoxTitle h4 {
  color: #b28451;
}
.serviceMainMenu .serType2 .serviceBoxText {
  color: #b28451;
}
.serviceMainMenu .serType2 i {
  color: #b28451;
}
.serviceMainMenu .serType3 {
  background: #add4d8;
}
.serviceMainMenu .serType3 .serviceBoxTitle {
  border-left: 6px solid #45848b;
}
.serviceMainMenu .serType3 .serviceBoxTitle p.eng {
  color: #45848b;
}
.serviceMainMenu .serType3 .serviceBoxTitle h4 {
  color: #45848b;
}
.serviceMainMenu .serType3 .serviceBoxText {
  color: #45848b;
}
.serviceMainMenu .serType3 i {
  color: #45848b;
}

.serviceSubMenu {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  left: 100%;
  transition: left 0.3s ease-in-out;
}
.serviceSubMenu.active {
  left: 0;
}
.serviceSubMenu.active .closeMenuBtn {
  top: 0;
}
.serviceSubMenu .serviceBox {
  width: 100%;
  height: 100%;
  padding-top: 8rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.serviceSubMenu .serviceBox .serviceBoxTitle {
  border-left: 6px solid #000;
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.serviceSubMenu .serviceBox .serviceBoxTitle p.eng {
  font-size: 1.2rem;
}
.serviceSubMenu .serviceBox .serviceBoxTitle h4 {
  font-size: 2.6rem;
}
.serviceSubMenu .serviceBox .serviceBoxText {
  font-size: 1.8rem;
}
.serviceSubMenu .serviceBox .serviceBoxLinks a {
  display: block;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background: #b96969;
  color: #ffc7c7;
  padding: 1rem;
  text-align: center;
  font-size: 2rem;
  border-radius: 10px;
  font-weight: bold;
  position: relative;
}
.serviceSubMenu .serviceBox .serviceBoxLinks a i {
  position: absolute;
  right: 20px;
  font-size: 3rem;
}
.serviceSubMenu .closeMenuBtn {
  position: absolute;
  right: -5rem;
  top: -100%;
  transition: all 0.3s;
  transition-delay: 0.3s;
}
.serviceSubMenu .backToServiceMainMenu {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #c49b7a;
  padding: 0.5rem 2rem;
  color: #fffaf6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2rem;
  border-radius: 20px;
}
.serviceSubMenu .backToServiceMainMenu i {
  font-size: 3rem;
}

.serviceSubMenu.typeA .serviceBox {
  background: #ffc7c7;
}
.serviceSubMenu.typeA .serviceBox .serviceBoxTitle {
  border-left: 6px solid #b96969;
}
.serviceSubMenu.typeA .serviceBox .serviceBoxTitle p.eng {
  color: #b96969;
}
.serviceSubMenu.typeA .serviceBox .serviceBoxTitle h4 {
  color: #b96969;
}
.serviceSubMenu.typeA .serviceBox .serviceBoxText {
  color: #b96969;
}
.serviceSubMenu.typeA .serviceBox .serviceBoxLinks a {
  background: #b96969;
  color: #ffc7c7;
}
.serviceSubMenu.typeA .backToServiceMainMenu {
  background: #b96969;
  color: #fffaf6;
}

.serviceSubMenu.typeB .serviceBox {
  background: #ebd1b4;
}
.serviceSubMenu.typeB .serviceBox .serviceBoxTitle {
  border-left: 6px solid #b28451;
}
.serviceSubMenu.typeB .serviceBox .serviceBoxTitle p.eng {
  color: #b28451;
}
.serviceSubMenu.typeB .serviceBox .serviceBoxTitle h4 {
  color: #b28451;
}
.serviceSubMenu.typeB .serviceBox .serviceBoxText {
  color: #b28451;
}
.serviceSubMenu.typeB .serviceBox .serviceBoxLinks a {
  background: #b28451;
  color: #ebd1b4;
}
.serviceSubMenu.typeB .backToServiceMainMenu {
  background: #b28451;
  color: #fffaf6;
}

.serviceSubMenu.typeC .serviceBox {
  background: #add4d8;
}
.serviceSubMenu.typeC .serviceBox .serviceBoxTitle {
  border-left: 6px solid #45848b;
}
.serviceSubMenu.typeC .serviceBox .serviceBoxTitle p.eng {
  color: #45848b;
}
.serviceSubMenu.typeC .serviceBox .serviceBoxTitle h4 {
  color: #45848b;
}
.serviceSubMenu.typeC .serviceBox .serviceBoxText {
  color: #45848b;
}
.serviceSubMenu.typeC .serviceBox .serviceBoxLinks a {
  background: #45848b;
  color: #add4d8;
}
.serviceSubMenu.typeC .backToServiceMainMenu {
  background: #45848b;
  color: #add4d8;
}

.custom-swal-popup-alt {
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.15);
  font-family: "Arial", sans-serif;
}

.custom-swal-title-alt {
  font-size: 24px;
  font-weight: bold;
  color: #d35400; /* 溫暖橙色標題 */
}

.custom-swal-text-alt {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.animate__fadeInUp {
  animation: fadeInUp 0.5s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=main.css.map */