/* Banner */
.Banner_area {
  position: relative;
  height: calc(100vh - 86px);
  height: calc(100dvh - 86px);
}

.Banner_area .swiper {
  background: none;
  overflow: unset;
}

.bannerWrap {
  margin-top: 75px;
}

.banSwiper {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banSwiper .swiper-slide {
  position: relative;
  overflow: visible;
  width: 100%;
  height: 100%;
}

.banSwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.banSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: url(#banner);
}

.banSwiper .ban_imgBox {
  width: 100%;
  height: 100%;
}

.banSwiper .contentWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 35%;
  transform: translate(-50%, -50%);
}

.banSwiper .contentWrap .ban_txtBox {
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  color: var(--whiteColor);
  text-shadow: 6px 6px 8px rgba(0, 0, 0, 0.8);
}

/* .banSwiper .contentWrap .ban_txtBox {
  z-index: 1;
  animation: slideFadeIn 3s ease-out forwards;
}
@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
} */

/* .banner-swiper-button-prev:after {
  background: url(../images/idx_banner_left.svg) center no-repeat;
}

.banner-swiper-button-next:after {
  background: url(../images/idx_banner_right.svg) center no-repeat;
} */

.Banner_area .swiper-pagination.swiper-pagination-bullets {
  bottom: 2.5rem;
  left: -21%;
}

.Banner_area .btn_box {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: 2;
}

@media screen and (min-width: 1440px) {
  .banSwiper .contentWrap .ban_txtBox h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
  .banSwiper .contentWrap .ban_txtBox h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1720px) {
  .Banner_area .btn_box {
    flex-direction: column;
    bottom: -6.5rem;
  }
}

@media screen and (max-width: 991px) {
  .banSwiper .contentWrap {
    display: flex;
    justify-content: center;
    width: 90%;
    transform: translate(5%, -20%);
    left: 0;
  }
  .banSwiper .contentWrap .ban_txtBox h1 {
    text-align: center;
  }
  .banSwiper .contentWrap .btnBox {
    margin-left: 1rem;
    z-index: 1;
  }
  .banSwiper .swiper-slide img {
    clip-path: none;
  }
  .Banner_area .btn_box {
    position: relative;
    align-items: center;
    right: 0;
    bottom: -2.5rem;
  }
  .Banner_area .swiper-pagination.swiper-pagination-bullets {
    left: 0;
  }
}

@media screen and (max-width: 768px) {
  .banSwiper .contentWrap {
    top: 30%;
  }
  .banSwiper .contentWrap .ban_txtBox h1 {
    font-size: 2rem;
  }
  .banSwiper .contentWrap .ban_txtBox h1 br {
    display: none;
  }
}

