@charset "UTF-8";
@-webkit-keyframes bounce-In {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounce-In {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes bounce-Out {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounce-Out {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@-webkit-keyframes for-active {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes for-active {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@-webkit-keyframes back-active {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes back-active {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
/*RWD斷點 手機767px以下*/
:root {
  --aside-width: 145px;
  --main-color: #222;
  --sub-color: #555;
  --main-orange: #FC671A;
  --main-blue: #182F8F;
  --sub-blue: #4A90E2;
  --sub-orange: #F3CD38;
  --hover-color: #DDDDDD;
  --orange-linear: linear-gradient(177.16deg, #FC671A 40.82%, #F3CD38 136.57%);
}
@media (max-width: 2000px) {
  :root {
    --aside-width: 120px;
  }
}
@media (max-width: 1280px) {
  :root {
    --aside-width: 100px;
  }
}
@media (max-width: 1200px) {
  :root {
    --aside-width: 0px;
  }
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}
@media (max-width: 1600px) {
  html {
    font-size: 15px;
  }
}

body {
  margin: 0;
  font-family: "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  overflow: hidden;
  color: var(--main-color);
  letter-spacing: 1px;
  font-size: clamp(0.9375rem, 0.625rem + 0.3125vw, 1.125rem);
}
body:not(.in-0, .in-999) header .menu ul li button {
  color: var(--main-color);
}
@media (min-width: 1200px) {
  body:not(.in-0, .in-999) header .menu ul li button {
    text-shadow: 0 1px 5px #eee;
  }
}
body:not(.in-0, .in-999) header .menu ul li button:after {
  background: var(--main-color);
}
body:not(.in-0, .in-999) header .lang .lang-block {
  border: 1px solid rgba(34, 34, 34, 0.3);
}
body:not(.in-0, .in-999) header .lang .link {
  color: var(--main-color);
}
@media (min-width: 1200px) and (hover: hover) {
  body:not(.in-0, .in-999) header .lang .link:hover {
    color: var(--main-orange);
  }
}
body:not(.in-0, .in-999) header .lang .speration {
  color: rgba(34, 34, 34, 0.3);
}
body:not(.in-0, .in-999) header .menu-toggle .text {
  color: var(--main-color);
}
body:not(.in-0, .in-999) header .menu-toggle .bars .bar {
  background: var(--main-color);
}
body.in-999 #index .aside-section {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media screen and (max-width: 1199px) {
  body {
    position: fixed;
  }
  body.canScroll {
    overflow-y: auto;
    position: static;
  }
}
body.lang_en {
  letter-spacing: 0;
}

a {
  text-decoration: none;
  outline: none;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

.main-color {
  color: var(--main-color);
}

.main-orange {
  color: var(--main-orange);
}

.main-blue {
  color: var(--main-blue);
}

.sub-color {
  color: var(--sub-color);
}

.text-eee {
  color: #eee;
}

.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.flex-center {
  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;
}

.fs-18 {
  /* 18px to 15px clamp w2560 - w1280*/
  font-size: clamp(0.9375rem, 0.625rem + 0.3125vw, 1.125rem);
}
@media (max-width: 767px) {
  .fs-18 {
    font-size: 15px;
  }
}

.fs-24 {
  /* 24px to 18px clamp w2560 - w767*/
  font-size: clamp(1.2rem, 1.1431rem + 0.1335vw, 1.333rem);
}
@media (max-width: 767px) {
  .fs-24 {
    font-size: 18px;
  }
}

.fs-30 {
  /* 30px to 20px clamp w2560 - w767*/
  font-size: clamp(1.333rem, 1.1901rem + 0.3353vw, 1.667rem);
}
@media (max-width: 767px) {
  .fs-30 {
    font-size: 20px;
  }
}

.fs-48 {
  /* 48px to 32px clamp w2560 - w1280*/
  font-size: clamp(1.778rem, 0.889rem + 1.2502vw, 2.667rem);
}
@media (max-width: 1280px) {
  .fs-48 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .fs-48 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .fs-48 {
    font-size: 24px;
  }
}

.mt-9px {
  margin-top: 9px;
}

.mb-9px {
  margin-bottom: 9px;
}

.mt-18px {
  margin-top: 18px;
}
@media (max-width: 767px) {
  .mt-18px {
    margin-top: 9px;
  }
}

.mb-18px {
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .mb-18px {
    margin-bottom: 9px;
  }
}

.mt-27px {
  margin-top: max(27px, 2.1vh);
}
@media (max-width: 767px) {
  .mt-27px {
    margin-top: 18px;
  }
}

.mb-27px {
  margin-bottom: max(27px, 2.1vh);
}
@media (max-width: 767px) {
  .mb-27px {
    margin-bottom: 18px;
  }
}

.mt-36px {
  margin-top: max(18px, 2.8vh);
}

.mb-36px {
  margin-bottom: max(18px, 2.8vh);
}

.mt-54px {
  margin-top: max(36px, 4.22vh);
}
@media (max-width: 767px) {
  .mt-54px {
    margin-top: 36px;
  }
}

.mb-54px {
  margin-bottom: max(36px, 4.22vh);
}
@media (max-width: 767px) {
  .mb-54px {
    margin-bottom: 36px;
  }
}

.mt-72px {
  margin-top: max(36px, 5.6vh);
}
@media (max-width: 767px) {
  .mt-72px {
    margin-top: 36px;
  }
}

.mb-72px {
  margin-bottom: max(36px, 5.6vh);
}
@media (max-width: 767px) {
  .mb-72px {
    margin-bottom: 36px;
  }
}

.fw-500 {
  font-weight: 500;
}

.fw-300 {
  font-weight: 300;
}

.fw-600 {
  font-weight: 600;
}

.cursor {
  cursor: pointer;
}

.fade-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.section.active .fade-up {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-right {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
@media screen and (max-width: 1199px) {
  .fade-right {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}

.section.active .fade-right {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.swiper-button-next,
.swiper-button-prev {
  outline: none;
}

.text-justify {
  text-align: justify;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 107px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 2000px) {
  header {
    height: 85px;
  }
}
header.open .menu {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: none;
          transform: none;
}
header.open .lang {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: none;
          transform: none;
}
header.open .menu-toggle {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate(100px, 0);
          transform: translate(100px, 0);
}
header .menu {
  display: table;
  margin-left: auto;
  margin-right: calc(5.47vw + 155px);
  font-size: 1rem;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
@media (max-width: 1680px) {
  header .menu {
    margin-right: calc(5.47vw + 130px);
  }
}
@media (max-width: 1600px) {
  header .menu {
    font-size: 17px;
  }
}
@media (max-width: 1400px) {
  header .menu {
    font-size: 16px;
  }
}
header .menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
header .menu ul li {
  margin-left: 36px;
}
@media (max-width: 1680px) {
  header .menu ul li {
    margin-left: 24px;
  }
}
header .menu ul li button {
  background: transparent;
  border: none;
  color: white;
  position: relative;
  padding: 7px 0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  letter-spacing: 1px;
}
header .menu ul li button:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: white;
  width: 0;
  height: 1px;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
header .menu ul li button:hover:after {
  width: 100%;
}
header .lang {
  position: absolute;
  right: 5.47vw;
  opacity: 0;
  bottom: 6px;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
header .lang .lang-block {
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  width: 100px;
  font-size: 15px;
  text-align: center;
}
header .lang .link {
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  display: inline-block;
  transition: color 0.3s;
}
@media (min-width: 1200px) and (hover: hover) {
  header .lang .link:hover {
    color: var(--main-orange);
  }
}
header .lang .speration {
  color: rgba(255, 255, 255, 0.3);
  display: inline-block;
}
@media (max-width: 1600px) {
  header .lang {
    bottom: 5px;
  }
}
header .menu-toggle {
  position: absolute;
  right: 72px;
  bottom: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
header .menu-toggle .text {
  color: white;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 1rem;
  margin-right: 0.5rem;
  margin-top: 3px;
}
@media (max-width: 767px) {
  header .menu-toggle .text {
    font-size: 12px;
    margin-top: 1px;
  }
}
header .menu-toggle .text span:nth-child(2) {
  display: none;
}
header .menu-toggle .bars {
  position: relative;
  height: 24px;
  width: 24px;
}
header .menu-toggle .bars .bar {
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
header .menu-toggle .bars .bar.bar-1 {
  left: 0;
  top: 5px;
  -webkit-transition: width 0.3s, -webkit-transform 0.3s;
  transition: width 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, width 0.3s;
  transition: transform 0.3s, width 0.3s, -webkit-transform 0.3s;
}
header .menu-toggle .bars .bar.bar-2 {
  left: 0;
  top: 11px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
header .menu-toggle .bars .bar.bar-3 {
  top: 17px;
  left: 0;
  -webkit-transition: width 0.3s, -webkit-transform 0.3s;
  transition: width 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, width 0.3s;
  transition: transform 0.3s, width 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 1199px) {
  header {
    height: 72px;
    background: #fc671a;
  }
  header.open .mask {
    opacity: 1;
    pointer-events: all;
  }
  header.open .menu-toggle {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    pointer-events: all;
  }
  header.open .menu-toggle .text span:nth-child(1) {
    display: none;
  }
  header.open .menu-toggle .text span:nth-child(2) {
    display: block;
  }
  header.open .menu-toggle .bars .bar.bar-1 {
    left: 1px;
    top: 11px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  header.open .menu-toggle .bars .bar.bar-2 {
    opacity: 0;
  }
  header.open .menu-toggle .bars .bar.bar-3 {
    left: 1px;
    top: 11px;
    width: 100%;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header.open .menu {
    -webkit-transform: none;
            transform: none;
  }
  header .mask {
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  header .menu {
    pointer-events: all;
    display: block;
    position: fixed;
    opacity: 1;
    top: 72px;
    bottom: 0;
    right: 0;
    width: 395px;
    background: #fc671a;
    margin-right: 0;
    -webkit-transform: none;
            transform: none;
    overflow: auto;
    padding: 67px 60px;
    -webkit-transform: translateX(395px);
            transform: translateX(395px);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  header .menu ul {
    padding-left: 0;
    display: block;
  }
  header .menu ul li {
    margin-left: 0;
  }
  header .menu ul li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  header .menu ul li button {
    text-shadow: initial;
    padding: 12px 0;
    font-size: 15px;
    width: 100%;
    text-align: left;
  }
  header .menu ul li button:after {
    display: none;
  }
  header .lang {
    right: 235px;
    bottom: 21px;
    -webkit-transform: translateX(395px);
            transform: translateX(395px);
  }
  header .menu-toggle {
    text-shadow: initial;
    font-size: 15px;
    right: 24px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  header .menu-toggle .bars .bar {
    -webkit-box-shadow: initial;
            box-shadow: initial;
  }
}
@media screen and (max-width: 767px) {
  header {
    height: 74px;
    left: 74px;
    top: 0;
  }
  header.open .menu-toggle .bars .bar.bar-1 {
    width: 26px;
  }
  header.open .menu-toggle .bars .bar.bar-3 {
    width: 26px;
  }
  header .mask {
    top: 74px;
  }
  header .menu-toggle {
    right: 20px;
  }
  header .menu {
    top: 74px;
    width: calc(100% - 74px);
    padding: 7px 27px 30px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  header .lang {
    right: 0;
    left: 27px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@media screen and (max-width: 350px) {
  header {
    height: 60px;
  }
  header .mask {
    top: 60px;
  }
  header .menu {
    top: 60px;
  }
}

.aside-section {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--aside-width);
  z-index: 10;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.aside-section .logo-block {
  height: var(--aside-width);
  background: white;
  padding: 15px;
}
.aside-section .logo-block img {
  width: 100%;
  height: auto;
}
.aside-section.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (max-width: 1199px) {
  .aside-section {
    width: 90px;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .aside-section .logo-block {
    height: 72px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .aside-section .logo-block img {
    max-width: 62px;
  }
}
@media (max-width: 767px) {
  .aside-section {
    height: 74px;
    width: 74px;
  }
  .aside-section .logo-block {
    height: 74px;
  }
}
@media screen and (max-width: 350px) {
  .aside-section {
    height: 60px;
  }
  .aside-section .logo-block {
    height: 60px;
  }
  .aside-section .logo-block img {
    width: 40px;
  }
}

#index .mask-section {
  position: fixed;
  top: -1px;
  left: 0;
  width: 100%;
  height: calc(100% + 2px);
  z-index: 5;
  background: #fff;
}
#index .mask-section .orange-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(177.16deg, #FC671A 40.82%, #FC671A 136.57%);
  opacity: 0;
}
#index .mask-section .orange-linear-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(177.16deg, #FC671A 40.82%, #F3CD38 136.57%);
  opacity: 0;
}
#index .mask-section .loading-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#index svg .svg-elem-1 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.1s;
}
#index svg .svg-elem-2 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s;
}
#index svg .svg-elem-3 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s;
}
#index svg .svg-elem-4 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s;
}
#index svg .svg-elem-5 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s;
}
#index svg .svg-elem-6 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
}
#index svg .svg-elem-7 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s;
}
#index svg .svg-elem-8 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}
#index svg .svg-elem-9 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}
#index svg .svg-elem-10 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}
#index svg .svg-elem-11 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}
#index svg .svg-elem-12 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}
#index svg .svg-elem-13 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}
#index svg .svg-elem-14 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
}
#index svg .svg-elem-15 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
}
#index svg.active .svg-elem-1 {
  fill: rgb(255, 255, 255);
}
#index svg.active .svg-elem-2 {
  fill: rgb(255, 255, 255);
}
#index svg.active .svg-elem-3 {
  fill: rgb(255, 255, 255);
}
#index svg.active .svg-elem-4 {
  fill: rgb(255, 255, 255);
}
#index svg.active .svg-elem-5 {
  fill: rgb(255, 255, 255);
}
#index svg.active .svg-elem-6 {
  fill: rgb(255, 255, 255);
}
#index svg.active .svg-elem-7 {
  fill: rgb(255, 255, 255);
}
#index svg.active .svg-elem-8 {
  fill: rgb(255, 255, 255);
}
#index svg.active .svg-elem-9 {
  fill: rgb(255, 255, 255);
}
#index svg.active .svg-elem-10 {
  fill: rgb(255, 255, 255);
}
#index svg.active .svg-elem-11 {
  fill: rgb(255, 255, 255);
}
#index svg.active .svg-elem-12 {
  fill: rgb(255, 255, 255);
}
#index svg.active .svg-elem-13 {
  fill: rgb(255, 255, 255);
}
#index svg.active .svg-elem-14 {
  fill: rgb(255, 255, 255);
}
#index svg.active .svg-elem-15 {
  fill: rgb(255, 255, 255);
}
#index.light-up .mask-section .orange-bg {
  opacity: 1;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
#index.light-up .mask-section .orange-linear-bg {
  opacity: 1;
  -webkit-transition: opacity 0.5s linear 0.2s;
  transition: opacity 0.5s linear 0.2s;
}
#index.loading-out .mask-section {
  pointer-events: none;
  background-color: transparent;
}
#index.loading-out .mask-section .loading-logo {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
}
#index.loading-out .mask-section .orange-bg {
  opacity: 0;
}
@media (max-width: 1199px) {
  #index.loading-out .mask-section .orange-bg {
    opacity: 1;
    height: 0;
    -webkit-transition: height 0.6s ease-in-out 0.9s;
    transition: height 0.6s ease-in-out 0.9s;
  }
}
#index.loading-out .mask-section .orange-linear-bg {
  width: 0;
  -webkit-transition: width 0.6s ease-in-out 0.3s;
  transition: width 0.6s ease-in-out 0.3s;
}
@media (max-width: 1199px) {
  #index.loading-out .mask-section .orange-linear-bg {
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out 0.6s;
    transition: opacity 0.5s ease-in-out 0.6s;
  }
}
#index.loading-out .section.section-banner .text-block {
  opacity: 1;
}
#index .section {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  will-change: transform;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#index .section .deco-box {
  width: var(--aside-width);
}
#index .section .deco-box.orange {
  background: var(--main-orange);
}
#index .section .deco-box.bg-orange-linear {
  background: linear-gradient(159deg, #FC671A 26.96%, #F3CD38 133.49%);
}
#index .section .section-title {
  /* 48px to 32px clamp w2560 - w768*/
  font-size: clamp(1.778rem, 1.2238rem + 1.2989vw, 2.667rem);
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 2.4px;
  color: var(--main-blue);
}
@media (max-width: 767px) {
  #index .section .section-title {
    font-size: 32px;
  }
}
#index .section .sub-title {
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 1.5px;
}
#index .section .en-text {
  margin-top: 8px;
  /*24px to 18px clamp*/
  font-size: clamp(1.125rem, 1.0185rem + 0.2948vw, 1.333rem);
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 26.4px */
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#182F8F), color-stop(35.07%, #72C9F1));
  background: linear-gradient(90deg, #182F8F 0%, #72C9F1 35.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#index .section.active {
  z-index: 1;
}
#index .section.active .img-element .mask {
  right: 100%;
}
#index .section.back-active.active {
  z-index: 2;
}
#index .section.for-active, #index .section.prev, #index .section.back-active, #index .section.next {
  z-index: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.73, 0.27, 0.43, 0.91);
          animation-timing-function: cubic-bezier(0.73, 0.27, 0.43, 0.91);
}
#index .section.for-active {
  -webkit-animation-name: for-active;
          animation-name: for-active;
}
#index .section.back-active {
  -webkit-animation-name: back-active;
          animation-name: back-active;
}
#index .section .img-element {
  position: relative;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
