@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans TC", serif;
  padding: 0;
  margin: 0;
}

.container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  background-color: transparent;
  outline: none;
  border: 0;
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav {
  width: 13%;
  height: 100vh;
  background-image: url(../img/nav-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 3.7vw;
}

.nav_logo {
  width: 70%;
  margin: 0 auto 3.2vw;
  display: block;
}

.nav_logo > img {
  width: 100%;
}

.nav_list > li {
  width: 100%;
  padding-bottom: 64%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav_list > li::after {
  position: absolute;
  content: "";
  width: 75%;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0 0 3px rgba(0, 56, 84, 0.3);
          box-shadow: 0 0 3px rgba(0, 56, 84, 0.3);
}

.nav_list > li:last-child::after {
  display: none;
}

.nav_list > li.active {
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 56, 84, 0.3);
          box-shadow: 0 0 3px rgba(0, 56, 84, 0.3);
}

.nav_list > li.active .nav_list_item > a {
  color: #0069A9;
  text-shadow: none;
}

.nav_list > li.active .nav_list_item:not(.haschild) > a > span {
  padding-left: 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid #0069A9;
}

.nav_list > li.active .nav_list_item:not(.haschild) > a > span::before {
  opacity: 1;
}

.nav_list > li.active .nav_list_item.haschild > a {
  padding-left: 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid #0069A9;
}

.nav_list > li.active .nav_list_item.haschild > a::before {
  opacity: 1;
}

.nav_list > li.active::after {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.nav_list > li.active .nav_list_second {
  display: block;
}

.nav_list > li:hover {
  background-color: #fff;
}

.nav_list > li:hover::after {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.nav_list > li:hover .nav_list_item > a {
  color: #0069A9;
  text-shadow: none;
}

.nav_list > li:hover .nav_list_item.haschild > a {
  padding-left: 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid #0069A9;
}

.nav_list > li:hover .nav_list_item.haschild > a::before {
  opacity: 1;
}

.nav_list > li.noborder::after {
  display: none;
}

.nav_list_item {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.nav_list_item > a {
  font-size: 32px;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.55);
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 0.2em;
}

.nav_list_item > a > span {
  position: relative;
  display: block;
}

.nav_list_item > a > span::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 6px;
  background-image: url(../img/triangle-2.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.nav_list_item:not(.haschild) > a {
  width: 100%;
  height: 100%;
  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;
}

.nav_list_item.haschild > a::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 6px;
  background-image: url(../img/triangle-2.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.nav_list_second {
  display: none;
}

.nav_list_second li {
  margin-top: 3px;
}

.nav_list_second a {
  font-size: 27px;
  letter-spacing: 0.08em;
  padding-left: 40px;
  color: #231815;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav_list_second a::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/leaf-green.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.nav_list_second a.active, .nav_list_second a:hover {
  color: #90C260;
}

.nav_list_second a.active::before, .nav_list_second a:hover::before {
  opacity: 1;
}

.main {
  width: 87%;
  padding-top: 5.97vw;
  position: relative;
}

.deco-1 {
  position: absolute;
  width: 20%;
  left: 0;
  bottom: 0;
}

.deco-2 {
  position: absolute;
  width: 20%;
  right: 0;
  bottom: 0;
}

.deco-3 {
  position: absolute;
  width: 27%;
  right: 0;
  bottom: 0;
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.title_ch {
  font-size: 48px;
  font-weight: normal;
  margin-right: 45px;
}

.title_ch span {
  padding: 0 14px;
  position: relative;
}

.title_ch span:first-child {
  padding-left: 0;
}

.title_ch span:last-child {
  padding-right: 0;
}

.title_ch span:last-child::after {
  display: none;
}

.title_ch span::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 19px;
  background-color: #000;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.title_en {
  font-size: 23px;
  color: #ABA7A7;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.title-white .title_ch {
  color: #fff;
}

.title-white .title_ch span::after {
  background-color: #fff;
}

.title-white .title_en {
  color: #fff;
}

.btn-back {
  position: absolute;
  width: 70px;
  right: 2vw;
  bottom: 2vw;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-back:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.inner {
  width: 100vw;
  height: 100vh;
  position: relative;
  padding: 4.83vw 4.91vw;
}

.inner .inner_list {
  font-weight: 300;
  font-size: 28px;
}

.inner_bg {
  width: 100%;
  height: 100%;
  border-radius: 43px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: calc(5.51vw + 104px);
  padding-left: 9.49vw;
  padding-right: 9.49vw;
}

.inner_bg.innerr {
  padding-top: 0;
}

.inner-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.inner_list li {
  padding-left: 1.53vw;
  position: relative;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 0.2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inner_list li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #005EAD;
  top: 18px;
  left: 0;
}

.inner_list li:last-child {
  margin-bottom: 0;
}

.inner_list li span {
  display: block;
  position: relative;
  padding-right: 1.75vw;
}

.inner_list li span::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 25px;
  background-color: #000;
  top: 50%;
  right: 0.88vw;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.inner_list li span:last-child::after {
  display: none;
}

.inner_list li .highlight {
  font-weight: 700;
  display: inline-block;
}

.inner_innerTitle {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 0.25em;
}

.inner_innerTitle-wrap {
  position: relative;
}

.inner_innerTitle-wrap .inner_innerTitle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.inner_innerTitle-wrap::after {
  position: absolute;
  content: "";
  height: 1px;
  background-color: #005EAC;
  top: 50%;
  right: 0;
}

.inner_title {
  position: absolute;
  left: 0;
  top: 6.88vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inner_title_ch {
  padding: 1.28vw 6.41vw 1.28vw 5.74vw;
  background: -webkit-gradient(linear, left top, right top, from(rgba(29, 89, 169, 0.2)), to(#1D59A9));
  background: linear-gradient(to right, rgba(29, 89, 169, 0.2) 0%, #1D59A9 100%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0 100px 100px 0;
  margin-right: 1.82vw;
}

.inner_title_ch h1 {
  margin: 0;
  padding-left: 2.33vw;
  position: relative;
  font-size: 38px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.2em;
}

.inner_title_ch h1::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 31px;
  background-color: #FFD663;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.inner_title_en {
  font-family: "Noto Serif TC", serif;
  color: rgba(157, 176, 192, 0.25);
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}

.inner_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 35px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.inner_info li {
  position: relative;
  font-size: 28px;
  font-weight: 300;
  color: #231815;
  padding-right: 35px;
  letter-spacing: 0.17em;
}

.inner_info li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 24px;
  background-color: #231815;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.inner_info li:last-child {
  padding-right: 0;
}

.inner_info li:last-child::after {
  display: none;
}

.inner_bird {
  position: absolute;
  width: 12.19vw;
}

.inner_tabContent {
  border-radius: 43px;
  overflow: hidden;
  height: 100%;
}

.inner_tabContent_item {
  height: 100%;
  display: none;
}

.inner_tabContent_item.active {
  display: block;
}

.inner_tab {
  position: absolute;
  bottom: calc(100vh - 4.83vw);
  right: calc(4.91vw + 3.02vw);
}

.inner_tab ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inner_tab button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 10px 43px;
  border-radius: 20px 20px 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #005EAC;
}

.inner_tab button img {
  width: 28px;
  position: absolute;
  top: 50%;
  left: 10px;
  opacity: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.inner_tab button span {
  font-size: 34px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.inner_tab button.active {
  background-color: #fff;
  padding-right: 59px;
  padding-right: 17px;
}

.inner_tab button.active img {
  opacity: 1;
}

.inner_tab button.active span {
  font-weight: 700;
  color: #005EAC;
}

.inner_tab button:hover {
  background-color: #fff;
}

.inner_tab button:hover span {
  color: #005EAC;
}

.home {
  background-image: url(../img/home-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.home_content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.home_logo {
  width: 25vw;
  display: block;
  margin: 0 auto;
}

.home_nav {
  margin-top: calc(5vw - 10px);
  padding-top: 10px;
}

.home_nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home_nav > ul > li {
  position: relative;
}

.home_nav > ul > li:last-child a::after {
  display: none;
}

.home_nav > ul > li:hover > a {
  padding: 10px 30px 10px 30px;
  margin-left: 20px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #0069A9;
  text-shadow: none;
  cursor: pointer;
}

.home_nav > ul > li:hover > a::after {
  opacity: 0;
}

.home_nav > ul > li:hover > a.haschild {
  padding: 10px 20px 10px 50px;
}

.home_nav > ul > li:hover > a.haschild::before {
  opacity: 1;
}

.home_nav > ul > li:hover .home_nav_triangle {
  opacity: 1;
}

.home_nav > ul > li:hover .home_nav_second {
  opacity: 1;
}

.home_nav > ul > li > a {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  padding: 0 50px;
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.home_nav > ul > li > a::after {
  position: absolute;
  content: "";
  width: 0.7vw;
  padding-bottom: calc(0.7vw * 2.33);
  background-image: url(../img/divide.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.home_nav > ul > li > a.haschild::before {
  position: absolute;
  content: "";
  width: 0.6vw;
  height: 0.3vw;
  background-image: url(../img/triangle-2.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  left: 25px;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.home_nav_triangle {
  position: absolute;
  height: 100%;
  top: 0;
  left: calc(100% - 1px);
  opacity: 0;
}

.home_nav_second {
  position: absolute;
  top: 100%;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-top: 20px;
}

.home_nav_second li {
  margin-bottom: 15px;
}

.home_nav_second a {
  font-size: 28px;
  color: #fff;
  font-weight: 500;
  padding: 10px 20px 10px 50px;
  position: relative;
}

.home_nav_second a::before {
  position: absolute;
  content: "";
  width: 1.23vw;
  height: 1.24vw;
  background-image: url(../img/leaf.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.home_nav_second a:hover {
  color: #FFF56E;
}

.home_nav_second a:hover::before {
  opacity: 1;
}

.home_nav:hover {
  padding-top: 0;
}

.home_bird {
  position: absolute;
  width: 34vw;
  top: 4.59vw;
  right: -7.68vw;
}

.group {
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.group_main {
  width: 65%;
  margin: 0 auto;
}

.group .title {
  padding-bottom: 30px;
  border-bottom: 1px solid #000;
  padding-left: 75px;
  margin-bottom: 70px;
}

.group_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 10%;
  margin-bottom: 3vw;
}

.group_circle {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  position: relative;
  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;
}

.group_circle h3 {
  font-size: 32px;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: normal;
}

.group_circle h4 {
  position: absolute;
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  top: 50%;
  left: 90%;
  white-space: nowrap;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.group_circle.circle-green {
  background: linear-gradient(135deg, rgba(156, 197, 79, 0.8) 0%, transparent 90%);
}

.group_circle.circle-green h4 {
  color: #429955;
}

.group_circle.circle-blue {
  background: linear-gradient(135deg, rgba(0, 160, 233, 0.8) 0%, transparent 90%);
}

.group_circle.circle-blue h4 {
  color: #00A0D8;
}

.group_circle.circle-yellow {
  background: linear-gradient(135deg, rgba(243, 152, 0, 0.8) 0%, transparent 90%);
}

.group_circle.circle-yellow h4 {
  color: #FF8B00;
}

.group_text {
  width: calc(100% - 155px);
  padding-left: 13%;
}

.group_text h5 {
  font-size: 26px;
  margin-bottom: 30px;
  font-weight: 400;
}

.group_text p {
  font-size: 21px;
  font-weight: 300;
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: justify;
}

.group_tree {
  position: absolute;
  width: 6%;
  top: 12.85%;
  left: 12%;
}

.group_bird {
  position: absolute;
  width: 12.2%;
  top: 51.96%;
  right: 4.41%;
}

.performance {
  background-image: url(../img/performance-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.performance_main {
  width: 80%;
  margin: 0 auto;
}

.performance_main .title {
  margin-bottom: 2.4vw;
}

.performance_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3vw;
  position: relative;
}

.performance_row.middle::before {
  position: absolute;
  content: "";
  width: 12.5%;
  height: 1px;
  background-color: #154C1B;
  top: 33.6%;
  right: 100%;
}

.performance_row.middle::after {
  position: absolute;
  content: "";
  width: 10%;
  height: 1px;
  background-color: #154C1B;
  top: 32%;
  left: 102.5%;
}

.performance_row.end::before {
  position: absolute;
  content: "";
  width: 12.5%;
  height: 1px;
  background-color: #154C1B;
  top: 33.6%;
  right: 100%;
}

.performance_row_end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  width: 8%;
  top: 28%;
  left: 102.5%;
}

.performance_row_end_line {
  width: calc(100% - 20px);
  height: 1px;
  background-color: #154C1B;
}

.performance_item {
  width: calc(100% / 6);
}

.performance_item_inner {
  width: 55%;
  margin-left: auto;
}

.performance_item_circle {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  background-image: url(../img/circle.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.performance_item_circle h3 {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
  color: #154C1B;
  font-size: 33px;
  font-weight: 300;
  text-align: center;
  line-height: 1.3;
}

.performance_item_year {
  position: absolute;
  font-size: 32px;
  color: #154C1B;
  margin: 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #154C1B;
  top: 15%;
  right: 100%;
  width: 70%;
  text-align: right;
  padding-right: 5px;
}

.performance_item_year.longer {
  width: 82%;
}

.performance_item_text {
  margin-top: 1vw;
  text-align: center;
}

.performance_item_text ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

.performance_item_text ul li {
  font-size: 19px;
  color: #154C1B;
  padding: 0 10px;
  position: relative;
  white-space: nowrap;
}

.performance_item_text ul li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  background-color: #008438;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.performance_item_text ul.onlyone li::after {
  display: none;
}

.performance_item_text p {
  color: #154C1B;
  font-size: 19px;
  margin: 0;
}

.performance_item_begin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 26.9%;
}

.performance_item_dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #154C1B;
}

.performance_item_line {
  width: calc(100% - 20px);
  height: 1px;
  background-color: #154C1B;
}

.material {
  background-image: url(../img/material-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.material.bg-dark {
  background-image: url(../img/bg-dark.webp);
}

.material_main {
  width: 80%;
  margin: 0 auto;
}

.material_main .title {
  margin-bottom: 3.5vw;
}

.material_main .title_ch {
  color: #fff;
}

.material_main .title_ch span::after {
  background-color: #fff;
}

.material_main .title_en {
  color: #fff;
}

.material_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.material_item {
  width: 25%;
  padding: 0 1.7vw;
}

.material_item a {
  display: block;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 100%;
  position: relative;
  overflow: hidden;
}

.material_item a > img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.material_item a > span {
  position: absolute;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 15px;
  text-shadow: 0 0 2.5px #000;
  bottom: 7.6%;
  left: 0;
}

.material_item a:hover .material_item_hover {
  opacity: 0;
}

.material_item_circle {
  position: absolute;
  width: 92%;
  padding-bottom: 92%;
  border-radius: 50%;
  border: 1px solid #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.material_item_hover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #94B53E;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.material_item_hover > img {
  width: 77.85%;
  display: block;
  margin: 0 auto 0px;
}

.material_item_hover > span {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  display: block;
  text-align: center;
}

.material-inner_bg.innerr.husky {
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.material-inner_bg.sakura {
  background-image: url(../img/sakura-bg.webp);
  padding-left: 8vw;
  padding-right: 8vw;
}

.material-inner_bg.hometek {
  background-image: url(../img/hometek_bg.webp);
  padding-left: 4.82vw;
  padding-right: 4.82vw;
}

.material-inner_bg.husky {
  background-image: url(../img/husky-bg.webp);
  padding-left: 11vw;
  padding-right: 11vw;
}

.material-inner_bg.husky .material-innerr_en {
  margin-bottom: 43px;
}

.material-inner_bg.toto {
  background-image: url(../img/toto-bg.webp);
  padding-left: 9vw;
  padding-right: 9vw;
}

.material-inner_bg.tta {
  background-image: url(../img/tta-bg.webp);
  padding-left: 7vw;
  padding-right: 7vw;
}

.material-inner_bg.waferlock {
  background-image: url(../img/waferlock-bg.webp);
  padding-left: 8vw;
  padding-right: 8vw;
  padding-top: calc(4vw + 104px);
}

.material-inner_bg.waferlock-inner {
  background-image: url(../img/waferlock-bg-2.webp);
}

.material-inner_bg.mercury {
  background-image: url(../img/mercury-bg.webp);
  padding-left: 8vw;
  padding-right: 8vw;
  padding-top: 3vw;
}

.material-inner_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -1.11vw;
  margin-right: -1.11vw;
  width: 100%;
}

.material-inner_row_item {
  padding-left: 1.11vw;
  padding-right: 1.11vw;
}

.material-inner_row_item > a {
  display: block;
  border-radius: 45px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 3.12vw 0 1.51vw;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.material-inner_row_item > a > img {
  width: 95%;
  display: block;
  margin: 0 auto 1.87vw;
}

.material-inner_row_item > a h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 300;
  color: #005EAD;
  font-size: 32px;
  position: relative;
  letter-spacing: 0.1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.material-inner_row_item > a h3::before {
  position: absolute;
  content: "";
  width: 28px;
  height: 20px;
  background-image: url(../img/leaf-blue.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  left: -40px;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.material-inner_row_item > a:hover {
  background-color: rgba(151, 154, 153, 0.6);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.material-inner_row_item > a:hover h3 {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.material-inner_row_item > a:hover h3::before {
  opacity: 1;
}

.material-inner_row.sakura .material-inner_row_item {
  width: 33.3333%;
}

.material-inner_row.hometek {
  margin-right: 0;
}

.material-inner_row.hometek .material-inner_row_item {
  width: 50%;
}

.material-inner_row.husky {
  margin-right: 0;
}

.material-inner_row.husky .material-inner_row_item {
  width: 100%;
}

.material-inner_row.toto .material-inner_row_item.toilet {
  width: 25%;
}

.material-inner_row.toto .material-inner_row_item.basin {
  width: 75%;
}

.material-innerr_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
}

.material-innerr_en {
  margin: 0;
  color: rgba(157, 176, 192, 0.25);
  font-family: "Noto Serif TC", serif;
  font-size: 40px;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.material-innerr_head {
  margin-bottom: 70px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.material-innerr_bird {
  top: 8.12%;
  left: 102%;
}

.material-innerr_product {
  width: 100%;
}

.material-info {
  padding: 20px 37px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.material-info li {
  font-size: 30px;
  font-weight: 500;
  padding-right: 40px;
  position: relative;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  color: #fff;
  letter-spacing: 0.05em;
}

.material-info li::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 24px;
  background-color: #fff;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.material-info li:last-child {
  padding-right: 0;
}

.material-info li:last-child::after {
  display: none;
}

.material-info.toleft {
  padding-right: 110px;
  background: -webkit-gradient(linear, right top, left top, from(transparent), to(#F29700));
  background: linear-gradient(to left, transparent 0%, #F29700 100%);
}

.material-info.toright {
  padding-left: 110px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), to(#F29700));
  background: linear-gradient(to right, transparent 0%, #F29700 100%);
}

.sakura_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3.03vw;
}

.sakura_logo {
  width: 7.32vw;
  margin-right: 2.94vw;
}

.sakura_bird {
  top: 13.39vw;
  right: 11.29vw;
}

.sakura-inner_item {
  width: 50%;
}

.sakura-inner_logo {
  width: 4.55vw;
  margin-right: 2.53vw;
}

.sakura_deco {
  position: absolute;
  width: 3.02vw;
  left: 6.56vw;
  bottom: 1.79vw;
}

.hometek_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hometek_main_text {
  width: 40%;
  padding-right: 3vw;
}

.hometek_main_pic {
  width: 60%;
}

.hometek_main .inner_list li {
  display: block;
  font-weight: normal;
  padding-bottom: 30px;
  border-bottom: 1px solid #09A3E0;
}

.hometek_main .inner_list li:last-child {
  border: 0;
  padding-bottom: 0;
}

.hometek_logo {
  width: 20.94vw;
  margin-bottom: 50px;
  -webkit-filter: none;
          filter: none;
}

.hometek_bird {
  top: 2.46vw;
  right: 5.24vw;
}

.hometek-1 .hometek-inner_text {
  width: 75%;
}

.hometek-1 .hometek-inner_pic {
  width: 25%;
}

.hometek-2 .hometek-inner_text {
  width: 60%;
}

.hometek-2 .hometek-inner_pic {
  width: 40%;
}

.hometek-inner_text {
  padding-right: 3.43vw;
}

.hometek-inner_logo {
  width: 14.84vw;
  margin-right: 1.89vw;
}

.hometek_deco {
  position: absolute;
  width: 5.23vw;
  top: 2.06vw;
  right: 6.1vw;
}

.husky_logo {
  width: 28.03vw;
  margin-bottom: 2.24vw;
}

.husky_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5vw;
}

.husky_main_text {
  width: 55%;
}

.husky_main_pic {
  width: 45%;
}

.husky_main .inner_info {
  margin-bottom: 32px;
}

.husky_list-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.husky_list-box > ul {
  width: 50%;
}

.husky_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -2.5vw;
  margin-right: -2.5vw;
  position: relative;
}

.husky_inner_item {
  padding-left: 2.5vw;
  padding-right: 2.5vw;
  padding-bottom: 45px;
  width: 33.3333%;
}

.husky_inner_item.last {
  width: 66.6667%;
  left: 0;
  bottom: 0;
  position: absolute;
  padding-bottom: 0;
  -webkit-transform: translateY(-47px);
          transform: translateY(-47px);
}

.husky_inner_item.anion {
  padding-bottom: 0;
}

.husky_inner_title {
  padding: 16px;
  background-color: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
}

.husky_inner_title > img {
  width: 70px;
  margin-right: 18px;
}

.husky_inner_title > h3 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  color: #231815;
  padding-bottom: 15px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.husky_inner_title > h3::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  left: 0;
  bottom: 0;
}

.husky_inner_title > h3.border-lightgreen::after {
  background-color: #7BA445;
}

.husky_inner_title > h3.border-bluegreen::after {
  background-color: #499B87;
}

.husky_inner_title > h3.border-yellow::after {
  background-color: #F3B03D;
}

.husky_inner_title > h3.border-blue::after {
  background-color: #5A9AC0;
}

.husky_inner_title > h3.border-orange::after {
  background-color: #EC7D3B;
}

.husky_inner_title > h3.border-deepgreen::after {
  background-color: #448542;
}

.husky_inner_content {
  font-size: 23px;
  margin: 0;
  letter-spacing: 0.1em;
  font-weight: 300;
  text-align: justify;
}

.husky_inner_feat {
  position: relative;
  padding: 20px;
  background-color: #468440;
  border-radius: 15px;
  margin-top: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.husky_inner_feat h4 {
  color: #fff;
  font-weight: 700;
  font-size: 23px;
  margin-bottom: 13px;
}

.husky_inner_feat ul > li {
  color: #fff;
  padding-left: 20px;
  position: relative;
  font-size: 21px;
  font-weight: 300;
  margin-bottom: 5px;
}

.husky_inner_feat ul > li:last-child {
  margin-bottom: 0;
}

.husky_inner_feat ul > li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #fff;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.husky_inner_feat p {
  color: #468440;
  font-size: 14px;
  margin: 0;
  position: absolute;
  top: 10px;
  left: calc(100% + 10px);
  white-space: nowrap;
}

.husky_deco {
  top: -0.5vw;
  left: 1.6vw;
}

.toto_main_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
  margin-top: 3vw;
}

.toto_main_top .material-inner_list li {
  margin-bottom: 5px;
}

.toto_logo {
  width: 22.66vw;
  margin-right: 2.36vw;
}

.toto-inner_text {
  width: 65%;
}

.toto-inner_pic {
  width: 35%;
}

.toto_feat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 55px;
}

.toto_feat_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 33px;
}

.toto_feat_item > img {
  width: 55px;
  margin-right: 10px;
}

.toto_feat_item > p {
  font-size: 27px;
  font-weight: 300;
  margin: 0;
}

.toto_deco {
  top: 12.34vw;
  right: 1.29vw;
}

.tta_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.54vw;
}

.tta_main_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.tta_main_left {
  width: 90%;
  padding-right: 1.68vw;
}

.tta_main_right {
  width: 10%;
}

.tta_main_right > img {
  width: 100%;
}

.tta_main_table {
  width: 100%;
}

.tta_logo {
  width: 19%;
}

.tta_list {
  width: 31%;
}

.tta_list > div {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.tta_product {
  width: 50%;
}

.tta_title {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 15px;
}

.tta_bird {
  width: 10.32vw;
  top: 4.37vw;
  right: 4.61vw;
}

.waferlock_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.waferlock_main_text {
  width: 70%;
}

.waferlock_main_text_head {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 50px;
}

.waferlock_main_pic {
  width: 30%;
}

.waferlock_main_bird {
  bottom: 1%;
  left: 95%;
}

.waferlock_logo {
  width: 26.35vw;
  margin-bottom: 30px;
}

.waferlock_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 28px 0;
}

.waferlock_inner_pic {
  width: 32%;
}

.waferlock_inner_pic > img {
  width: 100%;
}

.waferlock_inner_text {
  width: 68%;
}

.waferlock_inner_text_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

.waferlock_inner_text h2 {
  font-family: "Noto Serif TC", serif;
  color: rgba(157, 0, 0, 0.19);
  margin: 0 0 0 25px;
  font-size: 23px;
  font-weight: 700;
}

.waferlock_inner_text .material-inner_list {
  padding-left: 110px;
}

.waferlock-inner {
  -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;
}

.waferlock-title {
  position: absolute;
  width: 26.56vw;
  top: 0.1vw;
  right: 0;
}

.waferlock-bird {
  top: 25.94vw;
  right: 8.96vw;
}

.mercury_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mercury_main_pic {
  width: 30%;
}

.mercury_main_pic > img {
  width: 100%;
}

.mercury_main_text {
  width: 70%;
  padding-left: 9%;
}

.mercury_main_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.mercury_main_title_about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 135px 10px 25px;
  background: -webkit-gradient(linear, left top, right top, from(#F29700), to(transparent));
  background: linear-gradient(to right, #F29700 0%, transparent 100%);
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
  margin-right: 10px;
}

.mercury_main_title_about h1 {
  font-size: 29px;
  color: #fff;
  font-weight: 700;
  margin: 0;
  font-family: "Noto Serif TC", serif;
}

.mercury_main_title_triangle {
  width: 6px;
  margin-right: 8px;
}

.mercury_main_title_bird {
  position: absolute;
  width: 9.71vw;
  bottom: -30%;
  left: 70%;
}

.mercury_main_content p {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #9D0000;
  text-align: justify;
  line-height: 1.7;
}

.mercury_main_content p:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: 0;
}

.life {
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.life_main {
  padding-left: 5vw;
  padding-right: 5vw;
  padding-top: 5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.life_btn {
  width: 20%;
}

.life_btn_item {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: linear-gradient(167deg, rgba(156, 197, 79, 0.9) 0%, transparent 100%);
  border: 0;
  margin-bottom: 22px;
  padding: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.life_btn_item h2 {
  font-size: 35px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.life_btn_item p {
  font-size: 15px;
  font-weight: 300;
  color: #429955;
  margin-bottom: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.life_btn_item.active, .life_btn_item:hover {
  background: linear-gradient(167deg, rgba(228, 127, 0, 0.9) 0%, transparent 100%);
}

.life_btn_item.active p, .life_btn_item:hover p {
  color: #ED6A00;
}

.life_btn_item.active .life_btn_border, .life_btn_item:hover .life_btn_border {
  opacity: 0;
}

.life_btn_item.active .life_btn_arrow, .life_btn_item:hover .life_btn_arrow {
  opacity: 1;
}

.life_btn_border {
  width: 50px;
  height: 4px;
  background-color: #93B52B;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.life_btn_arrow {
  width: 33px;
  display: block;
  margin: 0 auto;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.life_btn h3 {
  font-size: 27px;
  font-weight: 300;
  margin: 0;
  color: #ABA7A7;
  margin-top: 25px;
}

.life_map {
  width: 80%;
  position: relative;
}

.life_map > img {
  width: 100%;
}

.life_map_item {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: none;
}

.life_map_item_main {
  width: 100%;
}

.life_map_pin {
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.life_map_pin:hover {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.life_map_traffic-1 {
  width: 7.19%;
  top: 32.5%;
  right: 31.81%;
}

.life_map_traffic-2 {
  width: 1.15%;
  top: 37.56%;
  right: 49.61%;
}

.life_map_traffic-3 {
  width: 1.5%;
  top: 54.7%;
  right: 85.1%;
}

.life_map_life-1 {
  width: 5.4%;
  top: 35%;
  right: 23.6%;
}

.life_map_life-2 {
  width: 4.1%;
  top: 23.85%;
  right: 13.4%;
}

.life_map_life-3 {
  width: 7.1%;
  top: 25.3%;
  right: 89.4%;
}

.life_map_life-4 {
  width: 6.2%;
  top: 24.9%;
  right: 73.8%;
}

.life_map_life-5 {
  width: 1.3%;
  top: 24.8%;
  right: 24.43%;
}

.life_map_life-6 {
  width: 1.3%;
  top: 21.9%;
  right: 25.81%;
}

.life_map_school-1 {
  width: 15.18%;
  top: 64.18%;
  right: 23.76%;
}

.life_map_leisure-1 {
  width: 6.6%;
  top: 7.79%;
  right: 74.26%;
}

.life_map_leisure-2 {
  width: 3.9%;
  top: 58.4%;
  right: 4.1%;
}

.life-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}

.life-popup_inner {
  width: 100%;
  height: 100%;
  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;
}

.life-popup_inner > img {
  width: 60%;
}

.life-popup_swiper {
  width: 60%;
  position: relative;
}

.life-popup_swiper .swiper-slide {
  width: 100%;
  padding-bottom: 66.67%;
  position: relative;
}

.life-popup_swiper .swiper-slide > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.life-popup_swiper .swiper-button-next, .life-popup_swiper .swiper-button-prev {
  width: 16px;
  height: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.life-popup_swiper .swiper-button-next::before, .life-popup_swiper .swiper-button-next::after, .life-popup_swiper .swiper-button-prev::before, .life-popup_swiper .swiper-button-prev::after {
  display: none;
}

.life-popup_swiper .swiper-button-next > img, .life-popup_swiper .swiper-button-prev > img {
  width: 100%;
}

.life-popup_swiper .swiper-button-next {
  right: -40px;
}

.life-popup_swiper .swiper-button-prev {
  left: -40px;
}

.plan {
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.plan_main {
  position: relative;
  padding: 0;
}

.plan_nav {
  position: absolute;
  top: 3vw;
  left: 4.29vw;
}

.plan_nav_item {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.56);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.plan_nav_item.active {
  background-color: #206FB2;
}

.plan_nav_item.active .plan_nav_ch {
  color: #fff;
}

.plan_nav_item.active .plan_nav_en {
  color: rgba(255, 255, 255, 0.25);
}

.plan_nav_item.architecture-mode {
  overflow: hidden;
}

.plan_nav_item.architecture-mode > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}

.plan_nav_item.architecture-mode.light > img.architecture-mode_light {
  display: block;
}

.plan_nav_item.architecture-mode.dark > img.architecture-mode_dark {
  display: block;
}

.plan_nav_ch {
  font-size: 33px;
  font-weight: 700;
  margin: 0;
  color: #37549F;
  margin-bottom: 5px;
}

.plan_nav_en {
  font-family: "Noto Serif TC", serif;
  font-size: 15px;
  color: rgba(32, 111, 178, 0.25);
  margin: 0;
  font-weight: 700;
}

.plan_nav-space .plan_nav_ch {
  margin-bottom: 5px;
  line-height: 1.2;
}

.plan_inner {
  width: 100%;
  height: 100%;
  display: none;
}

.plan_inner.active {
  display: block;
}

.plan_inner .bird {
  position: absolute;
  width: 9.45vw;
  top: 5.85vw;
  right: 0;
}

.plan_inner-architecture {
  position: relative;
}

.plan_inner-architecture > div {
  width: 100%;
  height: 100%;
  position: relative;
  display: none;
}

.plan_inner-architecture > div > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.plan_inner-architecture.mode-light > div.architecture_light {
  display: block;
}

.plan_inner-architecture.mode-dark > div.architecture_dark {
  display: block;
}

.plan_inner-architecture p {
  position: absolute;
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  top: 28px;
  right: 30px;
  color: #fff;
  letter-spacing: 0.1em;
}

.plan_inner-spaceall .compass {
  position: absolute;
  width: 4.88vw;
  top: 6.43vw;
  left: 18.25vw;
}

.plan_inner-spaceall .bird {
  position: absolute;
  width: 9.45vw;
  top: 5.85vw;
  right: 0;
}

.plan_inner-spaceall .map {
  position: absolute;
  width: 72.67vw;
  top: 7.9vw;
  right: 0vw;
}

.plan_inner-spaceall .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  gap: 5px;
  left: 14.52vw;
  bottom: 4.52vw;
}

.plan_inner-spaceall .btns button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 0 22px;
  border: 2px solid #589756;
  border-radius: 13px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.plan_inner-spaceall .btns button img {
  width: 6px;
  position: absolute;
  top: 50%;
  left: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.plan_inner-spaceall .btns button span {
  color: #589756;
  font-size: 33px;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.plan_inner-spaceall .btns button:hover {
  background-color: #589756;
}

.plan_inner-spaceall .btns button:hover img {
  opacity: 1;
}

.plan_inner-spaceall .btns button:hover span {
  color: #fff;
}

.plan_inner-spacetitle {
  position: absolute;
  top: 4.37vw;
  right: 8.88vw;
}

.plan_inner-spacetitle h2 {
  font-size: 43px;
  color: #37549F;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding-bottom: 20px;
  margin-bottom: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #37549F;
  letter-spacing: 0.1em;
  position: relative;
}

.plan_inner-spacetitle h2::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #37549F;
  bottom: -6px;
  left: -12px;
}

.plan_inner-spacetitle h2::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #37549F;
  bottom: -6px;
  right: -12px;
}

.plan_inner-spacetitle p {
  font-size: 15px;
  color: #231815;
  margin: 0;
  text-align: center;
  letter-spacing: 0.08em;
  text-align: right;
}

.plan_inner-spacestandard .compass {
  position: absolute;
  width: 4.88vw;
  top: 6.2vw;
  left: 16.18vw;
}

.plan_inner-spacestandard .map {
  position: absolute;
  width: 47vw;
  top: 7.16vw;
  left: 17.36vw;
}

.plan_inner-spacestandard .map-base {
  width: 100%;
}

.plan_inner-spacestandard .map-item {
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.plan_inner-spacestandard .map-item_main {
  width: 100%;
}

.plan_inner-spacestandard .map-item_text {
  position: absolute;
  width: 1.84vw;
}

.plan_inner-spacestandard .map-item:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  z-index: 5;
}

.plan_inner-spacestandard .map .balcony {
  position: absolute;
  width: 5.02%;
  top: 33.42%;
  left: 9.37%;
}

.plan_inner-spacestandard .map-b6 {
  width: 18.2%;
  top: 10.51%;
  left: 14.55%;
}

.plan_inner-spacestandard .map-b6 .map-item_text {
  top: 68%;
  left: 47%;
}

.plan_inner-spacestandard .map-b7 {
  width: 15.2%;
  top: 5.29%;
  left: 32.4%;
}

.plan_inner-spacestandard .map-b7 .map-item_text {
  top: 55.94%;
  left: 68%;
}

.plan_inner-spacestandard .map-b1 {
  width: 19.5%;
  top: 24.9%;
  left: 15.8%;
}

.plan_inner-spacestandard .map-b1 .map-item_text {
  top: 18%;
  left: 37%;
}

.plan_inner-spacestandard .map-b2 {
  width: 16.2%;
  top: 26.1%;
  left: 32.5%;
}

.plan_inner-spacestandard .map-b2 .map-item_text {
  top: 41%;
  left: 4%;
}

.plan_inner-spacestandard .map-b8 {
  width: 15.19%;
  top: 5.36%;
  left: 61.08%;
}

.plan_inner-spacestandard .map-b8 .map-item_text {
  top: 57%;
  left: 6%;
}

.plan_inner-spacestandard .map-b9 {
  width: 17.9%;
  top: 10.64%;
  left: 76.07%;
}

.plan_inner-spacestandard .map-b9 .map-item_text {
  top: 72%;
  left: 32%;
}

.plan_inner-spacestandard .map-b3 {
  width: 16.2%;
  top: 26.2%;
  left: 60.27%;
}

.plan_inner-spacestandard .map-b3 .map-item_text {
  top: 41%;
  left: 70%;
}

.plan_inner-spacestandard .map-b5 {
  width: 19%;
  top: 26.1%;
  left: 73.8%;
}

.plan_inner-spacestandard .map-b5 .map-item_text {
  top: 12%;
  left: 44%;
}

.plan_inner-spacestandard .map-a1 {
  width: 19.39%;
  top: 56.75%;
  left: 15.86%;
}

.plan_inner-spacestandard .map-a1 .map-item_text {
  top: 63%;
  left: 34%;
}

.plan_inner-spacestandard .map-a2 {
  width: 20.07%;
  top: 56.75%;
  left: 32.47%;
}

.plan_inner-spacestandard .map-a2 .map-item_text {
  top: 30%;
  left: 3%;
}

.plan_inner-spacestandard .map-a7 {
  width: 15.1%;
  top: 76.7%;
  left: 32.47%;
}

.plan_inner-spacestandard .map-a7 .map-item_text {
  top: 20%;
  left: 69%;
}

.plan_inner-spacestandard .map-a6 {
  width: 17.9%;
  top: 72.03%;
  left: 14.64%;
}

.plan_inner-spacestandard .map-a6 .map-item_text {
  top: 5%;
  left: 44%;
}

.plan_inner-spacestandard .map-a8 {
  width: 15.15%;
  top: 76.7%;
  left: 61.08%;
}

.plan_inner-spacestandard .map-a8 .map-item_text {
  top: 20%;
  left: 6%;
}

.plan_inner-spacestandard .map-a9 {
  width: 17.97%;
  top: 72.1%;
  left: 76.1%;
}

.plan_inner-spacestandard .map-a9 .map-item_text {
  top: 2%;
  left: 36%;
}

.plan_inner-spacestandard .map-a5 {
  width: 19.12%;
  top: 56.8%;
  left: 73.8%;
}

.plan_inner-spacestandard .map-a5 .map-item_text {
  top: 62%;
  left: 46%;
}

.plan_inner-spacestandard .map-a3 {
  width: 21.49%;
  top: 56.8%;
  left: 56%;
}

.plan_inner-spacestandard .map-a3 .map-item_text {
  top: 36%;
  left: 73%;
}

.plan_inner-floor .compass {
  position: absolute;
  width: 4.88vw;
  top: 4.79vw;
  left: 15.85vw;
}

.plan_inner-floor .bird {
  position: absolute;
  width: 9.45vw;
  top: 5.85vw;
  right: 0;
}

.plan_inner-floor .map {
  position: absolute;
  width: 245px;
  top: 16.73vw;
  right: 10.44vw;
}

.plan_inner-floor .map_room {
  cursor: pointer;
}

.plan_inner-floor .map_room path, .plan_inner-floor .map_room polygon {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.plan_inner-floor .map_room:hover .map_fill, .plan_inner-floor .map_room.active .map_fill {
  fill: #206FB2;
}

.plan_inner-floor .map_room:hover .map_text path, .plan_inner-floor .map_room.active .map_text path {
  fill: #fff;
}

.plan_inner-floor .floor-pic_item {
  position: absolute;
  width: 48vw;
  top: 7vw;
  left: 15vw;
  display: none;
}

.plan_inner-floor .floor-pic_item.active {
  display: block;
}

.plan_inner-floor .floor-pic_item#floor-pic-a1 {
  top: 0;
}

.plan_inner-floor .floor-pic_item#floor-pic-a2 {
  top: 4.5vw;
}

.plan_inner-floor .floor-pic_item#floor-pic-a5 {
  top: 4.5vw;
}

.plan_inner-floor .floor-pic_item#floor-pic-a8 {
  top: 5vw;
}

.plan_inner-floor .floor-pic_item#floor-pic-b2 {
  top: 5vw;
}

.plan_inner-floor .floor-pic_item#floor-pic-b6 {
  top: 9vw;
}

.plan_inner-floor .floor-pic_item#floor-pic-b8 {
  top: 5vw;
}

.plan_inner-floor .floor-size {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #87b941;
  right: 10.46vw;
  bottom: 19.7vw;
}

.plan_inner-floor .floor-size img {
  width: 10px;
}

.plan_inner-floor .floor-size_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.plan_inner-floor .floor-size_room {
  font-size: 38px;
  font-weight: 700;
  color: #206fb2;
  padding-right: 11px;
  position: relative;
  line-height: 1;
}

.plan_inner-floor .floor-size_room::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 22px;
  background-color: #206fb2;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.plan_inner-floor .floor-size_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-left: 11px;
}

.plan_inner-floor .floor-size_content p {
  line-height: 1;
  margin: 0;
}

.plan_inner-floor .floor-size_content .num {
  color: #206fb2;
  font-size: 32px;
  font-weight: 700;
}

.plan_inner-floor .floor-size_content .unit {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #206fb2;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  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;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.plan_inner-realpic .realpic_main {
  position: absolute;
  width: 57.05vw;
  top: 5.68vw;
  left: 20.26vw;
}

.plan_inner-realpic .realpic_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.82vw;
  margin-bottom: 3.11vw;
}

.plan_inner-realpic .realpic_btn a {
  width: 143px;
  height: 143px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  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;
  position: relative;
  color: #E96600;
  font-size: 29px;
  font-weight: 700;
  text-align: center;
}

.plan_inner-realpic .realpic_btn a > span {
  line-height: 1.3;
}

.plan_inner-realpic .realpic_btn a .num {
  font-size: 37px;
}

.plan_inner-realpic .realpic_btn a img {
  width: 35%;
}

.plan_inner-realpic .realpic_btn a::after {
  position: absolute;
  content: "";
  width: 110%;
  height: 110%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.plan_inner-realpic .realpic_pic {
  width: 100%;
}

.plan_inner-pic-3d .pic-3d_main {
  width: 100%;
  height: 100%;
}

.plan_inner-pic-3d .pic-3d_tab {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  left: 4.29vw;
  bottom: 4.76vw;
}

.plan_inner-pic-3d .pic-3d_tab button {
  width: 140px;
  height: 50px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.57);
  font-size: 17px;
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
  font-size: 17px;
  background-color: transparent;
  text-align: center;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.plan_inner-pic-3d .pic-3d_tab button.active {
  background-color: rgba(255, 255, 255, 0.57);
  color: #231815;
  text-shadow: none;
}

.plan_inner-pic-3d .pic-3d_tab button small {
  font-size: 10px;
}

.plan_inner-pic-3d .pic-3d_pic {
  width: 100%;
  height: 100%;
}

.plan_inner-pic-3d .pic-3d_pic_item {
  position: relative;
  width: 100%;
  height: 100%;
  display: none;
}

.plan_inner-pic-3d .pic-3d_pic_item > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.plan_inner-pic-3d .pic-3d_pic_item > p {
  position: absolute;
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  top: 28px;
  right: 30px;
  color: #fff;
  letter-spacing: 0.1em;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.75);
}

.plan_inner-pic-3d .pic-3d_pic_item.active {
  display: block;
}

.plan_space_nav {
  padding-left: 23px;
  margin-bottom: 35px;
  position: relative;
  display: none;
}

.plan_space_nav li {
  font-size: 23px;
  margin-bottom: 20px;
  color: #37549F;
  padding-left: 20px;
  position: relative;
  cursor: pointer;
}

.plan_space_nav li:last-child {
  margin-bottom: 0;
}

.plan_space_nav li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #37549F;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.plan_space_nav li.active {
  color: #E96600;
}

.plan_space_nav li.active::before {
  background-color: #E96600;
}

.plan_space_nav::before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% - 33px);
  top: 50%;
  left: 27px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #37549F;
}

.plan-basement_title {
  width: 400px;
}

.plan-basement .inner_bg {
  background-image: url(../img/basement-bg.webp);
}

.plan-basement .inner_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.plan-basement .inner_title_ch {
  border-radius: 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(29, 89, 169, 0)), color-stop(48%, #1D59A9), to(#1D59A9));
  background: linear-gradient(to left, rgba(29, 89, 169, 0) 0%, #1D59A9 48%, #1D59A9 100%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.plan-basement .inner_title_ch h1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.plan-basement .inner_title_ch h1::before {
  display: none;
}

.plan-basement .inner_remark {
  position: absolute;
  font-size: 16px;
  font-weight: 300;
  top: calc(8.48vw + 104px);
  left: 8vw;
}

.plan-basement_map {
  width: 100%;
}

.plan-basement_swiper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 63.75vw;
}

.plan-basement_link {
  position: absolute;
  width: 1.85vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.plan-basement_link > img {
  width: 100%;
}

.plan-basement_link:hover {
  -webkit-transform: translateY(-50%) scale(1.2);
          transform: translateY(-50%) scale(1.2);
}

.plan-basement_link.prev {
  left: 1.3vw;
}

.plan-basement_link.next {
  right: 1.5vw;
}

.popup-basement {
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url(../img/material-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  display: none;
}

.popup-basement .btn-close {
  position: absolute;
  width: 70px;
  right: 2vw;
  bottom: 2vw;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.popup-basement .btn-close:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.craftsmanship {
  background-image: url(../img/material-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.craftsmanship_main {
  width: 80%;
  margin: 0 auto;
  padding-top: 5.72vw;
}

.craftsmanship_main .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.craftsmanship_main .row > div {
  padding-left: 40px;
  padding-right: 40px;
  width: 33.3333%;
}

.craftsmanship_main .title {
  margin-bottom: 6.19vw;
}

.craftsmanship_main .bird {
  position: absolute;
  width: 12.19vw;
  top: 6.91vw;
  right: 5.22vw;
}

.craftsmanship_item {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px #fff;
          box-shadow: 0 0 10px #fff;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.craftsmanship_item > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.craftsmanship_item::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 90%;
  border-radius: 50%;
  border: 1px solid #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.craftsmanship_item_title {
  position: absolute;
  padding: 12px 0 12px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#25488C), to(transparent));
  background: linear-gradient(to right, #25488C 0%, transparent 100%);
  left: -7%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
}

.craftsmanship_item_title h3 {
  color: #fff;
  font-size: 41px;
  font-weight: 700;
  margin: 0 20px 0 0;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.craftsmanship_item_title h4 {
  font-size: 12px;
  color: #fff;
  margin: 0;
  font-weight: 700;
  font-family: "Noto Serif TC", serif;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.craftsmanship_item_title::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 26.35px;
  background-image: url(../img/craft-triangle.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  opacity: 0;
}

.craftsmanship_item:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.craftsmanship_item:hover .craftsmanship_item_title {
  background: -webkit-gradient(linear, left top, right top, from(#e95514), to(transparent));
  background: linear-gradient(to right, #e95514 0%, transparent 100%);
}

.earthquake_inner {
  background-image: url(../img/earthquake-bg.webp);
  padding-left: 0;
  padding-right: 0;
}

.earthquake_rebar {
  padding-left: 1.14vw;
  padding-right: 9.67vw;
}

.earthquake_rebar_pic {
  width: 56%;
}

.earthquake_rebar_pic > img {
  width: 100%;
}

.earthquake_rebar_text {
  width: 44%;
  padding-left: 60px;
}

.earthquake_rebar_textItem {
  margin: 25px 0;
}

.earthquake_rebar_textItem .inner_innerTitle-wrap::after {
  width: calc(100% - 225px - 25px);
}

.earthquake_rebar .inner_innerTitle {
  margin-bottom: 25px;
}

.earthquake_rebar .inner_list {
  font-size: 28px;
}

.earthquake_rebar .inner-flex {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.earthquake_rebar_bird {
  top: 17.13vw;
  right: 0;
}

.earthquake_basic {
  padding-left: 7.43vw;
  padding-right: 7.43vw;
}

.earthquake_basic_text {
  width: 51%;
  padding-right: 55px;
}

.earthquake_basic_pic {
  width: 49%;
}

.earthquake_basic_pic > img {
  width: 100%;
}

.earthquake_basic_bird {
  top: 12.35vw;
  left: 48vw;
}

.hollow_inner {
  background-image: url(../img/hollow-bg.webp);
  padding-left: 6.93vw;
  padding-right: 6.93vw;
  padding-top: 8vw;
}

.hollow_inner .inner_info {
  padding: 10px 20px;
  margin-bottom: 30px;
  margin-top: 0;
}

.hollow_inner .inner_info li {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0;
}

.hollow_inner .inner_list {
  margin-bottom: 25px;
}

.hollow_inner .inner_list li {
  font-size: 28px;
}

.hollow_inner .inner_list li span::after {
  width: 1px;
}

.hollow_inner p {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 25px;
}

.hollow_inner .line {
  width: 100%;
  height: 0.5px;
  background-color: #000000;
  margin-bottom: 50px;
}

.hollow_text {
  width: 49%;
  padding-right: 100px;
}

.hollow_pic {
  width: 51%;
}

.hollow_pic > img {
  width: 100%;
}

.hollow_bottomText .inner_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 65px;
  margin: 5px 0;
}

.hollow_bottomText .inner_list li {
  white-space: nowrap;
  margin: 0;
}

.waterproof_inner {
  padding-left: 0;
  padding-right: 0;
}

.waterproof_inner .inner_tabContent_item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-left: 7.12vw;
  padding-right: 7.12vw;
  padding-top: 8vw;
}

.waterproof_content {
  font-size: 28px;
  font-weight: 300;
  padding-bottom: 50px;
  margin-bottom: 45px;
  line-height: 1.7;
  position: relative;
}

.waterproof_content::after {
  position: absolute;
  content: "";
  height: 1px;
  background-color: #005EAD;
  left: 0;
  bottom: 0;
}

.waterproof_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 15px;
  padding-bottom: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #005EAD;
  position: relative;
  margin-bottom: 55px;
}

.waterproof_title h3 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #231815;
  line-height: 1;
}

.waterproof_title h4 {
  font-family: "Noto Serif TC", serif;
  line-height: 1;
  color: #005EAD;
  font-size: 21px;
  font-weight: 700;
}

.waterproof_title::after {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #005EAD;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.waterproof_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  margin-bottom: 27px;
}

.waterproof_list li span {
  font-size: 28px;
  font-weight: 300;
  white-space: nowrap;
}

.waterproof_list li:last-child {
  margin-bottom: 0;
}

.waterproof_list_num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  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;
  font-size: 28px;
  font-weight: 900;
  line-height: 32px;
  color: #fff;
}

.waterproof_roof {
  background-image: url(../img/waterproof-bg.webp);
}

.waterproof_roof_text {
  width: 35%;
}

.waterproof_roof_text .waterproof_list li:nth-child(odd) .waterproof_list_num {
  background-color: #005EAD;
}

.waterproof_roof_text .waterproof_list li:nth-child(even) .waterproof_list_num {
  background-color: #56833B;
}

.waterproof_roof_pic {
  width: 65%;
}

.waterproof_roof_pic > img {
  width: 100%;
}

.waterproof_roof_bird {
  bottom: 2.41vw;
  right: 22.65vw;
}

.waterproof_wall {
  background-image: url(../img/waterproof-bg.webp);
}

.waterproof_wall_text {
  width: 47%;
}

.waterproof_wall_pic {
  width: 53%;
}

.waterproof_wall_pic > img {
  width: 100%;
}

.waterproof_wall_bird {
  bottom: 2.41vw;
  right: 22.65vw;
}

.waterproof_bathroom {
  background-image: url(../img/waterproof-bg.webp);
}

.waterproof_bathroom_text {
  width: 50%;
}

.waterproof_bathroom_pic {
  width: 50%;
}

.waterproof_bathroom_pic > img {
  width: 100%;
}

.waterproof_bathroom_bird {
  bottom: 2.41vw;
  right: 22.65vw;
}

.waterproof_exhaust {
  background-image: url(../img/waterproof-bg-2.webp);
}

.waterproof_exhaust_text {
  width: 49%;
  padding-right: 90px;
}

.waterproof_exhaust_text .waterproof_list_num {
  background-color: #F7B21D;
}

.waterproof_exhaust_pic {
  width: 51%;
}

.waterproof_exhaust_pic > img {
  width: 100%;
}

.waterproof_exhaust_bird {
  bottom: 2.15vw;
  right: 34.53vw;
}

.waterproof_exhaust .waterproof_content::after {
  width: 85%;
}

.waterproof_pipe {
  background-image: url(../img/waterproof-bg-2.webp);
}

.waterproof_pipe_text {
  width: 49%;
  padding-right: 130px;
}

.waterproof_pipe_pic {
  width: 51%;
}

.waterproof_pipe_pic > img {
  width: 100%;
}

.waterproof_pipe_bird {
  bottom: 13vw;
  left: 32.05vw;
}

.waterproof_pipe .waterproof_content::after {
  width: 66%;
}
/*# sourceMappingURL=style.css.map */