/* 最新消息 */
.news_area {
  position: relative;
}
.news_area img {
  width: 95%;
}
.news_area .swiperBox {
  left: 30%;
  bottom: 31%;
  transform: translateX(0%);
}
.news_area .item_container .item {
  position: relative;
  flex-flow: column nowrap;
  align-items: center;
  padding: 2rem 1.5rem;
  transition: 0.3s all ease;
}
.news_area .item_container .item:hover::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 85%;
  height: 100%;
  border-radius: 1em;
  background-color: var(--mainColor);
  z-index: -1;
}
.news_area .item_container .item h3 {
  font-size: 2.25rem;
  color: var(--greenColor);
}
.news_area .item_container .item .img_wrapper {
  width: 100%;
  height: 210px;
  border-radius: 0.5em;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.news_area .item_container .item .img_wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1);
  transition: 0.3s all ease;
}
.news_area .item_container .item:hover .img_wrapper img {
  transform: scale(1.1);
}
.news_area .item_container .item span {
  display: inline-block;
  width: 55px;
  font-size: 1rem;
  padding-left: 0.25rem;
}
.news_area .item_container .item > *:not(img) {
  width: 80%;
}
.news_area .item_container .item h4 {
  font-weight: 700;
  margin: 1rem 0;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news_area .item_container .item p {
  color: var(--grayTextColor);
  margin-bottom: 0;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news_area .item_container .item:hover * {
  color: var(--whiteColor);
}
.news-swiper-pagination {
  position: relative;
  width: 100% !important;
  height: 2px;
  margin: 4rem 0.5rem 0;
  border-radius: 2px;
  background: var(--black20);
  overflow: visible;
}
.news-swiper-pagination .swiper-pagination-progressbar-fill {
  height: 6px;
  border-radius: 0.25em;
  background: var(--mainColor);
}
@media screen and (max-width: 1260px) {
  .news_area .swiperBox {
    left: 26%;
  }
}
@media screen and (max-width: 991px) {
  .news_area {
    padding-top: 17rem;
  }
  .news_area img {
    display: none;
  }
  .news_area .item_container .item > *:not(img),
  .news_area .item_container .item:hover::after {
    width: 100%;
  }
  .news-swiper-pagination {
    display: none;
  }
  .news_area .swiperBox {
    bottom: 5%;
    left: 47%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .news_area .swiperBox {
    left: 43%;
  }
}

/* 永續績效 */
.per_area {
  position: relative;
}
.per_area .nav-pills {
  position: absolute;
  top: 15%;
  left: 3rem;
  width: fit-content;
  transform: translateY(100%);
  z-index: 1;
}
.per_area .nav-pills .nav-link.active,
.per_area .nav-pills .show > .nav-link {
  color: var(--whiteColor);
}
.per_area .tab-content {
  color: var(--whiteColor);
}
.per_area #per1,
.per_area #per2,
.per_area #per3,
.per_area #per4 {
  position: relative;
  min-height: 860px;
  clip-path: url(#per_area);
}
.per_area #per1 {
  background: url("../images/idx_per_bg1.jpg") center no-repeat;
}
.per_area #per2 {
  background: url("../images/idx_per_bg2.jpg") center no-repeat;
}
.per_area #per3 {
  background: url("../images/idx_per_bg3.jpg") center no-repeat;
}
.per_area #per4 {
  background: url("../images/idx_per_bg4.jpg") center no-repeat;
}
.per_area #per1::before,
.per_area #per2::before,
.per_area #per3::before,
.per_area #per4::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(6px) brightness(1.1);
  -webkit-backdrop-filter: blur(6px) brightness(1.1);
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.per_area #per1::after,
.per_area #per2::after,
.per_area #per3::after,
.per_area #per4::after {
  content: "";
  position: absolute;
  right: 3rem;
  top: 3rem;
  width: 20%;
  height: 70%;
  background-position: (0, 0);
  opacity: 0.3;
  z-index: 2;
}
.per_area #per1::after {
  background: url(../images/idx_per_img1.png) top right no-repeat;
  background-size: contain;
}
.per_area #per2::after {
  background: url(../images/idx_per_img2.png) top right no-repeat;
  background-size: contain;
}
.per_area #per3::after {
  background: url(../images/idx_per_img3.png) top right no-repeat;
  background-size: contain;
}
.per_area #per1 > *,
.per_area #per2 > *,
.per_area #per3 > *,
.per_area #per4 > * {
  position: relative;
  z-index: 2;
}
.per_area .swiper,
.per_area .swiper-wrapper,
.per_area .swiper-slide {
  height: 100%;
}
.per_area .tab-content .item_container {
  transform: translateY(56%);
}
.per_area .tab-content .item_container .item {
  width: auto;
  padding: 2rem 1rem;
  border-radius: 20px;
  min-height: 254px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* .per_area .tab-content .item_container h2 {
  text-shadow: 0 0 6px #000;
} */
.per_area .tab-content .item_container p {
  margin-bottom: 2rem;
  /* text-shadow: 0 0 6px #000; */
}
.per_area .tab-content .item_container .item h4 {
  margin-bottom: 1.5rem;
  /* text-shadow: 0 0 10px #646464; */
}
.per_area .tab-content .item_container .item span {
  display: block;
  font-size: 1.25rem;
  color: var(--whiteColor);
  /* text-shadow: 0 0 10px #646464; */
}
.per_area .tab-content .item_container .item h3 {
  font-size: 2.25rem;
  margin-bottom: 0;
  /* color: #fff3d1;
  text-shadow: 0 0 5px #ffb900; */
}
.per_area .swiper-pagination {
  bottom: -35%;
  transform: translateY(-100%);
}
.per_area .swiperBox {
  text-align: center;
  bottom: -16%;
  z-index: 99;
}
.per_area .swiperBox .swiper-button-next,
.per_area .swiperBox .swiper-button-prev {
  color: var(--whiteColor);
  border: 1px solid var(--whiteColor);
  background: none;
}
.per_area .swiperBox .swiper-button-next:hover,
.per_area .swiperBox .swiper-button-prev:hover {
  background: var(--mainColor);
  border: 1px solid var(--mainColor);
  color: var(--whiteColor);
}
@media screen and (max-width: 1720px) {
  .per_area .nav-pills {
    top: 11%;
    width: 45%;
    overflow: scroll;
  }
  .per_area .nav-pills .nav-link {
    max-width: max-content;
    width: 200px;
    font-size: 1.2rem;
    padding: 0.75rem 3rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 1560px) {
  .per_area .tab-content .item_container {
    transform: translateY(50%);
  }
}
@media screen and (max-width: 1260px) {
  .per_area .nav-pills {
    top: 13%;
    width: 40%;
  }
  .per_area .tab-content .item_container {
    transform: translateY(40%);
  }
}
@media screen and (max-width: 991px) {
  .per_area .tab-content .item_container {
    transform: translateY(34%);
  }
}
@media screen and (max-width: 768px) {
  .per_area #per1,
  .per_area #per2,
  .per_area #per3,
  .per_area #per4 {
    clip-path: border-box;
  }
  .per_area #per1::after,
  .per_area #per2::after,
  .per_area #per3::after,
  .per_area #per4::after {
    right: 2rem;
    width: 40%;
    z-index: 1;
  }
  .per_area .nav-pills {
    position: relative;
    top: -1rem;
    left: 1rem;
    width: 92%;
    transform: none;
  }
  .per_area .tab-content .item_container {
    transform: translateY(8%);
  }
  .per_area .swiperBox {
    bottom: -9%;
  }
}