#index .section .img-element.aos-animate .mask {
  right: 100%;
}
#index .section .img-element .mask {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #e5e5e5;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-timing-function: cubic-bezier(0.94, 0.08, 0.17, 0.94);
          transition-timing-function: cubic-bezier(0.94, 0.08, 0.17, 0.94);
}
@media screen and (max-width: 1199px) {
  #index .fade-up {
    -webkit-transition-delay: 0s !important;
            transition-delay: 0s !important;
  }
  #index .section {
    position: static;
  }
  #index .section .img-element .mask {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}

#index .section.section-banner {
  min-height: 450px;
  background: black;
}
#index .section.section-banner .deco-box {
  display: block;
  position: absolute;
  height: 100%;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#index .section.section-banner.animate .text-block .title-frame .section-title {
  -webkit-transform: none;
          transform: none;
}
@media (max-width: 767px) {
  #index .section.section-banner.animate .text-block .title-frame .section-title {
    opacity: 1;
  }
}
#index .section.section-banner.animate .text-block .title span {
  -webkit-transform: none;
          transform: none;
}
@media (max-width: 767px) {
  #index .section.section-banner.animate .text-block .title span {
    opacity: 1;
  }
}
#index .section.section-banner.animate .text-block .description span {
  -webkit-transform: none;
          transform: none;
}
@media (max-width: 767px) {
  #index .section.section-banner.animate .text-block .description span {
    opacity: 1;
  }
}
#index .section.section-banner .iframe-element {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: calc(100% - var(--aside-width));
  height: 100vh;
  pointer-events: none;
}
#index .section.section-banner .iframe-element video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#index .section.section-banner .iframe-element iframe {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100vw !important;
  height: 75vw !important;
  min-width: 100%;
  min-height: 100%;
}
@media (max-aspect-ratio: 16/9) {
  #index .section.section-banner .iframe-element iframe {
    width: 177.78vh !important;
  }
}
#index .section.section-banner .iframe-element .color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 100, 255, 0.15);
  /* 淡藍色 */
  mix-blend-mode: overlay;
  /* 與影片混合，呈現冷色調 */
  pointer-events: none;
  /* 避免遮擋操作 */
}
#index .section.section-banner .text-block {
  position: absolute;
  bottom: 16.4%;
  left: calc(10.47% + var(--aside-width));
}
@media (max-width: 2000px) {
  #index .section.section-banner .text-block {
    bottom: 25%;
    left: calc(5% + var(--aside-width));
  }
}
#index .section.section-banner .text-block .title-frame .section-title {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
#index .section.section-banner .text-block .title {
  font-size: clamp(2rem, 0.18rem + 5.04vw, 5.556rem);
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
#index .section.section-banner .text-block .title span {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
#index .section.section-banner .text-block .description {
  font-size: clamp(1rem, 0.5842rem + 0.9745vw, 1.667rem);
  font-weight: 700;
  line-height: 130%;
  /* 39px */
  letter-spacing: 1.5px;
}
#index .section.section-banner .text-block .description > span {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
#index .section.section-banner .cookie-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 21px 40px;
  position: absolute;
  right: 72px;
  bottom: 54px;
  border-radius: 100px;
  border: 1px solid white;
}
#index .section.section-banner .cookie-block .close-btn {
  width: 50px;
  height: 50px;
  background: white;
  color: black;
  border-radius: 50%;
  border: none;
  font-size: 20px;
  margin-right: 20px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
