@charset "UTF-8";
* {
  list-style: none;
  font-family: "微軟正黑體", sans-serif;
  color: #5C5C5C;
  line-height: 1.6;
}

h1 {
  font-size: 26px;
}

h2 {
  font-size: 24px;
  margin-bottom: 5%;
}

h3 {
  font-size: 20px;
}

p {
  font-size: 16px;
}

.h1-large {
  font-size: 38px;
} /* 特大 h1 */
a, a:hover {
  text-decoration: none;
}

a {
  color: #5C5C5C;
}

p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 1px;
}

ul {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.container {
  max-width: 1200px;
  padding: 0 25px;
}

span.emphasis {
  color: #65A1D2;
  font-weight: bold;
}

span.keyword_highlight {
  color: #275A77;
  font-weight: bold;
  margin: 0 0.5%;
}

span.underline {
  position: relative;
  padding-bottom: 0.7%;
  color: #FFAD60;
  font-weight: bold;
}
span.underline:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #FFAD60;
  z-index: -1;
}

.btn {
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  border: none;
  font-size: 16px;
}
.btn:focus {
  outline: none;
  box-shadow: none;
}

.btn_orange {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--clr);
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  padding: 14.5px 8%;
  padding-left: 7%;
  letter-spacing: 2px;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--clr);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.btn_orange:hover {
  background-color: #E49437;
  color: #fff;
}

.btn_orange:hover .button__icon-wrapper {
  color: #E49437;
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.btn_orange:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.btn_orange:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

.main-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 5;
  position: fixed;
  top: 0;
  width: 100%;
  transition: 0.3s;
}
.main-header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.main-header .logo {
  width: 150px;
  z-index: 3;
  transform: translateX(20%);
}
.main-header img {
  width: 100%;
}

.nav-unshown {
  display: none;
}

#nav-open {
  margin-left: 0.8em;
  display: inline-block;
  width: 30px;
  height: 22px;
  cursor: pointer;
  transition: 1s ease-in-out;
}
#nav-open:hover {
  opacity: 0.8;
}

#nav-open span,
#nav-open span:before,
#nav-open span:after {
  position: absolute;
  height: 4px; /*線の太さ*/
  width: 25px; /*長さ*/
  border-radius: 1px;
  background: #666;
  display: block;
  content: "";
  cursor: pointer;
}

#nav-open span:before {
  bottom: -8px;
}

#nav-open span:after {
  bottom: -16px;
}

#nav-close {
  display: none; /*はじめは隠しておく*/
  position: fixed;
  top: 0; /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
}

.main-nav {
  margin: 0 0 0 auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15; /*最前面に*/
  width: 100%; /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 70%; /*最大幅（調整してください）*/
  opacity: 1;
  padding: 15% 0;
  background: #fff; /*背景色*/
  transition: 0.5s ease-in; /*滑らかに表示*/
  transform: translateX(105%); /*左に隠しておく*/
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.main-nav li {
  width: 100%;
  text-align: left;
  position: relative;
}
.main-nav li + li {
  margin-top: 5%;
}
.main-nav a {
  display: block;
  transition: 0.4s ease-in-out;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 5% 12%;
  position: relative;
  transform: translateY(0px);
}
.main-nav a + a {
  margin-left: 15px;
}
.main-nav a:after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -5px;
  height: 0;
  border-bottom: 1px solid #65A1D2;
  transition: 0.3s;
}
.main-nav a:hover {
  color: #65A1D2;
}
.main-nav a:hover:after {
  left: 25px;
  right: 25px;
}
.main-nav a.active {
  color: #65A1D2;
}

.main-nav .active > .nav-link, .main-nav .nav-link.active, .main-nav .nav-link.show, .main-nav .show > .nav-link {
  font-weight: bold;
}

#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked ~ #nav-close {
  display: block;
  opacity: 0.5;
  transition: 5s ease-out;
  z-index: 15;
  background: #343a40; /*開啟menu的時候，後面背景顏色變暗，凸顯menu的存在*/
}

#menu__toggle:checked ~ .main-nav {
  transform: translateX(0%); /*中身を表示（右へスライド）*/
  box-shadow: 6px 2px 30px rgb(33, 37, 41);
  z-index: 15;
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}

#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
  background-color: #566E71;
}

#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  background-color: #566E71;
}

#menu__toggle:checked ~ .main-nav {
  visibility: visible;
  right: 0;
}