/* 榮譽成就 */
.ach_area {
  position: relative;
  background: url(../images/bg.png) bottom center no-repeat;
  overflow: hidden;
}
.ach_area img {
  transform: translateX(-10%);
}
.ach_area .content {
  margin: 3rem 0;
}
.ach_area .content .item_container a {
  position: relative;
  cursor: auto;
  cursor: pointer;
}
.ach_area .content .item_container a .item {
  flex-flow: column nowrap;
  align-items: center;
  min-height: 300px;
  padding: 1.5rem 1.25rem;
  border-radius: 1em;
  transition: 0.3s all ease;
  clip-path: url(#ach_area);
  background-color: var(--whiteColor);
}
.ach_area .content .item_container a:hover .item {
  background-color: var(--mainColor);
}
.ach_area .content .item_container a .item h4 {
  font-size: 1.25rem;
  color: var(--mainColor);
}
.ach_area .content .item_container a .item p {
  color: var(--grayTextColor);
  margin-bottom: 0;
}
.ach_area .content .item_container a:hover .item * {
  color: var(--whiteColor);
}
.ach_area .content .item_container a .btn_circle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65px;
  height: 65px;
}
.ach_area .content .item_container a .btn_circle i {
  color: var(--whiteColor);
}
.ach_area .swiperBox {
  bottom: 5.5rem;
}
@media screen and (max-width: 991px) {
  .ach_area {
    background-color: var(--orangeColor2);
    padding-bottom: 6rem;
  }
  .ach_area img {
    transform: translate(0%, 15%);
  }
  .ach_area .content {
    margin: 1rem 0;
  }
  .ach_area .swiperBox {
    bottom: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .ach_area .content {
    order: 1;
  }
  .ach_area .col-12:not(.content) {
    order: 2;
  }
  .ach_area .swiperBox {
    position: relative;
    top: 2rem;
  }
}

/* 永續報告書 */
.esg_area .report {
  display: flex;
  gap: 2rem;
  height: 540px;
  padding-right: 4rem;
}
/* .esg_area .report .item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.esg_area .report .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--mainColor);
  clip-path: url(#esg_area);
  z-index: -1;
}
.esg_area .report img {
  position: relative;
  width: 90%;
  height: 90%;
  clip-path: url(#esg_area);
} */

.esg_area .report .item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
}
.esg_area .report .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--mainColor);
  clip-path: url(#esg_area);
  z-index: -1;
}
.esg_area .report .item:hover::after {
  background: var(--mainColor);
}
.esg_area .report .item .img_box {
  position: relative;
  width: 90%;
  height: 90%;
  object-fit: cover;
  overflow: hidden;
  clip-path: url(#esg_area);
}
.esg_area .report .item img {
  transform: scale(1.1);
  transition: all 0.3s ease;
}
.esg_area .report .item:hover img {
  transform: scale(1.2);
}
.esg_area .item_container .item .btn_circle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
}
.esg_area .item_container .item .btn_circle i {
  color: var(--whiteColor);
}
.esg_area .tab-content {
  width: 100%;
  margin-top: 1rem;
}
.esg_area .tab-content a {
  position: relative;
  display: block;
  font-weight: 700;
  padding: 1.5rem 1rem;
}
.esg_area .tab-content a:nth-child(n + 2) {
  display: flex;
  flex-flow: column;
  border-top: 1px solid var(--black40);
}
.esg_area .tab-content a:nth-child(4)::before {
  content: "\e628";
}
.esg_area .tab-content a::before {
  content: "\e6a7";
  font-family: "themify";
  position: absolute;
  top: 26px;
  right: 18px;
  font-size: 1.25rem;
  font-weight: normal;
  z-index: 1;
}
.esg_area .tab-content a:hover::before {
  color: var(--whiteColor);
}
.esg_area .tab-content a:hover::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--mainColor);
}
@media screen and (max-width: 1560px) {
  .esg_area .report {
    height: auto;
  }
}
@media screen and (max-width: 1440px) {
  .esg_area .nav-pills {
    overflow: scroll;
  }
}
@media screen and (max-width: 1200px) {
  .esg_area .report {
    justify-content: center;
    height: 480px;
    padding-right: 0;
    margin-bottom: 3rem;
  }
  .esg_area .report .item {
    width: 40%;
  }
  .esg_area .tab-content {
    margin-top: 0;
  }
}
@media screen and (max-width: 991px) {
  .esg_area .report {
    padding-right: 0;
    height: auto;
  }
  .esg_area .item_container .item .btn_circle {
    width: 55px;
    height: 55px;
    bottom: -6px;
  }
  .esg_area .nav-pills {
    margin-bottom: 0 !important;
  }
  .esg_area .tab-content {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .esg_area .report {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
  }
  .esg_area .report .item {
    width: 80%;
  }
}

/* 背景 */
.bg_area {
  position: relative;
  padding-top: 8rem;
  background: url(../images/bg.png) top center no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .bg_area {
    padding-top: 4rem;
  }
}