#index .section.section-banner .cookie-block .close-btn:hover {
  background: #fc671a;
}
#index .section.section-banner .cookie-block .close-btn:hover i {
  color: white;
}
#index .section.section-banner .cookie-block .close-btn i {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 1199px) {
  #index .section.section-banner {
    position: fixed;
    left: 0;
    z-index: 0;
  }
  #index .section.section-banner.banner-hide {
    opacity: 0;
  }
  #index .section.section-banner .iframe-element {
    width: 100%;
    height: calc(100% - 74px);
    margin-top: 74px;
  }
  #index .section.section-banner .iframe-element video {
    left: 50%;
  }
  #index .section.section-banner .cookie-block {
    width: 490px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media (max-width: 991px) {
  #index .section.section-banner .text-block {
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    padding: 0 72px;
  }
}
@media (max-width: 767px) {
  #index .section.section-banner .text-block {
    bottom: calc(14% + 70px);
    padding: 0 36px;
  }
  #index .section.section-banner .text-block .title-frame .section-title {
    margin-bottom: 0;
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
    opacity: 0;
  }
  #index .section.section-banner .text-block .title {
    font-size: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  #index .section.section-banner .text-block .title span {
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
    opacity: 0;
  }
  #index .section.section-banner .text-block .description {
    font-size: 16px;
  }
  #index .section.section-banner .text-block .description > span {
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
    opacity: 0;
  }
  #index .section.section-banner .cookie-block {
    max-width: 400px;
    width: calc(100% - 40px);
    padding: 12px 14px;
    bottom: 23px;
    font-size: 14px;
  }
  #index .section.section-banner .cookie-block .close-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin-right: 14px;
  }
  #index .section.section-banner .cookie-block .fs-18 {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  #index .section.section-banner .cookie-block {
    max-width: 385px;
  }
}

#index .section.section-about {
  padding-left: var(--aside-width);
}
#index .section.section-about .row {
  width: 100%;
}
@media (max-width: 1199px) {
  #index .section.section-about .text-block {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
#index .section.section-about .text-box {
  width: 86%;
  max-width: 900px;
  padding: 54px 36px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1199px) {
  #index .section.section-about .text-box {
    width: 92%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  #index .section.section-about .text-box {
    width: 100%;
  }
}
#index .section.section-about .section-title,
#index .section.section-about .en-text {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
#index .section.section-about .sub-title {
  margin-bottom: 1rem;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
@media (max-width: 767px) {
  #index .section.section-about .sub-title {
    margin-bottom: 9px;
    letter-spacing: 1px;
  }
}
#index .section.section-about .script-box {
  margin-top: max(54px, 5.625vh);
  padding-bottom: 36px;
}
#index .section.section-about .script-box + .script-box {
  margin-top: 0;
  padding-top: 36px;
  border-top: 1px solid #eee;
}
#index .section.section-about .script-box:nth-last-of-type(1) {
  padding-bottom: 0;
}
@media (max-width: 1199px) {
  #index .section.section-about .script-box {
    margin-top: max(36px, 4.5vh);
    padding-bottom: 27px;
  }
}
@media (max-width: 767px) {
  #index .section.section-about .script-box {
    margin-top: 36px;
  }
}
#index .section.section-about .script-box .description {
  margin-bottom: 0;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
#index .section.section-about .img-block {
  padding-top: var(--aside-width);
  height: 100%;
}
#index .section.section-about .img-block .img-element {
  height: 100%;
}
#index .section.section-about .img-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1199px) {
  #index .section.section-about .img-block {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: 600px;
  }
}
@media (max-width: 767px) {
  #index .section.section-about .img-block {
    height: auto;
  }
  #index .section.section-about .img-block .img-element {
    height: auto;
  }
  #index .section.section-about .img-block img {
    aspect-ratio: 375/340;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 767px) {
  body.lang_en #index .section.section-about .sub-title {
    letter-spacing: 0;
  }
}