.menu__btn {
  z-index: 25;
  display: flex;
  align-items: center;
  position: absolute;
  top: 26px;
  right: 8%;
  width: 26px;
  height: 26px;
  cursor: pointer;
  margin-bottom: 0px;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #112E32;
  transition-duration: 0.35s;
}

.menu__btn > span::before {
  content: "";
  top: -8px;
}

.menu__btn > span::after {
  content: "";
  top: 8px;
}

.nav-link {
  padding: 0;
}

.banner {
  margin-top: 80px;
  position: relative;
}
.banner .text {
  position: absolute;
  width: 87%;
  z-index: 3;
}
.banner h1 {
  margin: 0 0 20px;
  color: #fff;
  font-weight: bold;
  text-shadow: rgba(0, 0, 0, 0.25) 0.1em 0.1em 0.2em;
}
.banner p {
  margin-bottom: 30px;
  color: #fff;
}
.banner .fa-solid {
  color: #fff;
}

section {
  padding: 12% 0;
  overflow: hidden;
}

footer {
  position: relative;
  background: hsl(197, 54%, 92%);
  padding: 8% 0 14%;
  margin-top: 4%;
}
footer section {
  padding: 0;
}
footer .footer-logo {
  margin-bottom: 5%;
}
footer img {
  max-width: 40%; /* logo最大寬度15% */
  height: auto;
}
footer h3 {
  margin: 4% 0 4%;
  font-size: 22px;
}
footer .footer-menu {
  margin-top: 10%;
}
footer .menu_box:nth-child(1) {
  display: none;
}
footer .menu_box2 {
  display: none;
  margin-top: 0;
}
footer .menu_box2 ul {
  display: none;
}
footer .menu_box2 li {
  list-style: inside;
  padding-left: 3%;
}
footer .menu_box2 li::marker {
  color: #65A1D2;
}
footer .fa-angle-down {
  transition: transform 0.3s;
}
footer .fa-angle-down.active {
  transform: rotate(180deg);
}
footer .menu_box:nth-child(3) {
  margin-top: 10%;
}
footer .menu_box:nth-child(4) {
  display: flex;
  flex-direction: column;
}
footer .menu_box:nth-child(4) img {
  max-width: 40%;
  margin-top: 2%;
}
footer .menu_box:nth-child(4) img.qrcode-img {
  margin-top: 5%;
  max-width: 35%;
}
footer li {
  margin-top: 3%;
}
footer li + li {
  margin-top: 6%;
}
footer a:hover {
  color: #65A1D2;
}
footer .brand-name {
  font-size: 14px;
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
}

#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #275A77;
  padding: 10px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  line-height: 32px;
  transition: background-color 0.3s;
}
#scrollToTopBtn:hover {
  background-color: #65A1D2;
}
#scrollToTopBtn:focus {
  outline: none; /* 當按鈕獲得焦點時也移除邊框 */
}
#scrollToTopBtn .fa-regular {
  color: #fff;
  font-size: 20px;
}