#index .section.section-advantage {
  padding-top: var(--aside-width);
}
#index .section.section-advantage:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% + var(--aside-width) / 2);
  height: var(--aside-width);
  background-color: var(--main-orange);
}
#index .section.section-advantage .deco-box {
  background: var(--main-orange);
  min-width: calc(var(--aside-width));
}
#index .section.section-advantage .row {
  width: 100%;
}
#index .section.section-advantage .text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
#index .section.section-advantage .text-box {
  width: 92%;
  max-width: 900px;
  padding: 54px 36px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1199px) {
  #index .section.section-advantage .text-box {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  #index .section.section-advantage .text-box {
    width: 100%;
  }
}
#index .section.section-advantage .description {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
#index .section.section-advantage .sub-title {
  line-height: 110%;
}
#index .section.section-advantage .list-title {
  /* Fontsize_itemtitle */
  margin-bottom: 9px;
}
#index .section.section-advantage .list-text {
  color: var(--sub-color);
  /*18px to 15px*/
  line-height: 150%;
  margin-bottom: 0;
  font-weight: normal;
}
@media (max-width: 767px) {
  #index .section.section-advantage .list-text {
    font-size: 15px;
  }
}
#index .section.section-advantage .advantage-list {
  margin: max(18px, 2.8vh) 0 0;
  padding-left: 0;
}
#index .section.section-advantage .advantage-list li {
  margin-top: max(24px, 2.1vh);
  padding: 0 0 max(16px, 2.1vh) 48px;
  border-bottom: 1px solid #eee;
  list-style-type: none;
  position: relative;
  counter-increment: step;
  font-weight: 500;
  line-height: 130%;
  /* 31.2px */
  letter-spacing: 1.2px;
}
@media (max-width: 1199px) {
  #index .section.section-advantage .advantage-list li:nth-last-of-type(1) {
    border-bottom: 0;
  }
}
@media (max-width: 767px) {
  #index .section.section-advantage .advantage-list li {
    line-height: 110%;
  }
}
#index .section.section-advantage .advantage-list li:before {
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 48px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 1600px) {
  #index .section.section-advantage .advantage-list li:before {
    top: 1px;
  }
}
@media (max-width: 767px) {
  #index .section.section-advantage .advantage-list li {
    margin-top: 18px;
    padding: 0 0 18px 32px;
  }
  #index .section.section-advantage .advantage-list li:before {
    width: 32px;
  }
}
#index .section.section-advantage .img-block .img-element {
  height: 100%;
}
#index .section.section-advantage .img-block .img-element.aos-animate .mask {
  right: 0;
  left: 100%;
}
#index .section.section-advantage .img-block .img-element .mask {
  -webkit-transition-property: left;
  transition-property: left;
}
#index .section.section-advantage .img-block .img-element img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1199px) {
  #index .section.section-advantage .img-block {
    height: 600px;
  }
}
@media (max-width: 767px) {
  #index .section.section-advantage .img-block {
    height: auto;
  }
  #index .section.section-advantage .img-block .img-element {
    height: auto;
  }
  #index .section.section-advantage .img-block img {
    aspect-ratio: 375/340;
    width: 100%;
    height: auto;
  }
}
#index .section.section-advantage.active .img-element .mask {
  right: 0;
  left: 100%;
}

#index .section.section-service {
  background: white;
  padding-left: var(--aside-width);
}
@media (max-width: 1199px) {
  #index .section.section-service {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: linear-gradient(160deg, #FC671A 45.59%, #F3CD38 134.89%);
  }
}
#index .section.section-service .dec-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 88%;
  height: 100%;
  background: linear-gradient(159deg, #FC671A 26.96%, #F3CD38 133.49%);
}
#index .section.section-service .dec-block .slogan {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 85%;
}
#index .section.section-service .dec-block .slogan img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1199px) {
  #index .section.section-service .dec-block {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: static;
    width: 100%;
    height: auto;
    margin-top: 54px;
    background: none;
  }
  #index .section.section-service .dec-block .slogan {
    position: static;
  }
  #index .section.section-service .dec-block .slogan img {
    width: 82.13%;
  }
}
@media (max-width: 767px) {
  #index .section.section-service .dec-block {
    margin-top: 30px;
  }
}
#index .section.section-service .main-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
#index .section.section-service .main-block .text-box {
  width: 39.75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}
#index .section.section-service .main-block .text-box .text-inner {
  -ms-flex-item-align: center;
      align-self: center;
  width: 80%;
  max-width: 584px;
  margin-left: auto;
  margin-right: auto;
}
#index .section.section-service .main-block .text-box .text-inner .section-title {
  color: white;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
#index .section.section-service .main-block .text-box .text-inner .sub-title {
  color: white;
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
#index .section.section-service .main-block .text-box .text-inner .description {
  font-weight: 300;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
#index .section.section-service .main-block .img-box {
  position: absolute;
  left: 39.75%;
  width: 60.25%;
}
#index .section.section-service .main-block .img-box .items .item {
  width: 600px;
  aspect-ratio: 600/680;
}
@media (max-width: 2000px) {
  #index .section.section-service .main-block .img-box .items .item {
    width: 500px;
  }
}
@media (max-width: 1600px) {
  #index .section.section-service .main-block .img-box .items .item {
    width: 450px;
  }
}
#index .section.section-service .main-block .img-box .items .item:hover .text {
  -webkit-transform: none;
          transform: none;
}
#index .section.section-service .main-block .img-box .items .item:hover .text .description {
  -webkit-transform: none;
          transform: none;
}
#index .section.section-service .main-block .img-box .items .item .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 56px 47px 45px 47px;
  -webkit-transform: translateY(calc(100% - 140px));
          transform: translateY(calc(100% - 140px));
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
#index .section.section-service .main-block .img-box .items .item .text .description {
  -webkit-transform: translateY(28px);
          transform: translateY(28px);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  margin-bottom: 0;
}
@media (max-width: 1600px) {
  #index .section.section-service .main-block .img-box .items .item .text {
    padding: 36px 27px 27px;
    -webkit-transform: translateY(calc(100% - 100px));
            transform: translateY(calc(100% - 100px));
  }
}
@media (max-width: 1199px) {
  #index .section.section-service .main-block {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
  #index .section.section-service .main-block .text-box {
    width: 100%;
  }
  #index .section.section-service .main-block .text-box .text-inner {
    width: 92%;
    max-width: 100%;
    padding: 54px 36px;
  }
  #index .section.section-service .main-block .img-box {
    position: relative;
    left: auto;
    width: calc(92% - 72px);
    margin-left: auto;
    margin-right: auto;
  }
  #index .section.section-service .main-block .img-box .swiper {
    width: 100%;
  }
  #index .section.section-service .main-block .img-box .items .item {
    aspect-ratio: auto;
  }
  #index .section.section-service .main-block .img-box .items .item .text {
    -webkit-transform: none;
            transform: none;
  }
  #index .section.section-service .main-block .img-box .items .item .text .description {
    -webkit-transform: none;
            transform: none;
  }
}
@media (max-width: 1199px) and (max-width: 768px) {
  #index .section.section-service .main-block .img-box .items .item img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 1199px) {
  #index .section.section-service .main-block .img-box .swiper-button-prev,
  #index .section.section-service .main-block .img-box .swiper-button-next {
    width: 55px;
  }
  #index .section.section-service .main-block .img-box .swiper-button-prev img,
  #index .section.section-service .main-block .img-box .swiper-button-next img {
    width: 100%;
    height: auto;
  }
  #index .section.section-service .main-block .img-box .swiper-button-prev::after,
  #index .section.section-service .main-block .img-box .swiper-button-next::after {
    display: none;
  }
  #index .section.section-service .main-block .img-box .swiper-button-prev {
    left: -55px;
  }
  #index .section.section-service .main-block .img-box .swiper-button-next {
    right: -55px;
  }
}
@media (max-width: 991px) {
  #index .section.section-service .main-block .img-box .items .item {
    aspect-ratio: 3/5;
  }
  #index .section.section-service .main-block .img-box .items .item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  #index .section.section-service .main-block .text-box .text-inner {
    width: 100%;
  }
  #index .section.section-service .main-block .img-box {
    width: 100%;
    padding: 0 36px 30px 36px;
  }
  #index .section.section-service .main-block .img-box .items .item .text {
    padding: 27px 18px;
  }
  #index .section.section-service .main-block .img-box .items .item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #index .section.section-service .main-block .img-box .swiper-button-prev,
  #index .section.section-service .main-block .img-box .swiper-button-next {
    width: 34px;
  }
  #index .section.section-service .main-block .img-box .swiper-button-prev {
    left: 0;
  }
  #index .section.section-service .main-block .img-box .swiper-button-next {
    right: 0;
  }
}
@media (max-width: 576px) {
  #index .section.section-service .main-block .img-box .items .item {
    aspect-ratio: 303/502;
  }
}

#index .section-news {
  background: #fff;
  padding-top: var(--aside-width);
  padding-left: var(--aside-width);
}
@media (max-width: 1199px) {
  #index .section-news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#index .section-news .en-text {
  background-image: -webkit-gradient(linear, left top, right top, from(#182F8F), color-stop(7.62%, #72C9F1));
  background-image: linear-gradient(90deg, #182F8F 0%, #72C9F1 7.62%);
}
#index .section-news .img-block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  height: 100%;
}
#index .section-news .img-block .img-element {
  width: 100%;
  height: 100%;
}
#index .section-news .img-block .img-element img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}
#index .section-news .text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#index .section-news .text-block .text-container {
  position: relative;
  width: 74%;
  max-width: 1075px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1199px) {
  #index .section-news .text-block .text-container {
    width: 92%;
    max-width: 100%;
    padding: 54px 36px;
  }
}
@media (max-width: 767px) {
  #index .section-news .text-block .text-container {
    width: 100%;
  }
}
#index .section-news .text-block .news-swiper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 40px;
}
#index .section-news .text-block .news-swiper .swiper {
  height: 50vh;
  max-height: 600px;
  overflow: hidden;
  padding-right: 7vh;
}
@media (min-width: 1200px) {
  #index .section-news .text-block .news-swiper .swiper:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 25%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, rgb(255, 255, 255)), to(transparent));
    background: linear-gradient(to top, rgb(255, 255, 255) 40%, transparent);
  }
}
#index .section-news .text-block .news-swiper .swiper-slide {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#index .section-news .text-block .news-swiper .swiper-slide:nth-of-type(1) .news-item {
  padding-top: 0;
}
@media (max-width: 1199px) {
  #index .section-news .text-block .news-swiper {
    padding-right: 0;
    display: block;
  }
  #index .section-news .text-block .news-swiper .swiper {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    padding-right: 0;
  }
}
#index .section-news .news-item {
  border-bottom: 1px solid #ddd;
  padding-top: max(30px, 4.22vh);
  padding-bottom: max(30px, 4.22vh);
}
@media (max-width: 1199px) {
  #index .section-news .news-item {
    border-top: 1px solid #ddd;
    border-bottom: 0;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  #index .section-news .news-item {
    padding-bottom: 36px;
  }
}
#index .section-news .news-item .news-tag {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1600px) {
  #index .section-news .news-item .news-tag {
    font-size: 14px;
  }
}
#index .section-news .news-item .news-tag .tag {
  display: inline-block;
  padding: 9px 18px;
  margin-right: 18px;
  background: #eee;
}
#index .section-news .news-item .news-content {
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 150px;
  /* 5 行 x 1.5 行高 */
}
@media (max-width: 1199px) {
  #index .section-news .news-item .news-content {
    display: block;
    max-height: 100%;
  }
}
@media (max-width: 767px) {
  #index .section-news .news-item .news-content.mt-18px {
    margin-top: 18px;
  }
}
#index .section-news .function {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 60px;
  height: 300px;
  margin-top: auto;
  margin-bottom: auto;
}
#index .section-news .function .swiper-button-prev,
#index .section-news .function .swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 60px;
  height: 60px;
  min-width: 60px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: var(--main-color);
  margin-top: 0;
}
#index .section-news .function .swiper-button-prev img,
#index .section-news .function .swiper-button-next img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 1199px) {
  #index .section-news .function .swiper-button-prev img,
  #index .section-news .function .swiper-button-next img {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}
#index .section-news .function .swiper-button-prev:after,
#index .section-news .function .swiper-button-next:after {
  display: none;
}
#index .section-news .function .swiper-pagination {
  position: relative;
  width: 60px;
  height: 110px;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#index .section-news .function .swiper-pagination:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1px;
  height: 50px;
  background: #d5d5d5;
}
@media (max-width: 1199px) {
  #index .section-news .function .swiper-pagination {
    bottom: auto;
    left: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 110px;
    height: auto;
  }
  #index .section-news .function .swiper-pagination:after {
    width: 50px;
    height: 1px;
  }
}
#index .section-news .function .total-slides {
  color: #ccc;
}
@media (max-width: 1199px) {
  #index .section-news .function {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1199px) {
  #index .section-news .img-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    height: 600px;
    overflow: hidden;
  }
  #index .section-news .img-block .img-element {
    height: 600px;
  }
  #index .section-news .text-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media (max-width: 480px) {
  #index .section-news .img-block {
    height: auto;
  }
  #index .section-news .img-block .img-element {
    height: auto;
  }
  #index .section-news .img-block .img-element img {
    width: 100%;
    height: auto;
  }
}

#index .section.section-certificate {
  padding-left: var(--aside-width);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#index .section.section-certificate .deco-box {
  background: var(--main-orange);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
#index .section.section-certificate .info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 66%;
}
#index .section.section-certificate .info-block .text-box {
  width: 60.25%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 991px) {
  #index .section.section-certificate .info-block .text-box {
    width: 50%;
  }
}
@media (max-width: 767px) {
  #index .section.section-certificate .info-block .text-box {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}
#index .section.section-certificate .info-block .text-box .text-inner {
  width: 80%;
  max-width: 915px;
  margin: 0 auto;
  padding: 54px 36px;
}
#index .section.section-certificate .info-block .text-box .text-inner .section-title,
#index .section.section-certificate .info-block .text-box .text-inner .en-text {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
#index .section.section-certificate .info-block .text-box .text-inner .sub-title,
#index .section.section-certificate .info-block .text-box .text-inner .script {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
#index .section.section-certificate .info-block .text-box .text-inner .description {
  max-height: 108px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#index .section.section-certificate .certificate-swiper {
  width: 39.75%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#index .section.section-certificate .certificate-swiper .swiper {
  width: 100%;
}
#index .section.section-certificate .certificate-swiper .mask {
  z-index: 5;
}
#index .section.section-certificate .certificate-swiper .slider-item {
  position: relative;
  width: 100%;
  height: 100%;
}
#index .section.section-certificate .certificate-swiper .slider-item img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  #index .section.section-certificate .certificate-swiper .slider-item img {
    aspect-ratio: 375/398;
    height: auto !important;
  }
}
#index .section.section-certificate .certificate-swiper .slider-item .text-box {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
  width: calc(100% - 12rem);
  max-width: 550px;
}
@media (max-width: 1600px) {
  #index .section.section-certificate .certificate-swiper .slider-item .text-box {
    bottom: 1.2rem;
  }
}
@media (max-width: 767px) {
  #index .section.section-certificate .certificate-swiper .slider-item .text-box {
    bottom: 24px;
    background-color: #222;
    position: relative;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    padding: 27px 36px;
    text-align: left;
  }
}
#index .section.section-certificate .certificate-swiper .slider-item .text-box .patent-title {
  font-weight: bold;
  margin-bottom: 9px;
}
@media (max-width: 767px) {
  #index .section.section-certificate .certificate-swiper .slider-item .text-box .patent-title {
    margin-bottom: 18px;
  }
}
#index .section.section-certificate .certificate-swiper .slider-item .text-box .patent-content {
  margin-bottom: 0;
  height: 54px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #eee;
  font-weight: 300;
}
@media (max-width: 1199px) {
  #index .section.section-certificate .certificate-swiper .slider-item .text-box .patent-content {
    -webkit-line-clamp: 3;
    height: 66px;
  }
}
@media (max-width: 767px) {
  #index .section.section-certificate .certificate-swiper .slider-item .text-box .patent-content {
    -webkit-line-clamp: unset;
    max-height: unset;
    display: block;
    height: auto;
  }
}
#index .section.section-certificate .certificate-swiper .slider-item:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-59.66%, #000), color-stop(90.76%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, #000 -59.66%, rgba(0, 0, 0, 0) 90.76%);
}
@media (max-width: 767px) {
  #index .section.section-certificate .certificate-swiper .slider-item:after {
    background: none;
  }
}
@media (max-width: 767px) {
  #index .section.section-certificate .certificate-swiper .swiper-slide {
    background-color: #222;
  }
}
#index .section.section-certificate .certificate-swiper .swiper-button-prev,
#index .section.section-certificate .certificate-swiper .swiper-button-next {
  top: auto;
  bottom: 3.2rem;
  margin-top: auto;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  border: 0;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