@media (min-width: 300px) and (max-width: 349px) {
  .h1-large {
    font-size: 34px;
  }
}
@media (min-width: 350px) and (max-width: 369px) {
  .h1-large {
    font-size: 36px;
  }
}
@media (min-width: 300px) and (max-width: 369px) {
  .btn_orange {
    padding: 14.5px 6%;
    padding-left: 6%;
  }
}
@media (min-width: 370px) and (max-width: 385px) {
  .h1-large {
    font-size: 38px;
  }
  footer .menu_box:nth-child(4) img {
    margin-top: 2%;
  }
}
@media (min-width: 700px) and (max-width: 1200px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 28px;
    margin-bottom: 3%;
  }
  h3 {
    font-size: 22px;
  }
  p {
    font-size: 16px;
  }
  .h1-large {
    font-size: 50px;
  }
  .btn_orange {
    font-size: 18px;
    padding: 10px 15px;
  }
  .main-header .logo {
    transform: translateX(30%);
  }
  .main-nav {
    max-width: 40%;
    padding: 8% 0;
  }
  .menu__btn {
    right: 5%;
  }
  section {
    padding: 7% 0;
  }
  footer {
    padding: 6% 0 8% 0;
  }
  footer .footer-logo {
    margin-bottom: 3%;
  }
  footer img {
    max-width: 20%; /* logo最大寬度15% */
  }
  footer h3 {
    margin: 2% 0;
  }
  footer .footer-menu, footer .menu_box:nth-child(3) {
    margin-top: 6%;
  }
  footer .menu_box2 li {
    margin-top: 2%;
  }
  footer .menu_box2 li + li {
    margin-top: 3.5%;
  }
  footer .menu_box:nth-child(4) {
    display: flex;
    flex-direction: column;
  }
  footer .menu_box:nth-child(4) img {
    max-width: 22%;
    margin-top: 1%;
  }
  footer .menu_box:nth-child(4) img.qrcode-img {
    margin-top: 3%;
    max-width: 22%;
  }
  footer li {
    margin-top: 2%;
  }
  footer li + li {
    margin-top: 3.5%;
  }
}
@media (min-width: 1200px) {
  /* 預設電腦版字體 */
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }
  p {
    font-size: 17px;
  }
  /* 針對特大 h1 */
  .h1-large {
    font-size: 65px;
  }
  h2 {
    margin-bottom: 3%;
  }
  h3 {
    font-weight: 400;
  }
  .btn {
    padding: 5px 10px;
    cursor: pointer;
    border: none;
    font-size: 16px;
  }
  .btn_orange {
    font-size: 20px;
  }
  .btn_orange {
    padding: 15px;
    padding-left: 3.5%;
  }
  .main-header .logo {
    width: 150px;
    transform: translateX(150%);
  }
  .menu__btn {
    display: none;
  }
  .headermenu {
    display: flex;
  }
  .main-nav {
    margin-left: 0;
    justify-content: start;
    flex-direction: row;
    position: static;
    width: 80%;
    padding: 0px;
    height: 50%;
    background: transparent;
    transform: translateX(15%);
  }
  .main-nav li {
    width: 110px;
    text-align: center;
  }
  .main-nav li + li {
    margin: 0 0 0 1%;
  }
  .main-nav a:hover:after, .main-nav a.active:after {
    left: 5%;
    right: 5%;
  }
  section {
    padding: 4% 0;
  }
  .banner h1 {
    font-size: 65px;
    margin-bottom: 25px;
  }
  .banner p {
    font-size: 18px;
    margin-bottom: 35px;
  }
  footer {
    padding: 2% 0 3%;
  }
  footer .container, footer .footer-menu {
    display: flex;
    justify-content: space-between;
  }
  footer section {
    padding: 0;
  }
  footer .footer-logo {
    margin-bottom: 0;
  }
  footer h3 {
    margin: 4% 0 3%;
  }
  footer p, footer a, footer li {
    font-size: 15px;
  }
  footer img {
    max-width: 30%; /* logo最大寬度15% */
  }
  footer .footer_left {
    width: 42%;
  }
  footer .footer-menu {
    width: 54.5%;
    margin-top: 0;
  }
  footer .footer-menu h3 {
    margin: 0 0 15px 0;
    font-size: 17px;
  }
  footer .menu_box:nth-child(1) {
    display: block;
  }
  footer .menu_box2 {
    display: none;
  }
  footer .menu_box:nth-child(3) {
    margin-top: 0;
  }
  footer .menu_box:nth-child(4) {
    width: 28%;
    display: block;
  }
  footer .menu_box:nth-child(4) img {
    max-width: 75%;
    margin-top: 0;
  }
  footer .menu_box:nth-child(4) img.qrcode-img {
    margin-top: 8%;
    max-width: 70%;
  }
  footer li {
    padding-left: 0;
    margin-top: 0;
  }
  footer li + li {
    margin-top: 10px;
  }
  footer .brand-name {
    bottom: 5%;
  }
}
#design-and-support {
  background: #F5F5F5;
}
#design-and-support article {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5% 3%;
  background: #fff;
  box-shadow: 0 4px 6px rgba(168, 168, 168, 0.3);
}
#design-and-support article + article {
  margin-top: 6%;
}
#design-and-support .icon {
  text-align: center;
}
#design-and-support img {
  width: 50%;
}
#design-and-support h3 {
  margin: 3% 0;
}

@media (min-width: 700px) {
  #design-and-support {
    padding: 5% 0;
  }
  #design-and-support .d-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3%;
  }
  #design-and-support article {
    justify-content: center;
    padding: 8%;
  }
  #design-and-support article + article {
    margin-top: 0;
  }
  #design-and-support h3 {
    margin: 5% 0;
  }
}
@media (min-width: 700px) and (max-width: 900px) {
  .container {
    padding: 0 40px;
  }
}
@media (min-width: 1200px) {
  .container {
    padding: 0 15px;
  }
}/*# sourceMappingURL=all.css.map */