#index .section.section-certificate .certificate-swiper .swiper-button-prev:after,
#index .section.section-certificate .certificate-swiper .swiper-button-next:after {
  display: none;
}
#index .section.section-certificate .certificate-swiper .swiper-button-prev img,
#index .section.section-certificate .certificate-swiper .swiper-button-next img {
  width: 30px;
  height: 30px;
}
@media (max-width: 767px) {
  #index .section.section-certificate .certificate-swiper .swiper-button-prev,
  #index .section.section-certificate .certificate-swiper .swiper-button-next {
    top: calc(53.3vw - 22.5px);
    bottom: auto;
  }
}
#index .section.section-certificate .certificate-swiper .swiper-button-prev {
  left: 2rem;
}
@media (max-width: 767px) {
  #index .section.section-certificate .certificate-swiper .swiper-button-prev {
    left: 10px;
  }
}
#index .section.section-certificate .certificate-swiper .swiper-button-next {
  right: 2rem;
}
@media (max-width: 767px) {
  #index .section.section-certificate .certificate-swiper .swiper-button-next {
    right: 10px;
  }
}
@media (max-width: 991px) {
  #index .section.section-certificate .certificate-swiper {
    width: 50%;
  }
}
@media (max-width: 767px) {
  #index .section.section-certificate .certificate-swiper {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
  #index .section.section-certificate .certificate-swiper .swiper-button-prev,
  #index .section.section-certificate .certificate-swiper .swiper-button-next {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 0;
  }
  #index .section.section-certificate .certificate-swiper .swiper-button-prev img,
  #index .section.section-certificate .certificate-swiper .swiper-button-next img {
    width: 24px;
    height: 24px;
  }
  #index .section.section-certificate .certificate-swiper .swiper-button-prev img {
    -webkit-transform: translateX(-1px);
            transform: translateX(-1px);
  }
  #index .section.section-certificate .certificate-swiper .swiper-button-next img {
    -webkit-transform: translateX(1px);
            transform: translateX(1px);
  }
}
#index .section.section-certificate .img-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 34%;
}
#index .section.section-certificate .img-block .img-element {
  width: 60.25%;
}
#index .section.section-certificate .img-element.aos-animate .mask {
  right: 0;
  left: 100%;
}
#index .section.section-certificate .img-element .mask {
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
#index .section.section-certificate.active .img-element .mask {
  right: 0;
  left: 100%;
}
@media (max-width: 1199px) {
  #index .section.section-certificate .img-block {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: auto;
  }
  #index .section.section-certificate .img-block .img-element {
    width: 100%;
  }
  #index .section.section-certificate .info-block {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: auto;
  }
  #index .section.section-certificate .info-block .text-box .text-inner {
    width: 92%;
  }
  #index .section.section-certificate .info-block .text-box .text-inner .description {
    display: block;
    max-height: 100%;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  #index .section.section-certificate .img-block {
    min-height: 180px;
  }
  #index .section.section-certificate .info-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
  #index .section.section-certificate .info-block .text-box .text-inner {
    width: 100%;
    max-width: 100%;
    padding: 54px 36px;
  }
}

#index .section.section-stories {
  display: block;
  background: #F4F4F4;
  padding-left: var(--aside-width);
}
#index .section.section-stories .deco-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
#index .section.section-stories .main-block {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  #index .section.section-stories .main-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    position: relative;
  }
  #index .section.section-stories .main-block:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #F4F4F4;
  }
}
#index .section.section-stories .text-box {
  width: 39.75%;
  max-width: 960px;
  height: 58.2%;
  padding: 7vh max(36px, 7.422vw) 6.64vh;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1900px) {
  #index .section.section-stories .text-box {
    padding: 7vh max(36px, 5vw) 6.64vh;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 1199px) {
  #index .section.section-stories .text-box {
    width: 92%;
    max-width: 100%;
    height: auto;
    padding: 54px 36px;
  }
}
@media (max-width: 767px) {
  #index .section.section-stories .text-box {
    width: 100%;
  }
  #index .section.section-stories .text-box .description.mt-18px {
    margin-top: 18px;
  }
}
#index .section.section-stories .text-box .text-inner .section-title,
#index .section.section-stories .text-box .text-inner .en-text {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
#index .section.section-stories .text-box .text-inner .sub-title,
#index .section.section-stories .text-box .text-inner .description {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
#index .section.section-stories .function {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1900px) {
  #index .section.section-stories .function {
    margin-top: 36px;
  }
}
@media (max-width: 1199px) {
  #index .section.section-stories .function {
    margin-top: 27px;
    margin-bottom: 43px;
  }
}
@media (max-width: 767px) {
  #index .section.section-stories .function {
    max-width: 300px;
    width: 100%;
  }
}
#index .section.section-stories .function .swiper-button-prev,
#index .section.section-stories .function .swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: var(--main-color);
  margin-top: 0;
}
#index .section.section-stories .function .swiper-button-prev img,
#index .section.section-stories .function .swiper-button-next img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
}
#index .section.section-stories .function .swiper-button-prev:after,
#index .section.section-stories .function .swiper-button-next:after {
  display: none;
}
#index .section.section-stories .function .swiper-pagination,
#index .section.section-stories .function .swiper-pagination-pad {
  position: relative;
  width: 110px;
  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;
  bottom: auto;
}
#index .section.section-stories .function .swiper-pagination:after,
#index .section.section-stories .function .swiper-pagination-pad:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50px;
  height: 1px;
  background: #ddd;
}
#index .section.section-stories .function .total-slides {
  color: #ccc;
}
#index .slider-box {
  width: 60.25%;
  height: 58.2%;
  overflow: hidden;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#index .slider-box .swiper {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  #index .slider-box {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }
  #index .slider-box .swiper {
    width: calc(92% - 72px);
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  #index .slider-box .function {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  #index .slider-box {
    padding: 0 36px;
  }
  #index .slider-box .swiper {
    width: 100%;
  }
}
#index .stories-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding-bottom: 220px;
  background: #fff;
}
@media (max-width: 1600px) {
  #index .stories-card {
    padding-bottom: 190px;
  }
}
@media (max-width: 1199px) {
  #index .stories-card {
    padding-bottom: 0;
  }
}
#index .stories-card .card-image {
  height: 100%;
}
#index .stories-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #fff;
  padding: max(18px, 2.8125vh);
}
@media (max-width: 1600px) {
  #index .stories-card .card-content {
    height: 190px;
  }
}
@media (max-width: 1199px) {
  #index .stories-card .card-content {
    position: static;
    height: auto;
  }
}
@media (max-width: 767px) {
  #index .stories-card .card-content {
    padding: 27px 18px;
  }
}
#index .stories-card .card-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  line-height: 1.5;
  height: 36px;
}
@media (max-width: 1199px) {
  #index .stories-card .card-title {
    height: auto;
    display: block;
    overflow: visible;
  }
}
#index .stories-card .card-subtitle {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  line-height: 1.5;
  height: 27px;
}
@media (max-width: 1199px) {
  #index .stories-card .card-subtitle {
    height: auto;
    display: block;
    white-space: normal;
  }
}
#index .stories-card .card-specs {
  border-top: 1px solid #DDD;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#index .stories-card .card-specs .spec-item {
  padding: max(16px, 2.1vh) 0 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}
@media (max-width: 1199px) {
  #index .stories-card .card-specs {
    padding-top: 18px;
  }
  #index .stories-card .card-specs .spec-item {
    width: 100%;
    padding: 0;
  }
}
#index .stories-card .card-specs .spec-value {
  color: var(--main-blue);
}
@media (max-width: 1199px) {
  #index {
    overflow: visible;
  }
}

#index .section.section-invertor {
  padding-left: var(--aside-width);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#index .section.section-invertor .deco-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
#index .section.section-invertor .col-box-1 {
  width: 39.75%;
  max-width: 960px;
}
@media (max-width: 1199px) {
  #index .section.section-invertor .col-box-1 {
    width: 45%;
    max-width: 45%;
  }
}
@media (max-width: 991px) {
  #index .section.section-invertor .col-box-1 {
    width: 100%;
    max-width: 100%;
  }
}
#index .section.section-invertor .col-box-2 {
  width: 60.25%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 1199px) {
  #index .section.section-invertor .col-box-2 {
    width: 55%;
  }
}
@media (max-width: 991px) {
  #index .section.section-invertor .col-box-2 {
    width: 100%;
  }
}
#index .section.section-invertor .top-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 27.74%;
  max-height: 355px;
}
@media (min-width: 1200px) and (max-height: 900px) {
  #index .section.section-invertor .top-block {
    height: 20.18%;
    max-height: calc(100% - 630px);
    min-height: var(--aside-width);
  }
}
#index .section.section-invertor .top-block .text-box {
  background: var(--main-orange);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 39.75%;
  max-width: 39.75%;
}
#index .section.section-invertor .top-block .text-box img {
  width: 80%;
  height: auto;
}
#index .section.section-invertor .top-block .img-box {
  width: 60.25%;
}
#index .section.section-invertor .top-block .img-box .img-element {
  width: auto;
  height: 100%;
  aspect-ratio: 518/355;
}
#index .section.section-invertor .top-block .img-box img {
  width: auto;
  height: 100%;
}
#index .section.section-invertor .top-block .img-element.aos-animate .mask {
  right: 0;
  left: 100%;
}
#index .section.section-invertor .top-block .img-element .mask {
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
@media (max-width: 1199px) {
  #index .section.section-invertor .top-block .text-box {
    width: 45%;
    max-width: 45%;
    background: linear-gradient(159deg, #FC671A 26.96%, #F3CD38 133.49%);
  }
  #index .section.section-invertor .top-block .img-box {
    width: 55%;
  }
  #index .section.section-invertor .top-block .img-box .img-element {
    aspect-ratio: auto;
    width: 100%;
    height: 100%;
  }
  #index .section.section-invertor .top-block .img-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  #index .section.section-invertor .top-block {
    height: auto;
    min-height: auto;
  }
  #index .section.section-invertor .top-block .text-box {
    width: 40%;
    max-width: 40%;
  }
  #index .section.section-invertor .top-block .text-box img {
    width: 100%;
    margin-bottom: 9px;
  }
  #index .section.section-invertor .top-block .img-box {
    width: 60%;
  }
  #index .section.section-invertor .top-block .img-box .img-element {
    aspect-ratio: 224/138;
  }
}
#index .section.section-invertor.active .top-block .img-element .mask {
  right: 0;
  left: 100%;
}
#index .section.section-invertor .main-block {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 72.26%;
  min-height: 630px;
  background: #fff;
}
@media (max-width: 1199px) {
  #index .section.section-invertor .main-block {
    height: auto;
    min-height: auto;
  }
}
@media (max-width: 991px) {
  #index .section.section-invertor .main-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#index .section.section-invertor .investor-box {
  padding: max(36px, 4.6875vw) max(36px, 7.422vw);
}
#index .section.section-invertor .investor-box .section-title, #index .section.section-invertor .investor-box .en-text {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
#index .section.section-invertor .investor-box .info-box {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
@media (max-width: 1800px) {
  #index .section.section-invertor .investor-box {
    padding: max(36px, 3vw) max(36px, 5vw);
  }
}
@media (max-width: 1366px) {
  #index .section.section-invertor .investor-box {
    padding: max(54px, 3vw) max(36px, 5vw);
  }
}
@media (max-width: 1199px) {
  #index .section.section-invertor .investor-box {
    padding: 72px;
  }
}
@media (max-width: 767px) {
  #index .section.section-invertor .investor-box {
    padding: 54px 36px;
  }
  #index .section.section-invertor .investor-box .info-box.mt-72px {
    margin-top: 36px;
  }
}
#index .section.section-invertor .investor-box .alink {
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#index .section.section-invertor .investor-box .alink .icon-link {
  color: #888;
  font-size: 21px;
  margin-left: 9px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  #index .section.section-invertor .investor-box .alink:hover {
    color: var(--main-blue);
  }
  #index .section.section-invertor .investor-box .alink:hover .icon-link {
    color: var(--main-blue);
  }
}
@media (max-width: 1600px) {
  #index .section.section-invertor .investor-box .alink .icon-link {
    font-size: 18px;
  }
}
#index .section.section-invertor .investor-box a {
  color: inherit;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  #index .section.section-invertor .investor-box a:hover {
    color: var(--main-blue);
  }
}
#index .section.section-invertor .investor-box .info-row {
  line-height: 1.8;
}
#index .section.section-invertor .download-box {
  background: #F4F4F4;
  padding: max(36px, 4.6875vw) max(36px, 7.422vw);
}
#index .section.section-invertor .download-box .title-box {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
@media (max-width: 1800px) {
  #index .section.section-invertor .download-box {
    padding: max(54px, 3vw) max(36px, 5vw);
  }
}
@media (max-width: 1199px) {
  #index .section.section-invertor .download-box {
    padding: 72px;
  }
}
@media (max-width: 767px) {
  #index .section.section-invertor .download-box {
    padding: 54px 36px 54px;
  }
}
#index .section.section-invertor .download-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: max(27px, 2.8125vh) max(36px, 5.6vh);
}
#index .section.section-invertor .download-list .file-block {
  width: calc(50% - 2.8vh);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
#index .section.section-invertor .download-list .file-block .file-category {
  padding-bottom: 9px;
  border-bottom: 1px solid #CCC;
  color: #222;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 31.2px */
  letter-spacing: 1.2px;
}
#index .section.section-invertor .download-list .file-block .file-list {
  margin: 10px 0 0;
  padding: 0;
  list-style-type: none;
}
#index .section.section-invertor .download-list .file-block .file-list li a {
  color: inherit;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  line-height: 1.8;
}
#index .section.section-invertor .download-list .file-block .file-list li a:after {
  content: "\e808";
  display: inline-block;
  width: 1rem;
  height: 27px;
  font-family: "fontello";
  text-align: center;
  color: #888;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
#index .section.section-invertor .download-list .file-block .file-list li a:hover {
  color: var(--main-blue);
}
#index .section.section-invertor .download-list .file-block .file-list li a:hover::after {
  color: var(--main-blue);
}
@media (max-width: 1600px) {
  #index .section.section-invertor .download-list .file-block .file-list li a:after {
    width: 15px;
    height: auto;
    margin-top: 1px;
  }
}
@media (max-width: 1199px) {
  #index .section.section-invertor .download-list .file-block {
    width: calc(50% - 36px);
  }
}
@media (max-width: 767px) {
  #index .section.section-invertor .download-list {
    gap: 36px 0;
  }
  #index .section.section-invertor .download-list .file-block {
    width: 100%;
  }
}
#index .section.section-invertor .link-box {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
#index .section.section-invertor .link-box .link-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 280px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 17px 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid #555;
  color: #000;
  -webkit-transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease;
}
#index .section.section-invertor .link-box .link-more .icon-link {
  font-size: 20px;
  color: #888;
  margin-left: 10px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  #index .section.section-invertor .link-box .link-more:hover {
    border: 1px solid var(--main-blue);
    color: #fff;
    background-color: var(--main-blue);
  }
  #index .section.section-invertor .link-box .link-more:hover .icon-link {
    color: #fff;
  }
}
@media (max-width: 2000px) {
  #index .section.section-invertor .link-box .link-more {
    min-width: 200px;
    padding: 9px 10px;
  }
}
@media (max-width: 1199px) {
  #index .section.section-invertor .link-box .link-more .icon-link {
    font-size: 17px;
    margin-left: 0;
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
}
@media (max-width: 767px) {
  #index .section.section-invertor .link-box .link-more {
    padding: 12px 18px;
    width: 100%;
  }
  #index .section.section-invertor .link-box .link-more .icon-link {
    display: none;
  }
}

.section-footer {
  background: #000;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section-footer .company-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 45.58%;
  min-height: 330px;
  width: 100%;
  padding: max(8vw, 5rem) max(var(--aside-width), 8.2vw) 36px var(--aside-width);
}
@media (min-width: 1365px) and (min-height: 800px) {
  .section-footer .company-info {
    height: 45.58%;
  }
}
@media (max-width: 1600px) and (min-width: 1200px) and (max-height: 799px) {
  .section-footer .company-info {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.section-footer .company-info .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.section-footer .company-info .bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.001);
          transform: scale(1.001);
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.section-footer .company-info > div {
  position: relative;
  height: 145px;
}
.section-footer .company-info .logo-white {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.section-footer .company-info .data-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1060px;
}
@media (max-width: 1700px) {
  .section-footer .company-info .data-block {
    width: 900px;
  }
}
@media (max-width: 1400px) {
  .section-footer .company-info .data-block {
    width: 720px;
  }
}
.section-footer .company-info .company-name,
.section-footer .company-info .company-text {
  width: calc(50% - 40px);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media (max-width: 1700px) {
  .section-footer .company-info .company-name,
  .section-footer .company-info .company-text {
    width: calc(50% - 20px);
  }
}
@media (max-width: 1400px) {
  .section-footer .company-info .company-name,
  .section-footer .company-info .company-text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.section-footer .company-info .company-text .text-block {
  list-style-type: none;
  margin: 18px 0 0;
  padding: 0;
  line-height: 1.8;
}
.section-footer .company-info .company-text .text-block a {
  color: inherit;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (hover: hover) {
  .section-footer .company-info .company-text .text-block a:hover {
    color: var(--hover-color);
  }
}
@media (max-width: 1199px) {
  .section-footer .company-info {
    -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;
    padding: 122px 72px 158px;
    height: auto;
    min-height: auto;
  }
  .section-footer .company-info > div {
    height: auto;
  }
  .section-footer .company-info .data-block {
    -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;
    width: 100%;
  }
  .section-footer .company-info .company-name,
  .section-footer .company-info .company-text {
    width: 100%;
    text-align: center;
  }
  .section-footer .company-info .company-name {
    padding-top: 54px;
    padding-bottom: 72px;
  }
  .section-footer .company-info .company-text {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 72px;
  }
}
@media (max-width: 767px) {
  .section-footer .company-info {
    padding: 54px 36px;
  }
  .section-footer .company-info .company-name {
    padding-top: 54px;
    padding-bottom: 18px;
  }
  .section-footer .company-info .company-name .slogan {
    font-weight: normal;
    letter-spacing: normal;
  }
  .section-footer .company-info .company-text {
    border-top: 0;
    padding-top: 18px;
  }
  .section-footer .company-info .company-text .fs-24 {
    font-size: 15px;
    font-weight: normal;
  }
  .section-footer .company-info .company-text .text-block {
    margin: 9px 0 0 0;
    line-height: 1.5;
  }
}
.section-footer .branch-info {
  padding: max(54px, 7.8vh) var(--aside-width);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 1600px) {
  .section-footer .branch-info {
    padding: max(54px, 7.8vh) max(72px, 4vw);
  }
}
@media (max-width: 1199px) {
  .section-footer .branch-info {
    padding: max(54px, 7.8vh) 90px;
  }
}
@media (max-width: 767px) {
  .section-footer .branch-info {
    padding: 36px 36px 54px;
  }
}
.section-footer .branch-info .branch-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: max(36px, 5.15vh) 27px;
}
@media (max-width: 1400px) {
  .section-footer .branch-info .branch-list {
    gap: max(24px, 3.6vh) 27px;
  }
}
@media (max-width: 767px) {
  .section-footer .branch-info .branch-list {
    gap: 0;
  }
}
.section-footer .branch-info .branch-list .branch-item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: calc(25% - 27px);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
@media (max-width: 1199px) {
  .section-footer .branch-info .branch-list .branch-item {
    width: calc(50% - 27px);
  }
}
@media (max-width: 767px) {
  .section-footer .branch-info .branch-list .branch-item {
    width: 100%;
    border-bottom: 1px solid #555;
    padding-top: 18px;
    padding-bottom: 9px;
  }
  .section-footer .branch-info .branch-list .branch-item .branch-header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
  }
  .section-footer .branch-info .branch-list .branch-item .branch-header .branch-title {
    margin-bottom: 0;
  }
  .section-footer .branch-info .branch-list .branch-item .branch-title {
    width: calc(100% - 65px);
  }
  .section-footer .branch-info .branch-list .branch-item .branch-icon {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    -webkit-transition: border 0.3s;
    transition: border 0.3s;
  }
  .section-footer .branch-info .branch-list .branch-item .branch-icon span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    margin: auto;
    background: rgba(255, 255, 255, 0.5);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .section-footer .branch-info .branch-list .branch-item .branch-icon span:nth-of-type(1) {
    width: 8px;
    height: 1px;
  }
  .section-footer .branch-info .branch-list .branch-item .branch-icon span:nth-of-type(2) {
    width: 1px;
    height: 8px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .section-footer .branch-info .branch-list .branch-item .branch-content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease-in-out, margin-top 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out, margin-top 0.3s ease-in-out;
  }
  .section-footer .branch-info .branch-list .branch-item .branch-content .branch-contact {
    padding-bottom: 9px;
  }
  .section-footer .branch-info .branch-list .branch-item .branch-content .contact-item {
    line-height: 1.5;
  }
  .section-footer .branch-info .branch-list .branch-item.active .branch-header .branch-icon {
    border-color: rgb(255, 255, 255);
  }
  .section-footer .branch-info .branch-list .branch-item.active .branch-header .branch-icon span {
    background-color: rgb(255, 255, 255);
  }
  .section-footer .branch-info .branch-list .branch-item.active .branch-icon span:nth-of-type(2) {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .section-footer .branch-info .branch-list .branch-item.active .branch-content {
    max-height: 200px;
  }
}
.section-footer .branch-info .contact-label {
  padding-right: 5px;
}
.section-footer .branch-info .contact-item {
  margin-bottom: 0;
  line-height: 1.8;
}
.section-footer .branch-info a.contact-link {
  color: inherit;
  font-weight: normal;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (hover: hover) {
  .section-footer .branch-info a.contact-link:hover {
    color: var(--hover-color);
  }
}
.section-footer .web-info {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #999;
  height: max(60px, 9.375vh);
  width: 100%;
  padding: 0 max(60px, 9.375vh) 0 var(--aside-width);
}
.section-footer .web-info .data-box {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 36px;
  font-size: 13px;
  font-weight: 400;
  line-height: 200%;
  height: 100%;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
@media (max-width: 1280px) {
  .section-footer .web-info .data-box {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .section-footer .web-info .data-box {
    letter-spacing: normal;
  }
}
.section-footer .web-info .design a {
  color: inherit;
  text-decoration: underline;
}
@media (hover: hover) {
  .section-footer .web-info .design a:hover {
    color: var(--hover-color);
  }
}
.section-footer .web-info .goTop {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  min-height: 60px;
  aspect-ratio: 1/1;
  background: var(--main-orange);
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (hover: hover) {
  .section-footer .web-info .goTop:hover {
    background-color: #fb7d3e;
  }
}
@media (max-width: 1600px) {
  .section-footer .web-info {
    padding: 0 max(72px, 4vw);
  }
}
@media (max-width: 1199px) {
  .section-footer .web-info {
    padding: 0% max(60px, 9.375vh) 0 max(90px, 5vw);
  }
}
@media (max-width: 991px) {
  .section-footer .web-info {
    padding: 0 max(60px, 9.375vh) 0 90px;
    height: auto;
  }
  .section-footer .web-info .data-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
    padding: 18px 96px 18px 0;
  }
}
@media (max-width: 900px) {
  .section-footer .web-info {
    border-top: 0;
  }
  .section-footer .web-info .data-box {
    -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;
  }
  .section-footer .web-info .goTop {
    width: 50px;
    height: 50px;
    min-height: 50px;
    top: auto;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .section-footer .web-info {
    padding: 0 36px 50px;
  }
  .section-footer .web-info .data-box {
    padding: 0;
  }
}