@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Overpass&family=Tilt+Warp&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans TC', sans-serif;
  background-color: #ededed;
  padding-top: 80px;
  line-height: 1.4;
}

body.active {
  overflow: hidden;
}

.w-100 {
  width: 100% !important;
}

b {
  font-weight: 700 !important;
}

.text-center {
  text-align: center !important;
}

.w-100 {
  width: 100%;
}

.p-0 {
  padding: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 10px !important;
}

.mb-6 {
  margin-bottom: 60px !important;
}

.img-popup {
  width: 100%;
  height: 100dvh;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  overflow: auto;
}

.img-popup.active {
  display: block;
}

.img-close {
  display: inline-block;
  width: 3vw;
  height: 3vw;
  position: fixed;
  top: 2vw;
  right: 2vw;
  border-radius: 50%;
  background-color: #fff;
  z-index: 99999;
  overflow: hidden;
  background-image: url(../images/close.svg);
  background-repeat: no-repeat;
  background-size: 60% auto;
  background-position: center center;
}

.img-content {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  padding: 0;
}

.img-main {
  width: 100%;
  height: auto;
  opacity: 0;
}

.img-popup.active .img-main {
  animation: imgUp 0.5s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes imgUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.history-box {
  list-style-type: none;
  padding: 0 !important;
  margin: 0;
}

.history-box>li {
  display: flex;
  align-items: stretch;
}

.history-year {
  width: 120px;
  text-align: center;
  color: #000;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.history-line {
  width: 32px;
  border-left: solid 2px #000;
  position: relative;
}

.history-line::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #EDEDED;
  border: solid 3px #000;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -6px;
  z-index: 3;
}

.history-info {
  width: calc(100% - 152px);
  border-radius: 8px;
  background-color: #FFF;
  margin-bottom: 34px;
  padding: 20px;
}

.history-col span {
  display: inline-block;
  margin-right: 6px;
}

.history-line.fix {
  border-color: transparent;
}

.history-col {
  display: flex;
}

.history-col ul {
  margin-bottom: 0 !important;
  padding-left: 1.5em;
}

.go-back {
  color: #000;
  font-size: 1.52vw;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.55vw 1.1vw;
  background-color: #FED43F;
  z-index: 9;
  text-decoration: none;
}

.go-back span {
  display: inline-block;
  margin-right: 0.55vw;
  width: 2.08vw;
  height: 1.38vw;
  background-image: url(../images/prev.svg);
  background-repeat: no-repeat;
  background-size: auto 1.38vw;
  background-position: center left 0.7vw;
  transition: background-position 0.3s;
}

.go-back:hover span {
  background-position: center left;
}

.tab-header {
  text-align: right;
  margin-bottom: 42px;
}

.report-item {
  border-bottom: solid 1px #ccc;
  padding: 28px 0;
  display: flex;
  flex-wrap: wrap;
}

.report-year {
  width: 100%;
  color: #000;
  font-size: 1.66vw;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.report-url {
  color: #000;
  font-size: 1.66vw;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-right: 32px;
}

.report-url span {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding-left: 1.66vw;
  background-image: url(../images/file.svg);
  background-size: 1.38vw auto;
  background-repeat: no-repeat;
  background-position: center left;
  border-bottom: solid 1px transparent;
  position: relative;
}

.report-url:hover span {
  border-bottom: solid 1px #000;
}

.dividends-item {
  display: flex;
  margin: 0 -2px;
}

.dividends-col {
  width: 20%;
  padding: 0 2px;
}

.dividends-name {
  padding: 2px 8px;
  background: #F34C50;
  text-align: center;
  color: #EDEDED;
  font-size: 0.97vw;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.dividends-info {
  padding: 8px;
  background: #F7C9C0;
  color: #262626;
  font-size: 1.125vw;
  font-weight: 400;
  letter-spacing: 0.72px;
}

.out-link {
  color: #000;
  font-size: 1.1vw;
  font-weight: 400;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding-right: 24px;
  background-image: url(../images/link.svg);
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: center right;
  border-bottom: solid 1px transparent;
}

.out-link:hover {
  border-bottom: solid 1px #000;
}

.modal-mask {
  display: none;
  width: 100%;
  height: 100dvh;
  padding: 60px 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-mask.active {
  display: flex;
}

.modal-body {
  width: 68%;
  border-top: 4px solid #F34C50;
  background: #EDEDED;
  padding: 60px 20px 20px 20px;
  position: relative;
}

.modal-close {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../images/bclose.svg);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  z-index: 9;
  top: 20px;
  right: 20px;
}

.modal-mask.active .modal-body {
  opacity: 0;
  animation: fadeUp 0.5s forwards;
}

.modal-content {
  max-height: 60vh;
  overflow: auto;
  color: #000;
  font-size: 1.1vw;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.modal-title {
  color: #000;
  font-size: 1.94vw;
  font-weight: 700;
  letter-spacing: 2.24px;
}

.modal-date {
  font-family: "Tilt Warp";
  color: #000;
  font-size: 1.1vw;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  padding: 8px 0;
  text-align: right;
  border-bottom: solid 1px #ccc;
  margin-bottom: 16px;
}

.modal-content p {
  margin-bottom: 16px;
}

.modal-content ul {
  list-style-type: disc;
  padding-left: 1.6em;
  margin-bottom: 16px;
}

.modal-content ol {
  list-style-type: decimal;
  padding-left: 1.6em;
  margin-bottom: 16px;
}

.modal-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
}

.modal-bottom a {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-size: 1.1vw;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: solid 1px transparent;
}

.modal-bottom a:hover {
  border-bottom: solid 1px #000;
}

.modal-bottom a:nth-child(1) span {
  display: inline-block;
  width: 2vw;
  height: 1.66vw;
  background-image: url(../images/prev.svg);
  background-repeat: no-repeat;
  background-size: auto 1.66vw;
  background-position: center left 0.34vw;
  transition: background-position 0.3s;
}

.modal-bottom a:nth-child(1):hover span {
  background-position: center left;
}

.modal-bottom a:nth-child(2) span {
  display: inline-block;
  width: 2vw;
  height: 1.66vw;
  background-image: url(../images/next.svg);
  background-repeat: no-repeat;
  background-size: auto 1.66vw;
  background-position: center right 0.34vw;
  transition: background-position 0.3s;
}

.modal-bottom a:nth-child(2):hover span {
  background-position: center right;
}

.page-content ul.important-list {
  list-style-type: none;
  padding: 0;
  padding: 0;
  margin-bottom: 42px;
}

.important-list li {
  border-bottom: 2px solid #CCC;
  position: relative;
}

.important-list li::after {
  content: '';
  width: 0;
  height: 3px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: width 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.important-list li:hover::after {
  width: 100%;
}

.important-list li a {
  display: flex;
  justify-content: space-between;
  padding: 28px 0;
  color: #000;
  font-size: 1.125vw;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.important-list li a span:nth-child(1) {
  display: block;
  height: 1.35vw;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-right: 12px;
}

.pa-function {
  display: inline-flex;
  align-items: center;
  font-size: 0;
}

.switch {
  display: inline-flex;
  justify-content: center;
  position: relative;
  border: 1px solid #000;
  border-radius: 3vw;
}


.switch a {
  width: 50%;
  display: inline-flex;
  text-align: center;
  font-weight: 700;
  font-size: 1.1vw;
  line-height: 1.08;
  padding: 0.55vw 1.1vw;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease 0s;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.switch a.active {
  color: #fff;
}

.switch-bg {
  position: absolute;
  z-index: 1;
  cursor: pointer;
  top: 0;
  left: 0;
  transition: 0.4s;
  width: 50%;
  height: 100%;
  background-color: #000;
  border-radius: 3vw;
  transition: all 0.4s ease 0s;
}

.tag-old.active~.switch-bg {
  left: 0;
}

.tag-new.active~.switch-bg {
  left: 50%;
}

.pa-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 42px;
}

.select-box {
  margin-right: 12px;
}

.year-select {
  display: inline-block;
  color: #000;
  font-size: 1.1vw;
  font-weight: 700;
  letter-spacing: 0.08em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: url(../images/select.svg);
  background-repeat: no-repeat;
  background-position: right 1.1vw center;
  background-size: 1.66vw;
  border: 1px solid #000;
  border-radius: 3vw;
  padding: 0.55vw 3.3vw 0.55vw 1.66vw;
}

.year-select:focus {
  outline: none;
}

.tab-contact {
  display: none;
}

.tab-contact.active {
  display: block;
  opacity: 0;
  animation: fadeUp 0.5s forwards;
}

.gov-container {
  background-color: #ededed;
  width: 75%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s forwards 0.3s;
  margin-top: 30px;
}

.gov-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 16px 0;
  margin-bottom: 32px;
  position: sticky;
  top: 0;
  background-color: #ededed;
  z-index: 99;
}

.gov-swiper .swiper-slide {
  width: auto;
  display: inline-block;
}

.sticky-sm {
  text-align: center;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 0;
  left: 0;
  width: calc(100% + 8px);
  display: flex;
  justify-content: center;
  margin-left: -4px;
}

.swiper-pagination-bullet {
  width: 100%;
  height: 4px;
  display: block;
  border-radius: 0;
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #000;
}

.ach-info-box {
  padding: 28px 100px 0 100px;
  display: flex;
  flex-direction: column;
}

.ach-info-left {
  width: 100%;
  color: #000;
  font-size: 1.66vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.ach-info-right {
  padding-top: 28px;
  width: 100%;
  color: #000;
  font-size: 1.125vw;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: justify;
}

.ach-tag-box {
  padding: 0;
}

.ach-btn {
  display: none;
}

.ach-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.ach-menu li {
  display: block;
  border-bottom: 2px solid #CCC;
  position: relative;
}

.ach-menu li a {
  display: block;
  color: #000;
  font-size: 1.66vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 1.66vw 2.91vw 1.66vw 0.83vw;
  text-decoration: none;
}

.ach-menu li a:hover {
  background-image: url(../images/next-1.svg);
  background-repeat: no-repeat;
  background-position: center right 0.83vw;
  background-size: 2.083vw auto;
}

.ach-menu li a::after {
  content: '';
  width: 0;
  height: 3px;
  background-color: #000;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: all 0.5s;
}

.ach-menu li a:hover::after,
.ach-menu li a.active::after {
  width: 100%;
}

.ach-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -30px;
}

.ach-col {
  width: 50%;
  padding: 0 30px;
  margin-bottom: 60px;
}

.ach-card {
  display: block;
  text-decoration: none;
  position: relative;
}

.ach-card:hover .news-card-img {
  border-radius: 50%;
  background-size: 106%;
}

.ach-card:hover .img-mask {
  background-color: rgba(0, 0, 0, 0.2);
}

.ach-card:hover .img-mask span i {
  transform: translateY(0);
}

.ach-card-title {
  color: #000;
  font-size: 1.66vw;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding: 0.83vw 0 0.55vw;
  border-bottom: solid 1px #ccc;
  position: relative;
}

.ach-card-title::after {
  content: '';
  width: 0;
  height: 3px;
  background-color: #000;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: all 0.5s;
}

.ach-card:hover .ach-card-title::after {
  width: 100%;
}

.ach-card-text {
  padding-top: 0.55vw;
  color: #000;
  font-size: 1.1vw;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.random-box {
  padding: 50px;
  border-top: 1px solid #CCC;
}

.ach-flex {
  display: flex;
}

.ach-left {
  width: 24vw;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  align-self: flex-start;
  padding: 60px 50px;
  z-index: 9;
}

.ach-right {
  width: 76vw;
  padding: 60px 50px;
}

.ach-swiper {
  width: calc(100% - 200px);
  margin: 0 auto;
  position: relative;
}

.ach-swiper.fix {
  width: calc(100% - 200px);
  margin: 0 auto;
  padding: 30px 0;
}

.ach-container {
  width: 100%;
  margin-top: 2.08vw;
  position: relative;
  z-index: 3;
  padding: 0 50px;
  /*   background-image: url(../images/ach-bg.svg);
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 17.3vw; */
  overflow: hidden;
}

.ach-box {
  background-color: #EDEDED;
  padding: 40px 0 60px;
  /*   background-image: url(../images/ach-bg.svg);
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 17.3vw; */
  animation: fadeUp 1s forwards 0.3s;
  opacity: 0;
}

.ach-box.fix {
  background-color: #EDEDED;
  padding: 40px 0 70px;
  overflow: hidden;
}

.ach-box-title {
  color: #000;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.ach-box-text {
  padding: 0 120px;
  margin: 30px 0 16px 0;
  color: #000;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.ach-box-text a {
  color: #000;
  text-decoration: underline;
}

.site-title {
  color: #000;
  font-size: 1.94vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.38vw;
}

.news-list {
  margin-bottom: 60px;
}

.news-list li {
  display: block;
  margin-bottom: 0;
}

.news-list-item {
  display: flex;
  position: relative;
  border-bottom: 1px solid #CCC;
  padding: 16px 0;
  text-decoration: none;
}

.news-list-item::after {
  content: '';
  height: 2px;
  width: 0;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-color: #000;
  transition: width 0.3s;
}

.news-list-item:hover::after {
  width: 100%;
}

.news-list-img {
  width: 5.83vw;
  height: 3.48vw;
  background-size: cover;
}

.news-list-info {
  width: calc(100% - 5.83vw);
  padding-left: 16px;
}

.news-list-title {
  overflow: hidden;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.1vw;
  font-weight: 700;
  line-height: 1.54;
  height: 3.08vw;
  letter-spacing: 0.03em;
  margin-bottom: 0.55vw;
}

.list-date {
  color: #000;
  font-family: "Tilt Warp";
  font-size: 0.97vw;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.news-container {
  width: 100%;
  padding-left: 50px;
  opacity: 0;
  animation: fadeUp 1s forwards 0.3s;
  background-color: #EDEDED;
  min-height: 50dvh;
  display: flex;
}

.news-container-left {
  width: 70%;
  background-color: #EDEDED;
  padding: 80px 120px;
  margin-top: -2.77vw;
}

.news-container-right {
  width: 30%;
  padding: 64px 32px;
  z-index: 9;
}

.news-card-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -30px;
}

.news-card-col {
  width: 33.3%;
  padding: 0 30px;
  margin-bottom: 60px;
}

.news-card {
  display: block;
  text-decoration: none;
  position: relative;
}

.news-card-title {
  margin: 0.55vw 0 0.275vw;
  overflow: hidden;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.6vw;
  font-weight: 700;
  line-height: 2.3vw;
  height: 4.6vw;
  letter-spacing: 0.1em;
}

.news-card-img {
  width: 100%;
  height: 0;
  padding-top: 62%;
  background-size: 101%;
  background-position: center center;
  transition: border-radius 0.3s, background-size 0.5s;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.83vw;
}

.news-card:hover .news-card-img {
  border-radius: 50%;
  background-size: 106%;
}

.img-mask {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-col 0.5s;
  z-index: 3;
}

.news-card:hover .img-mask {
  background-color: rgba(0, 0, 0, 0.2);
}

.img-mask span {
  display: block;
  text-align: center;
  overflow: hidden;
}

.img-mask span i {
  display: inline-block;
  color: #FFF;
  font-size: 1.66vw;
  font-weight: 700;
  transform: translateY(100%);
  transition: all 0.3s;
}

.news-card:hover .img-mask span i {
  transform: translateY(0);
}

.container {
  padding: 50px 50px 100px;
}

.download-url {
  display: inline-block;
  color: #000;
  font-size: 1.66vw;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  background-image: url(../images/file.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 1.66vw;
  padding-left: 2.77vw;
  text-decoration: none;
  border-bottom: solid 1px transparent
}

.download-url:hover {
  border-bottom: solid 1px #000;
}

.show-xs {
  display: none;
}

.sustainable-item {
  margin-bottom: 2.2vw;
  display: flex;
  align-items: stretch;
  position: relative;
}

.sustainable-item-left {
  padding-right: 1.94vw;
  width: 40%;
}

.sustainable-item-right {
  width: 60%;
  border-bottom: 2px solid #CCC;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 4.16vw;
  position: relative;
}

.sustainable-item-right::after {
  content: '';
  width: 0;
  height: 3px;
  background-color: #000;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: all 0.5s;
}

.sustainable-item:hover .sustainable-item-right::after {
  width: 100%;
}

.sustainable-item:hover .sustainable-item-right {
  background-image: url(../images/next-1.svg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 2.8vw auto;
}

.sustainable-item-img {
  width: 100%;
  height: 0;
  padding-top: 62%;
  background-size: 101%;
  background-position: center center;
  transition: border-radius 0.3s, background-size 0.5s;
  position: relative;
  overflow: hidden;
}

.sustainable-item:hover .sustainable-item-img {
  border-radius: 50%;
  background-size: 106%;
}

.sustainable-item:hover .img-mask {
  background-color: rgba(0, 0, 0, 0.2);
}

.sustainable-item:hover .img-mask span i {
  transform: translateY(0);
}

.sustainable-info-head {
  padding-bottom: 8px;
  display: flex;
  align-items: center;
}

.tag-sm {
  display: inline-block;
  text-decoration: none;
  color: #000;
  font-size: 0.83vw;
  padding: 0.27vw 0.55vw;
  border: solid 1px #000;
  margin-bottom: 0.55vw;
  border-radius: 3vw;
  text-decoration: none;
  position: relative;
  z-index: 10;
}

.tag-sm:hover {
  background-color: #000;
  color: #fff;
}

.tag {
  display: inline-block;
  text-decoration: none;
  color: #000;
  font-size: 0.97vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.55vw 1.66vw;
  border: solid 1px #000;
  margin-right: 1.38vw;
  border-radius: 3vw;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.site-tags .tag {
  padding: 0.55vw 1.1vw;
  margin-bottom: 0.55vw;
  margin-right: 0.55vw;
}

.tag:hover {
  color: #fff;
  background-color: #000;
}

.date {
  color: #000;
  text-align: justify;
  font-family: "Tilt Warp";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
}

.sustainable-info-title {
  overflow: hidden;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.94vw;
  font-weight: 700;
  line-height: 2.77vw;
  height: 2.77vw;
  letter-spacing: 0.1em;
  margin-bottom: 0.275vw;
}

.sustainable-info-text {
  overflow: hidden;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.1vw;
  font-weight: 400;
  line-height: 1;
  height: 1.1vw;
  letter-spacing: 0.05em;
}

.sustainable-btn {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9;
  top: 0;
  left: 0;
}

.sustainable-swiper {
  overflow: hidden;
  position: relative;
  font-size: 0;
}

.sustainable-swiper-img {
  width: 100%;
  height: 0;
  padding-top: 62%;
  background-size: 101% auto;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.5s;
}

.sustainable-swiper .swiper-slide:hover .sustainable-swiper-img {
  background-size: 106% auto;
}

.sustainable-info {
  overflow: hidden;
  position: relative;
  padding: 24px 0 40px;
  border-bottom: solid 2px #CCC;
  margin-bottom: 48px;
}

label.error {
  color: #F34C50;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding-top: 4px;
  display: block;
}

.form-btn-box {
  display: flex;
  justify-content: center;

}

.form-btn {
  display: inline-flex;
  height: 54px;
  align-items: center;
  justify-content: center;
  outline: none;
  padding: 0 40px;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  border: none;
  border-radius: 30px;
  background-color: #000;
  cursor: pointer;
  margin: 0 12px;
  border: solid 1px #000;
}

.form-btn:hover {
  background-color: transparent;
  color: #000;
}

.form-btn-outline {
  display: inline-flex;
  height: 54px;
  align-items: center;
  justify-content: center;
  outline: none;
  padding: 0 40px;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  border: none;
  border-radius: 30px;
  background-color: transparent;
  cursor: pointer;
  margin: 0 12px;
  border: solid 1px #000;
}

.form-btn-outline:hover {
  background-color: #000;
  color: #fff;
}

.radio-container {
  display: inline-block;
  padding-left: 28px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
  position: relative;
  margin-right: 24px;
}

.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}

.radio-container-check {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: solid 1px #000;
  border-radius: 50%;
}

.radio-container input:checked~.radio-container-check {
  background-image: url("../images/check.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #000;
}

.input-row {
  display: flex;
  margin: 0 -16px;
}

.input-col {
  width: 50%;
  padding: 0 16px;
}

.input-group {
  position: relative;
  margin-bottom: 32px;
}

.label {
  display: block;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.form-control {
  box-shadow: none;
  outline: none;
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: solid 1px #fff;
  background-color: #fff;
  font-size: 18px;
  color: #000;
  font-weight: 400;
  padding-left: 16px;
  padding-right: 16px;
}

.form-control.error {
  border: solid 1px #F34C50;
}

.form-control:focus {
  border: solid 1px #3AA7A0;
}

.form-control::placeholder {
  color: #ccc;
}

textarea.form-control {
  padding: 16px;
  height: auto;
}

.contact-form {
  padding: 80px 120px;
}

.contact-form h3 {
  color: #000;
  font-size: 1.66vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}

.contact-form h3.fix {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.contact-form h4 {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.contact-form a {
  color: #3AA7A0;
}

.contact-form h5 {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.contact-form p {
  color: #000;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.contact-form hr {
  margin-top: 0;
  margin-bottom: 10px;
}

.contact-form ul {
  list-style-type: disc;
  padding-left: 1.6em;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-info-box {
  padding: 0 0 80px 0;
}

.contact-container {
  width: 75%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s forwards 0.3s;
  background-color: #EDEDED;
}

.contact-banner {
  padding: 0 50px;
  position: relative;
  opacity: 0;
  animation: fadeUp 1s forwards 0.1s;
}

.contact-bg {
  width: 100%;
  height: 27vw;
  background-color: #3AA7A0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.box-404 {
  height: calc(100dvh - 178px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 120px;
  position: relative;
}

.box-404 img {
  width: 22.22vw;
}

.join-info-box {
  border-bottom: solid 2px #000;
}

.join-info-box.fix {
  margin-bottom: 60px;
}

.join-info-btn {
  position: relative;
  padding: 1.38vw 3.6vw 1.38vw 0;
  border-top: solid 2px #000;
}

.join-info-btn a {
  display: inline-block;
  width: 3.6vw;
  height: 3.6vw;
  background-image: url(../images/plus-1.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 3vw;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s;
}

.join-info-btn a span {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
  font-size: 1.66vw;
  color: #000;
  font-weight: 700;
  white-space: nowrap;
}

.join-info-btn a:hover {
  background-size: 3.6vw;
}

.join-info.active .join-info-btn a {
  background-image: url(../images/minus-1.svg);
}

.join-info-content {
  color: #000;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
  border-top: solid 1px #d9d9d9;
  height: auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.join-info.active .join-info-content {
  max-height: 1000vh;
  border-top: solid 2px #d9d9d9;
}

.join-info-content ul {
  display: block;
}

.join-info-content ul li {
  display: block;
  padding: 24px 0;
}

.join-info-content ul li:nth-child(even) {
  background-color: #E3E3E3;
}

.join-info-content ul.fix li {
  display: flex;
}

.join-info-content ul.fix li span:nth-child(1) {
  width: 30%;
  font-size: 1.66vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.join-info-content ul.fix li span:nth-child(2),
.join-info-content ul.fix li span:nth-child(3) {
  width: 35%;
}

.join-info-content ul.fix li a {
  color: #000;
  text-decoration: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  margin: 1.388vw -0.41vw 0;
}

.btn-col {
  width: auto;
  padding: 0 0.41vw;
  margin-bottom: 1.388vw;
}

.btn-col.fix {
  margin-right: auto;
}

.btn {
  display: block;
  color: #000;
  font-size: 1.388vw;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 1.1vw 2.2vw;
  text-align: center;
  border: solid 1px #000;
  border-radius: 4vw;
  margin-bottom: 16px;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover,
.btn.active {
  color: #FFF;
  background-color: #000;
  border: solid 1px #000;
}

.btn.fix {
  display: inline-block;
  margin-bottom: 0;
}

.btn.fix-2.active {
  color: #000;
  background-color: transparent;
}

.text-left {
  text-align: left !important;
}

.join-flex {
  display: flex;
}

.join-col-left {
  width: 50%;
}

.join-col-right {
  width: 50%;
  padding-left: 5.5vw;
}

.join-img-box {
  position: relative;
}

.join-img-info {
  padding: 2vw 2.7vw;
  min-height: 18.36vw;
  background-color: #FED43F;
  border-radius: 1vw;
  width: 86%;
  z-index: 3;
  position: relative;
  margin-top: -15vw;
  margin-left: -120px;
}

.join-img-info.fix {
  margin-left: calc(120px + 14%);
}

.join-img-info h3 {
  margin-bottom: 0.83vw !important;
}

.join-img-info p {
  margin-bottom: 0 !important;
}

.join-box {
  display: none;
}

.join-box.active {
  display: block;
}

.join-banner {
  padding: 0 50px;
  position: relative;
  opacity: 0;
  animation: fadeUp 1s forwards 0.1s;
}

.join-bg {
  width: 100%;
  height: 27vw;
  background-color: #F34C50;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.join-banner.fix .join-bg {
  background-color: #3AA7A0;
}

.join-title {
  font-size: 3.47vw;
  font-weight: 900;
  color: #000;
}

.join-en-title {
  font-family: 'Tilt Warp';
  color: #000;
  font-size: 5.3vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: right;
  margin-bottom: 0.83vw;
}

.join-container {
  display: flex;
  position: relative;
  z-index: 1;
  padding-right: 50px;
  opacity: 0;
  animation: fadeUp 1s forwards 0.3s;
}

.join-left {
  width: 24vw;
  margin-top: 9.4vw;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  align-self: flex-start;
  padding: 80px 50px;
  z-index: 9;
}

.join-left.fix {
  width: 30vw;
  padding: 50px 0 50px 50px;
}

.join-right {
  width: calc(76vw - 50px);
  background-color: #ededed;
  min-height: 60dvh;
  padding: 80px 120px;
}

.join-right.fix {
  width: calc(70vw - 50px);
  padding: 0;
}

.join-right.fix-1 {
  margin-top: 9.4vw;
  width: calc(70vw - 50px);
  padding: 50px 0 0 0;
  background-color: transparent;
}

.join-right h3 {
  color: #000;
  font-size: 1.66vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2.2vw;
}

.join-right p {
  color: #000;
  font-size: 1.25vw;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-bottom: 2.2vw;
  text-align: justify;
}

.banner {
  width: 100%;
  display: flex;
  position: relative;
  margin-bottom: -1.04vw;
  z-index: 2;
}

.banner-col {
  width: 25%;
  position: relative;
  overflow: hidden;
}

.banner-bg {
  width: 100%;
}

.banner-col.fix {
  margin-top: -1.04vw;
}

.banner-slogan-lg {
  width: 15.2vw;
  position: absolute;
  right: 0;
  top: 48%;
  transform: translateY(-50%);
  overflow: hidden;
  text-align: right;
}

.banner-slogan-sm {
  width: 4.3vw;
  position: absolute;
  bottom: 6.94vw;
  right: 3.47vw;
}

.banner-info {
  position: absolute;
  top: 6vw;
  left: 3.47vw;
}

.banner-title {
  font-size: 4vw;
  font-weight: 900;
  line-height: 1.4;
  color: #000;
  margin-bottom: 0.83vw;
}

.banner-title span,
.banner-en-title span,
.banner-btn span {
  display: inline-block;
}

.banner-en-title {
  font-family: "Tilt Warp", sans-serif;
  font-size: 2.22vw;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
  margin-bottom: 2.5vw;
}

.banner-btn {
  font-size: 1.66vw;
  font-weight: 900;
  line-height: 1.3;
  color: #000;
  display: inline-block;
  text-decoration: none;
  padding-bottom: 0.3vw;
  border-bottom: solid 0.3vw #000;
}

.section-1 {
  padding-bottom: 8.3vw;
  overflow: hidden;
}

.section-2 {
  padding-bottom: 6.94vw;
  overflow: hidden;
}

.section-3 {
  position: relative;
  overflow: hidden;
  height: 100dvh;
  background-image: url(../images/section-3.png);
  background-position: top center;
  background-size: cover;
}

.section-4 {
  padding: 6.94vw 8.4vw;
  overflow: hidden;
  display: flex;
}

.section-5 {
  padding: 0 0 3.74vw 0;
  overflow: hidden;
}

.section-6 {
  padding: 3.47vw 0;
  overflow: hidden;
}

.news-box {
  width: 60.48vw;
  padding-left: 3.47vw;
  padding-bottom: 15.4vw;
  background-color: #FED43F;
  margin-bottom: -7vw;
  display: flex;
  justify-content: space-between;
}

.news-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 1.87vw;
}

.news-col {
  width: 50%;
  padding: 0 1.87vw;
  position: relative;
  margin-bottom: 0.83vw;
}

.news-col:nth-child(3) {
  z-index: 1;
}

.news-col img {
  width: 100%;
}

.news-col img.fix {
  width: calc(100% + 10vw);
  margin-left: -3.47vw;
}

.news-info {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 4.165vw 8.33vw;
  text-decoration: none;
}

.news-date {
  color: #000;
  font-size: 1.38vw;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.83vw;
}

.news-text {
  color: #000;
  font-size: 2.22vw;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 6.66vw;
}

.news-col:hover img {
  opacity: 0.8;
}

.career-left,
.career-right {
  width: 50%;
}

.career-box {
  width: 100%;
  height: 44vw;
  background-color: #FED43F;
  margin-bottom: -8vw;
}

.career-card {
  display: block;
  position: relative;
}

.career-card img {
  width: 100%;
}

.career-card span {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5vw;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.text-front {
  color: #000;
}

.career-card:hover .text-front,
.career-card:hover .career-front {
  display: none;
}

.text-back {
  color: #fff;
  display: none;
}

.career-back {
  display: none;
}

.career-card:hover .text-back,
.career-card:hover .career-back {
  display: block;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.section-3-tag {
  position: absolute;
  display: inline-block;
  white-space: nowrap;
  color: #000;
  font-size: 4.44vw;
  font-weight: 900;
  line-height: 1.3;
  padding: 0 0.5vw;
}

.section-3-tag:nth-child(1) {
  background-color: #3AA7A0;
  ;
  left: 0;
  bottom: 50%;
}

.section-3-tag:nth-child(2) {
  background-color: #FED43F;
  right: 50%;
  top: 50%;
}

.section-3-tag:nth-child(3) {
  background-color: #F34C50;
  left: 50%;
  bottom: 50%;
}

.section-3-tag:nth-child(4) {
  background-color: #F7C9C0;
  right: 0;
  top: 50%;
}

.quality-content {
  width: calc(100% - 17.48vw);
  position: relative;
  z-index: 1;
  text-align: right;
  padding: 0;
  overflow: hidden;
  margin: 0 auto;
}

.quality-img-bg {
  width: 73.47vw;
}

.quality-01 {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.quality-01.fix-2 {
  z-index: 2;
}

.quality-img {
  width: 73.47vw;
}

.quality-box {
  padding: 0 3.47vw;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: space-between;
}

.quality-title {
  display: inline-block;
  font-size: 3.47vw;
  font-weight: 900;
  color: #000;
}

.quality-en-title {
  font-family: 'Tilt Warp';
  display: inline-block;
  color: #000;
  font-size: 5.3vw;
  font-weight: 400;
  line-height: 1.1;
}

.quality-bg {
  background-color: #F34C50;
  position: absolute;
  width: 65.7vw;
  height: 41.52vw;
  z-index: -1;
  top: 0;
  left: 0;
}

.quality-info {
  position: absolute;
  padding: 2vw 2.7vw;
  width: 36vw;
  text-align: center;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.color-bg-1 {
  background-color: #F7C9C0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 1vw;
}

.quality-info h3 {
  color: #000;
  font-size: 2.2vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5vw;
}

.quality-info p {
  color: #000;
  font-size: 1.8vw;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.44;
  margin-bottom: 0;
}

.Leader-box {
  width: 66%;
  margin-left: 34%;
  position: relative;
  z-index: 0;
  padding-right: 50px;
  margin-bottom: 0;
}

.Leader-bg {
  width: 100%;
  height: 35.76vw;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-color: #3AA7A0;
}

.Leader-title {
  font-size: 3.47vw;
  font-weight: 900;
  color: #000;
}

.Leader-en-title {
  width: auto;
  display: inline-flex;
  flex-direction: column;
  color: #000;
  font-size: 5.3vw;
  font-weight: 400;
  text-align: left;
  line-height: 1.1;
  font-family: 'Tilt Warp';
}

.Leader-en-title span {
  display: block;
  text-align: right;
}

.Leader-01 {
  position: relative;
  z-index: 1;
  width: 90%;
  margin: 0 auto;
}

.Leader-img {
  position: relative;
  z-index: 1;
}

.Leader-img-bg {
  position: absolute;
  z-index: 0;
}

.Leader-01 img {
  width: 55.48vw;
}

.Leader-01 .Leader-img {
  margin-left: 23.88vw;
}

.Leader-01 .Leader-img-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 16.94vw;
}

.Leader-02 {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 0 auto;
}

.Leader-02 img {
  width: 54.3vw;
  margin-top: -5vw;
}

.Leader-02 .Leader-img {
  margin-left: 12.48vw;
}

.Leader-02 .Leader-img-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 23vw;
}

.Leader-03 {
  position: relative;
  z-index: 3;
  padding-right: 11.22vw;
  padding-bottom: 3.47vw;
  text-align: right;
  width: 90%;
  margin: -11vw auto 0;
}

.Leader-03 img {
  width: 46.4vw;
}

.Leader-03 .Leader-img-bg {
  position: absolute;
  z-index: 0;
  top: -3.74vw;
  right: 3.74vw;
}

.Leader-info {
  position: relative;
  padding: 2vw 2.7vw;
  width: 34vw;
  text-align: left;
}

.color-bg {
  background-color: #FED43F;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 1vw;
}

.Leader-01 .Leader-info {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 3.74vw;
  transform: translateY(-50%);
}

.Leader-02 .Leader-info {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 3.74vw;
}

.Leader-03 .Leader-info {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 11.22vw;
}

.Leader-num {
  font-family: 'Tilt Warp';
  color: #000;
  font-size: 4.4vw;
  line-height: 1;
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-60%);
}

.Leader-num.fix {
  left: auto;
  right: 0;
}

.Leader-info h3 {
  color: #000;
  font-size: 2.2vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5vw;
}

.Leader-info p {
  color: #000;
  font-size: 1.8vw;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.44;
  margin-bottom: 0;
  text-align: justify;
}

.img-modal {
  display: none;
  width: 100%;
  height: 100dvh;
  padding: 60px 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: url(../images/img-close.svg)2 2, pointer;
}

.img-modal.active {
  display: flex;
}

.img-modal-body {
  width: 56%;
  cursor: default;
}

.img-modal.active .img-modal-body {
  opacity: 0;
  animation: fadeUp 0.5s forwards 0.1s;
}

.img-modal-body img {
  width: 100%;
}

.img-btn {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}

.team-img-box {
  display: flex;
}

.team-img-left {
  width: 20%;
}

.team-img-right {
  width: 80%;
}

.team-list {
  margin-bottom: 5vw;
}

.team-img-right .imgB div {
  background-size: 100%;
  transition: background-size 0.3s;
}

.team-img-right:hover .imgB div {
  background-size: 110%;
}

.team-info-box {
  display: flex;
  padding: 1.38vw 0;
  max-height: 16.2vw;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s;
}

.team-info.active .team-info-box {
  max-height: 150vw;
}

.experience-l {
  width: 33.3%;
  padding-right: 2vw;
}

.experience-r {
  width: 66.6%;
}

.team-info-box::after {
  content: '';
  background-color: #ededed;
  width: 100%;
  height: 1vw;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.team-info.active .team-info-box::after {
  display: none;
}

.experience-tag {
  display: inline-block;
  font-size: 0.97vw;
  color: #ededed;
  font-weight: 400;
  line-height: 1;
  background-color: #000;
  padding: 0.3vw 0.83vw;
  margin-bottom: 0.83vw;
}

.team-item {
  display: flex;
}

.page-content .experience-l p {
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.page-content .experience-r p {
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.team-face {
  width: 30%;
  padding-right: 4.4vw;
}

.team-info-btn {
  position: relative;
  padding: 1.38vw 3.6vw 1.38vw 0;
  border-bottom: solid 2px #d9d9d9;
}

.team-info-btn a {
  display: inline-block;
  width: 3.6vw;
  height: 3.6vw;
  background-image: url(../images/plus-1.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 3vw;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s;
}

.team-info-btn a:hover {
  background-size: 3.6vw;
}

.team-info.active .team-info-btn a {
  background-image: url(../images/minus-1.svg);
}

.team-title {
  color: #000;
  font-size: 1.25vw;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.team-name {
  color: #000;
  font-size: 1.66vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.face-box {
  width: 100%;
  height: 0;
  padding-top: 120%;
  border-radius: 50%;
  background-size: cover;
  background-position: top center;
}

.team-info {
  width: 70%;
  border-top: solid 2px #000;
  border-bottom: solid 2px #000;
  margin-bottom: -2px;
}

.team-banner-img {
  width: 50%;
  position: absolute;
  z-index: 1;
  top: 30%;
  left: 0;
}

.gray-card {
  padding: 4.4vw 2.2vw;
  text-align: center !important;
  background-color: #E6E6E6;
  ;
  margin-bottom: 3vw;
}

.gray-card p {
  margin-bottom: 0.5vw !important;
  text-align: center !important;
}

.gray-card h3 {
  margin-bottom: 0 !important;
}

.gray-card h3 span:first-child {
  display: inline-block;
  width: 1.25vw;
  height: 1vw;
  margin-right: 1.25vw;
  background-image: url(../images/h3-l.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  transform: translateY(-100%);
}

.gray-card h3 span:last-child {
  display: inline-block;
  width: 1.25vw;
  height: 1vw;
  margin-left: 1.25vw;
  background-image: url(../images/h3-r.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  transform: translateY(-100%);
}

.btn-next {
  display: inline-block;
  width: 52px;
  height: 38px;
  background-image: url(../images/next.svg);
  background-repeat: no-repeat;
  background-size: auto 38px;
  background-position: center right 10px;
  transition: background-position 0.3s;
  position: absolute;
  z-index: 9;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

.btn-next:hover {
  background-position: center right;
}

.ab-swiper {
  overflow: hidden;
  position: relative;
  margin-bottom: 3vw;
}

.ab-swiper .imgB {
  width: calc(100% - 60px);
  margin-bottom: 0;
}

.ab-swiper .swiper-slide {
  padding-bottom: 7.5vw;
}

.ab-swiper-info {
  padding: 2vw 2.7vw;
  background-color: #FED43F;
  border-radius: 1vw;
  width: 70%;
  z-index: 3;
  position: absolute;
  left: 30%;
  bottom: 0;
}

.ab-swiper-info h3 {
  margin-bottom: 12px !important;
}

.ab-swiper-info p {
  line-height: 1.6 !important;
}

.ab-num {
  color: #000;
  font-size: 4.4vw;
  font-weight: 900;
  position: absolute;
  top: -2vw;
  right: 0;
  font-family: 'Tilt Warp';
}

.shape-box {
  margin: 5vw auto;
  display: flex;
  max-width: 60%;
}

.shape-col {
  width: 50%;
  font-size: 0;
}

.shape-img {
  position: relative;
}

.shape-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
}

.page-content .shape-text h3 {
  font-size: 2vw;
  margin-bottom: 1vw;
}

.page-content .shape-text p {
  font-size: 1.25vw;
  line-height: 1.4;
}

.about-banner-img {
  width: 40vw;
  position: absolute;
  z-index: 3;
  top: -18.2vw;
  left: -13vw;
}

.about-box {
  padding-left: 24vw;
}

.more-box {
  display: flex;
}

.more-col {
  width: 50%;
}

.more-img {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 60%;
  background-size: 101% auto;
  background-position: center center;
  text-decoration: none;
  position: relative;
  transition: background-size 0.3s;
}

.more-img:hover {
  background-size: 111% auto;
}
.open-link{
  font-size: 1.125vw;
  color: #000;
}
.more-img h5 {
  display: inline-block;
  text-align: center;
  width: 64%;
  color: #000;
  font-size: 1.94vw;
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.more-img h5 span {
  background-color: #FED43F;
}

.marquee-runner {
  width: 100%;
  overflow: hidden;
  margin-bottom: -5px;
}

.marquee-wrapper {
  animation: moveSlideshow 80s linear infinite;
}

.marquee-wrapper.fix {
  animation: moveSlideshow 80s linear infinite;
}

.marquee-wrapper.fix img {
  width: 9984px;
}

.clone-me {
  display: block;
  width: auto;
}

.clone-me img {
  width: 7504px;
}

@keyframes moveSlideshow {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-3752px);
  }
}

@keyframes moveSlid {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.page-date {
  text-align: right;
  color: #000;
  font-size: 1.25vw;
  font-weight: 900;
  margin-top: -1.38vw;
  margin-bottom: 3.3vw;
}

.page-banner {
  position: relative;
  margin-bottom: -2.77vw;
  opacity: 0;
  animation: fadeUp 1s forwards 0.1s;
  font-size: 0;
}

.page-banner.fix {
  margin-bottom: 0;
}

.page-bn-info {
  width: 75%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}

.page-bn-info.fix {
  width: calc(100% - 340px);
  text-align: left;
}

.page-bn-info h1 {
  display: inline-block;
  color: #000;
  font-size: 2.5vw;
  font-weight: 900;
  background-color: #F7C9C0;
}

.page-bn-info h2 {
  display: inline-block;
  color: #000;
  font-size: 1.66vw;
  font-weight: 900;
  background-color: #FED43F;
}

.button-next {
  position: absolute;
  top: 0;
  right: 0;
  width: 8vw;
  height: 100%;
  background: linear-gradient(270deg, #FED43F 64.02%, rgba(254, 212, 63, 0.00) 100%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
}

.button-next.fix-1 {
  position: absolute;
  top: auto;
  bottom: 0;
  right: 0;
  width: 4.72vw;
  height: 4.72vw;
  background: #3AA7A0;
}

.button-next.fix {
  background: linear-gradient(270deg, #ededed 64.02%, rgba(254, 212, 63, 0.00) 100%);
}

.button-next span {
  display: inline-block;
  width: 3.6vw;
  height: 2.63vw;
  background-image: url(../images/next.svg);
  background-repeat: no-repeat;
  background-size: auto 2.63vw;
  background-position: center right 0.6vw;
  transition: background-position 0.3s;
  cursor: pointer;
}

.button-next:hover span {
  background-position: center right;
}

.button-prev {
  position: absolute;
  top: 0;
  left: 0;
  width: 8vw;
  height: 100%;
  background: linear-gradient(90deg, #FED43F 64.02%, rgba(254, 212, 63, 0.00) 100%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

.button-prev.fix {
  background: linear-gradient(90deg, #ededed 64.02%, rgba(254, 212, 63, 0.00) 100%);
}

.button-prev.fix-1 {
  position: absolute;
  top: auto;
  left: auto;
  bottom: 0;
  right: 4.72vw;
  width: 4.72vw;
  height: 4.72vw;
  background: #3AA7A0;
}

.button-prev.fix-2,
.button-next.fix-2 {
  background: transparent;
}

.button-next.fix-2 {
  width: 90px;
  transform: translateX(100%);
  justify-content: center;
}

.button-prev.fix-2 {
  width: 90px;
  transform: translateX(-100%);
  justify-content: center;
}

.button-prev span {
  display: inline-block;
  width: 3.6vw;
  height: 2.63vw;
  background-image: url(../images/prev.svg);
  background-repeat: no-repeat;
  background-size: auto 2.63vw;
  background-position: center left 0.6vw;
  transition: background-position 0.3s;
  cursor: pointer;
}

.button-prev:hover span {
  background-position: center left;
}

.swiper-button-disabled {
  display: none;
}

.tabA {
  display: inline-block;
  color: #000;
  font-size: 1.38vw;
  font-weight: 500;
  line-height: 1;
  padding: 1vw 1.38vw;
  border-radius: 5vw;
  text-decoration: none;
  border: solid 1px #000;
  white-space: nowrap;
}

.tabB {
  display: inline-block;
  color: #000;
  font-size: 1.38vw;
  font-weight: 500;
  line-height: 1;
  padding: 1vw 1.38vw;
  border-radius: 0.75vw;
  text-decoration: none;
  border: solid 1px #000;
}

.tabC {
  display: inline-block;
  color: #000;
  font-size: 1.38vw;
  font-weight: 500;
  line-height: 1;
  padding: 1vw 1.38vw;
  border-radius: 0;
  text-decoration: none;
  border: solid 1px #000;
}

.tabA:hover,
.tabB:hover,
.tabC:hover,
.tabA.active,
.tabB.active,
.tabC.active {
  color: #fff;
  background-color: #000;
}

.tabA.fix.active {
  color: #000;
  background-color: transparent;
}

.tab-swiper {
  width: 66%;
  margin-left: 34%;
  margin-top: 2.7vw;
  margin-bottom: 1.66vw;
  position: relative;
  overflow: hidden;
}

.swiper-info {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  font-weight: 700;
  font-size: 1.38vw;
  line-height: 1.5vw;
  letter-spacing: 0.08em;
  display: flex;
  width: 100%;
  height: 3.33vw;
  align-items: center;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.swiper-info span {
  display: inline-flex;
  align-items: center;
  font-family: "Tilt Warp";
  background-color: rgba(0, 0, 0, 1);
  padding: 0 12px;
  margin-right: 12px;
  height: 100%;
}

.tab-swiper.fix {
  display: inline-block;
  width: auto;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 50vw;
}
.tab-swiper.fix-1 {
  display: inline-block;
  width: auto;
  margin: 0 auto;
  padding: 0 20px;
}
.tab-swiper .swiper-slide {
  width: auto;
  display: inline-block;
  position: relative;
}

.page-content h3,
.news-container-left h3 {
  font-size: 1.66vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2.2vw;
}

.page-content h3 span {
  font-family: 'Tilt Warp', 'Noto Sans TC', sans-serif;
  color: #000;
}

.page-content p,
.news-container-left p {
  color: #000;
  font-size: 1.25vw;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-bottom: 2.2vw;
  text-align: justify;
}

.page-content hr,
.news-container-left hr {
  height: 0;
  border-top: solid 1px #ccc;
  margin: 1.66vw 0;
}

.page-content hr.fix {
  border-top: solid 2px #000;
}

.page-content ol,
.news-container-left ol {
  margin-bottom: 2.2vw;
  list-style-type: decimal;
  padding-left: 1.6em;
}

.page-content ul,
.news-container-left ul {
  margin-bottom: 2.2vw;
  list-style-type: disc;
  padding-left: 1.6em;
}

.page-content iframe,
.news-container-left iframe {
  max-width: 100%;
}

.imgA.fix,
.imgB.fix,
.imgC.fix {
  width: calc(100% - 50px);
}

.imgA {
  margin: 3vw 0;
  position: relative;
  cursor: pointer;
}

.imgA div {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 50%;
  clip-path: polygon(0 0, 100% 0, 93% 50%, 100% 100%, 0 100%, 7% 50%);
  background-size: cover;
  background-position: center center;
  z-index: 1;
}

.imgA::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 93% 50%, 100% 100%, 0 100%, 7% 50%);
  background-color: #3AA7A0;
  z-index: 0;
  top: 0;
  left: 50px;
}

.imgB {
  margin: 3vw 0;
  position: relative;
  cursor: pointer;
}

.imgB div {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 60%;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}

.imgB::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #F7C9C0;
  z-index: 0;
  top: 0;
  left: 50px;
}

.imgC {
  margin: 3vw 0;
  position: relative;
  cursor: pointer;
}

.imgC div {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 60%;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}

.imgC::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #FED43F;
  z-index: 0;
  top: 0;
  left: 50px;
}

.imgD {
  margin: 3vw auto;
  position: relative;
  cursor: pointer;
  width: 100%;
  max-width: 600px;
  font-size: 0;
}

.imgD img {
  width: 100%;
  position: relative;
  z-index: 1;
}

.imgD::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #F7C9C0;
  z-index: 0;
  top: 0;
  left: 50px;
}

.banner-img {
  width: 38vw;
  position: absolute;
  z-index: -1;
  top: 20%;
  left: 0;
}

.page-container {
  width: 75%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s forwards 0.3s;
}

.page-content {
  background-color: #ededed;
  padding: 60px 50px;
  min-height: 50vh;
  color: #000;
  font-size: 1.25vw;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.close-btn {
  display: inline-block;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 50px;
  right: 50px;
  z-index: 9;
  background-image: url(../images/close.svg);
  background-size: 40px;
}

.top-btn {
  display: inline-block;
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50px;
  right: 50px;
  z-index: 9;
  background-image: url(../images/top.svg);
  background-size: 60px;
}

.top-btn.fix {
  display: none;
  position: fixed;
  top: auto;
  bottom: 50px;
  right: 50px;
  z-index: 150;
}

.menu-box {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  background-color: #F34C50;
  padding: 50px;
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  overflow-y: auto;
}

.menu-box.active {
  display: flex;
  opacity: 0;
  animation: menuUp 0.5s forwards;
}

@keyframes menuUp {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.copy-link {
  display: inline-flex;
}

.copy-link li {
  display: inline-block;
  padding-left: 2em;
}

.copy-link li a {
  color: #000;
  font-size: 1.1vw;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.copy-link li a::before {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000;
  transition: width 0.3s;
}

.copy-link li a:hover::before {
  width: 100%;
}

.copy-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copy-left {
  color: #000;
  font-family: "Tilt Warp";
  font-size: 0.85vw;
  font-weight: 400;
}

.info-text {
  color: #000;
  font-family: 'Tilt Warp', 'Noto Sans TC', sans-serif;
  font-size: 2.5vw;
  font-weight: 400;
  margin: 0 0 18px 0;
}

.info-text a {
  color: #000;
  text-decoration: none;
}

.info-text b {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 900;
}

.menu-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.menu-item {
  width: 30%;
  margin-bottom: 12px;
  padding-right: 3vw;
}

.menu-item.full {
  width: 90%;
}

.menu-item>a {
  color: #000;
  font-size: 4.4vw;
  font-weight: 900;
  line-height: 1.4;
  text-decoration: none;
  position: relative;
}

.menu-item>a::before {
  content: '';
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000;
  transition: width 0.3s;
}

.menu-item>a.has-sub::before {
  display: none;
}

.has-sub {
  cursor: default;
  pointer-events: none;
}

.sub-menu-list {
  display: flex;
  flex-wrap: wrap;
}

.sub-menu-list li {
  display: inline-flex;
  color: #000;
  font-size: 1.52vw;
  font-weight: 400;
}

.sub-menu-list li::after {
  content: '/';
  display: inline-block;
  padding: 0 0.5em;
  font-size: 1.1vw;
}

.sub-menu-list li:last-child:after {
  display: none;
}

.sub-menu-list li a {
  display: block;
  color: #000;
  font-size: 1.38vw;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.sub-menu-list li a::before {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000;
  transition: width 0.3s;
}

.sub-menu-list li a:hover::before,
.sub-menu-list li a.active::before {
  width: 100%;
}

.lan-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.lan-list li {
  display: inline-flex;
  color: #000;
  font-size: 1.52vw;
  font-weight: 400;
}

.lan-list li::after {
  content: '/';
  display: inline-block;
  padding: 0 0.5em;
  font-size: 1.1vw;
}

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

.lan-list li a {
  display: block;
  color: #000;
  font-size: 1.38vw;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.lan-list li a::before {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000;
  transition: width 0.3s;
}

.lan-list li a:hover::before,
.lan-list li a.active::before {
  width: 100%;
}

footer {
  background-color: #F34C50;
  padding: 50px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.6vw;
  margin-bottom: 1.6vw;
}

.page-item {
  display: inline-block;
  padding: 0 16px;
}

.page-link {
  display: block;
  color: #000;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
  text-decoration-line: none;
  margin-bottom: 10px;
}

.page-link.active,
.page-link:hover {
  text-decoration: underline;
}

.page-prev {
  display: inline-block;
  width: 52px;
  height: 38px;
  background-image: url(../images/prev.svg);
  background-repeat: no-repeat;
  background-size: auto 38px;
  background-position: center left 10px;
  transition: background-position 0.3s;
}

.page-prev:hover {
  background-position: center left;
}

.page-next {
  display: inline-block;
  width: 52px;
  height: 38px;
  background-image: url(../images/next.svg);
  background-repeat: no-repeat;
  background-size: auto 38px;
  background-position: center right 10px;
  transition: background-position 0.3s;
}

.page-next:hover {
  background-position: center right;
}

.page-prev.disabled,
.page-next.disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}

.main-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -25px;
}

.main-col {
  width: 33.3%;
  padding: 0 25px;
}

.shape {
  display: block;
  width: 100%;
  padding-top: 66.6%;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.shapeA-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 50% 15%, 100% 0, 100% 100%, 50% 85%, 0 100%);
  background-size: 100% auto;
  background-position: center center;
  overflow: hidden;
  z-index: 1;
  transition: background-size 0.5s;
}

.shapeA-box:hover {
  background-size: 120% auto;
}

.shapeA-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #3AA7A0;
  opacity: 1;
  transition: all 0.3s;
}

.shape:hover .shapeA-mask {
  background-color: #000;
  opacity: 0.2;
}
.shape:hover .shapeA-mask.fix {
  background-color: #000;
  opacity: 0.3;
}
.shapeB-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: 100% auto;
  background-position: center center;
  overflow: hidden;
  z-index: 1;
  transition: background-size 0.5s;
}

.shapeB-box:hover {
  background-size: 120% auto;
}

.shapeB-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #F7C9C0;
  opacity: 1;
  transition: all 0.3s;
}

.shape:hover .shapeB-mask {
  background-color: #000;
  opacity: 0.2;
}
.shape:hover .shapeB-mask.fix {
  background-color: #000;
  opacity: 0.3;
}
.shape-read {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4vw;
  overflow: hidden;
  z-index: 5;
  text-align: center;
}

.shape-read span {
  display: block;
  color: #000;
  font-size: 1.66vw;
  line-height: 2vw;
  font-weight: 700;
  transition: transform 0.3s;
}

.shape-read span:nth-child(1) {
  padding: 0 10px;
  overflow: hidden;
  height: 4vw;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.shape-read span:nth-child(2) {
  color: #fff;
}

.shape:hover .shape-read span {
  transform: translateY(-4vw);
}

.main-container {
  padding: 50px;
  opacity: 0;
  animation: fadeUp 1s forwards 0.3s;
}

.tech-banner {
  display: flex;
  opacity: 0;
  animation: fadeUp 1s forwards 0.1s;
  position: relative;
}

@keyframes fadeUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.tech-box {
  width: 72%;
  padding-right: 50px;
  position: relative;
  margin-left: auto;
}

.tech-bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 36vw;
  top: 0;
  left: 0;
  background-color: #FED43F;
}

.tech-bg.fix-1 {
  background-color: #F34C50;
}

.tech-title {
  color: #000;
  font-size: 3.47vw;
  font-weight: 900;
  height: 4.6vw;
}

.tech-en-title {
  font-family: 'Tilt Warp';
  color: #000;
  font-size: 5.55vw;
  font-weight: 400;
  text-align: right;
  line-height: 1.1;
  padding-left: 30%;
  margin-bottom: 1.6vw;
}

.tech-en-title.fix {
  margin-bottom: 4vw;
}

.breadcrumb {
  display: flex;
  justify-content: flex-end;
}

.breadcrumb.fix {
  margin-top: 32px;
}

.breadcrumb-item {
  color: #000;
  font-size: 1.38vw;
  font-weight: 400;
}

.breadcrumb .breadcrumb-item::after {
  content: '>';
  margin: 0 0.5em;
}

.breadcrumb .breadcrumb-item:last-child:after {
  display: none;
}

.menu {
  font-family: "Tilt Warp", sans-serif;
  font-weight: 400;
}

header {
  height: 80px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}

header.on {
  position: fixed;
  background-color: #ededed;
  animation: header 0.5s forwards linear;
  top: -80px;
}

@keyframes header {
  0% {
    top: -80px;
  }

  100% {
    top: 0;
  }
}

.logo {
  display: inline-block;
  position: absolute;
  left: 50px;
  top: 13px;
}

.logo img {
  height: 54px;
  width: auto;
}

.menu-btn {
  position: absolute;
  top: 16px;
  right: 50px;
  height: 48px;
  width: 48px;
  cursor: pointer;
  z-index: 100;
  transition: opacity .25s ease;
}

.menu-btn::before {
  content: 'MENU';
  font-family: "Tilt Warp", sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: #000;
  position: absolute;
  top: 50%;
  right: 58px;
  transform: translateY(-50%);
}

.menu-btn span {
  border: none;
  height: 4px;
  width: 100%;
  position: absolute;
  top: 16px;
  left: 0;
  transition: all .35s ease;
  cursor: pointer;
  background-color: #000;
}

.menu-btn span:nth-of-type(2) {
  top: 28px;
}

@media (max-width:1320px) {
  .join-left {
    padding: 80px 20px 40px 50px;
  }

  .tag-sm {
    font-size: 12px;
    padding: 4px 12px;
    border: solid 1px #000;
    margin-bottom: 8px;
    border-radius: 30px;
  }

  .ach-left {
    padding: 60px 0 60px 50px;
  }
}

@media (max-width:1024px) {
  .open-link{
  font-size: 16px;
  color: #000;
}
  .img-content {
    height: 100%;
  }

  .tab-header {
    text-align: left;
    margin-bottom: 30px;
  }

  .report-item {
    padding: 16px 0;
  }

  .report-year {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .report-url span {
    font-size: 16px;
    padding-left: 24px;
    background-size: 16px auto;
    margin-right: 0;
  }

  .out-link {
    font-size: 15px;
    padding-right: 20px;
    background-size: 16px auto;
  }

  .dividends-name {
    font-size: 14px;
  }

  .dividends-info {
    font-size: 15px;
    letter-spacing: 0.08em;
  }

  .modal-bottom a {
    font-size: 16px;
  }

  .modal-bottom a:nth-child(1) span {

    width: 20px;
    height: 16px;
    background-size: auto 16px;
    background-position: center left 4px;
  }

  .modal-bottom a:nth-child(2) span {
    width: 20px;
    height: 16px;
    background-size: auto 16px;
    background-position: center right 4px;
  }

  .modal-body {
    width: calc(100% - 40px);
    border-top: 4px solid #F34C50;
    background: #EDEDED;
    padding: 60px 16px 20px 16px;
    position: relative;
  }

  .modal-title {
    font-size: 20px;
    letter-spacing: 0.08em;
  }

  .modal-date {
    font-size: 14px;
    padding: 12px 0;
    margin-bottom: 12px;
  }

  .modal-content {
    font-size: 15px;
  }

  .page-content ul.important-list {
    margin-bottom: 30px;
  }

  .important-list li {
    border-bottom: 1px solid #CCC;
  }

  .important-list li::after {
    height: 2px;
    bottom: -1px;
  }

  .important-list li a {
    padding: 24px 0;
    font-size: 16px;
    line-height: 1.4;
  }

  .important-list li a span:nth-child(1) {
    height: auto;
    max-height: 44.8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-right: 0;
  }

  .important-list li a span:nth-child(2) {
    font-size: 14px;
  }

  .pa-header {
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 24px;
  }

  .switch {
    border-radius: 30px;
  }

  .switch a {
    font-size: 14px;
    padding: 8px 16px;
  }

  .switch-bg {
    border-radius: 30px;
  }

  .pa-function {
    margin-top: 16px;
  }

  .year-select {
    font-size: 14px;
    background-position: right 8px center;
    background-size: 20px;
    border-radius: 30px;
    padding: 8px 36px 8px 16px;
  }

  .switch div {
    width: 140px;
    height: 31.6px;
    display: flex
  }

  .switch div::before {
    font-size: 14px;
  }

  .switch div::after {
    font-size: 14px;
  }

  .gov-container {
    width: calc(100% - 40px);
  }

  .ach-right {
    padding: 40px 30px;
  }

  .ach-row {
    margin: 0 -15px;
  }

  .ach-col {
    padding: 0 15px;
    margin-bottom: 40px;
  }

  .news-card-row {
    margin: 0 -15px;
  }

  .news-card-col {
    padding: 0 15px;
    margin-bottom: 40px;
  }

  .ach-box-text {
    font-size: 15px;
    padding: 0px 50px;
    margin: 30px 0px 16px;
  }

  .ach-container {
    margin-top: 2.08vw;
    padding: 0 20px;
  }

  .site-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .news-list-title {
    font-size: 16px;
    line-height: 22px;
    height: 48px;
    margin-bottom: 4px;
  }

  .list-date {
    font-size: 14px;
  }

  .site-tags .tag {
    font-size: 14px;
    padding: 6px 12px;
    margin-bottom: 8px;
    margin-right: 8px;
  }

  .page-bn-info.fix {
    width: calc(100% - 80px);
  }

  .news-container {
    padding-left: 20px;
    ;
  }

  .news-container-left {
    padding: 40px 20px;
    margin-top: -40px;
  }

  .news-container-right {
    padding: 40px 20px;
  }

  .label {
    font-size: 18px;
  }

  .radio-container {
    font-size: 15px;
  }

  .contact-form h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .contact-container {
    width: calc(100% - 40px);
  }

  .contact-banner {
    padding: 0 20px;
  }

  body {
    padding-top: 60px;
  }

  .box-404 {
    height: calc(100dvh - 100px);
    padding-bottom: 60px;
  }

  .marquee-wrapper.fix img {
    width: auto;
    height: 40px;
  }

  .join-info-btn {
    padding: 16px 40px 16px 0;
  }

  .join-info-btn a {
    width: 40px;
    height: 40px;
    background-size: 30px;
  }

  .join-info-btn a:hover {
    background-size: 30px;
  }

  .join-info-content {
    font-size: 15px;
  }

  .join-info-content ul li {
    display: block;
    padding: 20px 0;
  }

  .join-img-info {
    padding: 30px 26px;
    min-height: 18.36vw;
    border-radius: 15px;
    width: 86%;
    z-index: 3;
    margin-left: -20px;
  }

  .join-img-info.fix {
    margin-left: calc(20px + 14%);
  }

  .join-banner {
    padding: 0 20px;
  }

  .join-container {
    padding-right: 20px;
  }

  .join-left {
    padding: 40px 20px;
  }

  .join-left.fix {
    padding: 20px;
  }

  .join-right {
    width: calc(76vw - 20px);
    padding: 40px 20px;
  }

  .join-right.fix {
    width: calc(70vw - 20px);
  }

  .join-right.fix-1 {
    width: calc(70vw - 20px);
  }

  .join-right h3 {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .join-right p {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .Leader-box {
    padding-right: 20px;
  }

  .img-modal {
    cursor: pointer;
    background-image: url(../images/img-close.svg);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: top 20px right 20px;
  }

  .img-modal-body {
    width: 80%;
  }

  .team-list {
    margin-bottom: 40px;
  }

  .shape-box {
    margin: 40px auto;
    max-width: 100%;
  }

  .team-info-btn a {
    width: 40px;
    height: 40px;
    background-size: 30px;
  }

  .team-info-btn a:hover {
    background-size: 40px;
  }

  .experience-tag {
    font-size: 14px;
    padding: 4px 12px;
    margin-bottom: 8px;
  }

  .face-box {
    padding-top: 100%;
  }

  .team-info-btn {
    padding: 20px 40px 20px 0;
  }

  .team-info-box {
    padding: 20px 0;
    max-height: 200px;
  }

  .team-info-box::after {
    height: 10px;
  }

  .experience-l {
    padding-right: 20px;
  }

  .team-title {
    font-size: 16px;
  }

  .team-name {
    font-size: 18px;
  }

  header {
    height: 60px;
  }

  .ab-swiper .swiper-slide {
    padding-bottom: 0;
  }

  .ab-swiper .imgB {
    width: calc(100% - 20px);
    margin-bottom: -20px;
  }

  .ab-swiper-info {
    padding: 30px 20px;
    border-radius: 15px;
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
  }

  .ab-num {
    font-size: 46px;
    top: -24px;
  }

  .logo {
    display: inline-block;
    position: absolute;
    left: 20px;
    top: 15px;
  }

  .logo img {
    height: 30px;
    width: auto;
  }

  .top-btn {
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
    background-size: 40px;
  }

  .top-btn.fix {
    bottom: 20px;
    right: 20px;
  }

  .page-bn-info {
    width: calc(100% - 60px);
  }

  .menu-btn {
    top: 15px;
    right: 20px;
    height: 30px;
    width: 30px;
  }

  .menu-btn::before {
    display: none;
  }

  .menu-btn span {
    height: 2px;
    top: 10px;
  }

  .menu-btn span:nth-of-type(2) {
    top: 18px;
  }

  .page-link {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .page-next {
    width: 38px;
    height: 28px;
    background-size: auto 28px;
  }

  .page-prev {
    width: 38px;
    height: 28px;
    background-size: auto 28px;
  }

  .copy-box {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .copy-link li {
    padding-left: 0;
    padding-right: 1em;
  }

  .copy-left {
    font-size: 12px;
    margin-top: 8px;
  }

  .copy-link {
    flex-wrap: wrap;
  }

  .copy-link li a {
    font-size: 16px;
  }

  .menu-item {
    width: 33.3%;
    padding-right: 10px;
  }

  .main-container {
    padding: 40px 20px;
  }

  footer {
    padding: 20px;
    min-height: 0;
  }

  .main-row {
    margin: 0 -15px;
  }

  .main-col {
    padding: 0 15px;
  }

  .tech-box {
    padding-right: 20px;
  }

  .menu-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }

  .page-item {
    padding: 0 10px;
  }

  .sub-menu-list li a {
    font-size: 16px;
  }

  .sub-menu-list li::after {
    font-size: 16px;
  }

  .lan-list li a {
    font-size: 16px;
  }

  .lan-list li::after {
    font-size: 16px;
  }

  .info-text {
    font-size: 16px;
  }

  .close-btn {
    width: 30px;
    height: 30px;
    top: 20px;
    right: 20px;
    background-size: 30px;
  }

  .menu-box {
    padding: 20px;
  }

  .page-container {
    width: calc(100% - 40px);
  }

  .page-content {
    padding: 40px 0 20px 0;
    font-size: 15px;
  }

  .page-content h3,
  .news-container-left h3 {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .page-content p,
  .page-content ol,
  .page-content ul,
  .news-container-left p,
  .news-container-left ol,
  .news-container-left ul {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .banner-img {
    display: none;
  }

  .imgB,
  .imgA,
  .imgC {
    margin: 40px 0;
  }

  .imgB::after,
  .imgA::after,
  .imgC::after,
  .imgD::after {
    left: 20px;
  }

  .imgD {
    margin: 40px auto;
  }

  .page-date {
    font-size: 14px;
    margin-top: -20px;
    margin-bottom: 32px;
  }

  .page-content .shape-text h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .page-content .shape-text p {
    font-size: 15px;
    text-align: center;
  }

  .gray-card {
    padding: 30px;
    margin-bottom: 0;
    position: relative;
  }

  .gray-card p {
    margin-bottom: 12px !important;
  }

  .join-info-content ul.fix li span:nth-child(1) {
    font-size: 18px;
  }

  .contact-form {
    padding: 40px 20px;
  }

  .sustainable-info-head {
    padding-bottom: 4px;
  }

  .tag {
    font-size: 12px;
    padding: 4px 12px;
    border: solid 1px #000;
    margin-right: 8px;
    border-radius: 30px;
  }

  .date {
    font-size: 14px;
  }

  .sustainable-info-title {
    font-size: 20px;
    line-height: 28px;
    height: 28px;
    margin-bottom: 4px;
  }

  .sustainable-info-text {
    font-size: 14px;
    line-height: 20px;
    height: 20px;
  }

  .download-url {
    font-size: 15px;
    background-size: 15px;
    padding-left: 23px;
  }

  .join-info-btn a span {
    font-size: 20px;
  }

  .page-content hr,
  .news-container-left hr {
    margin: 24px 0;
  }

  .join-info-box.fix {
    margin-bottom: 40px;
  }

  .swiper-info {
    font-size: 14px;
    height: 26px;
  }
}

@media (max-width:768px) {
  .dividends-item {
    flex-wrap: wrap;
    margin-bottom: -4px;
  }

  .dividends-col {
    width: 50%;
    margin-bottom: 4px;
  }

  .dividends-col.fix {
    width: 100%;
  }

  .dividends-info {
    padding: 12px;
  }

  .hide-sm {
    display: none;
  }

  .ach-btn {
    display: inline-block;
    width: 40px;
    height: 86px;
    background-image: url(../images/ach-btn.svg);
    background-size: cover;
    position: fixed;
    right: 0;
    top: 50%;
    margin-top: -43px;
    z-index: 99;
  }

  .ach-left {
    display: none;
    padding: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%);
  }

  .ach-left.active {
    display: block;
    opacity: 0;
    animation: leftIn 0.5s forwards cubic-bezier(0.19, 1, 0.22, 1);
  }

  @keyframes leftIn {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .ach-left .site-title {
    display: block;
    padding: 54px 8px 8px 8px;
    width: 240px;
    font-size: 20px;
    background-color: #3AA7A0;
    margin-left: auto;
    margin-bottom: 0;
    background-image: url(../images/b-close.svg);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: top 8px right 8px;
  }

  .ach-menu {
    width: 240px;
    height: 100%;
    background-color: #fff;
    margin-left: auto;
  }

  .ach-menu li {
    border-bottom: 1px solid #CCC;
  }

  .ach-menu li a {
    font-size: 14px;
    padding: 16px;
  }

  .ach-box-text {
    font-size: 15px;
    padding: 0px 50px;
    margin: 16px 0;
  }

  .ach-menu li a:hover {
    background-image: none;
  }

  .ach-menu li a::after {
    display: none;
  }

  .ach-right {
    width: 100%;
    padding: 60px 50px;
  }

  .ach-card-title {
    font-size: 24px;
    padding: 12px 0 8px;
  }

  .ach-card-text {
    font-size: 16px;
    padding-top: 8px;
  }

  .ach-col {
    width: 50%;
    padding: 0 16px;
    margin-bottom: 40px;
  }

  .ach-card:hover .ach-card-title::after {
    width: 0;
  }

  .button-prev.fix-2,
  .button-next.fix-2 {
    background: #3AA7A0;
  }

  .button-next.fix-2 {
    top: 50%;
    right: -20px;
    width: 40px;
    height: 40px;
    transform: translate(0, -50%);
    justify-content: center;
  }

  .button-prev.fix-2 {
    top: 50%;
    left: -20px;
    width: 40px;
    height: 40px;
    transform: translate(0, -50%);
    justify-content: center;
  }

  .ach-swiper {
    width: 100%;
  }

  .ach-swiper.fix {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
  }

  .ach-container {
    margin: 0;
    padding: 0 20px;
  }

  .news-list-img {
    width: 84px;
    height: 51px;
  }

  .news-list-info {
    width: calc(100% - 84px);
    padding-left: 16px;
  }

  .join-flex {
    flex-direction: column;
  }

  .join-col-right {
    width: 100%;
    padding-left: 0;
    margin-bottom: 40px;
  }

  .join-col-left {
    width: 100%;
    order: 1;
  }

  .join-img-info {
    width: 100%;
    margin-left: 0;
  }

  .join-img-info.fix {
    margin-left: 0;
    width: 100%;
  }

  .join-img-info p {
    line-height: 1.5 !important;
  }

  .news-card-row {
    margin: 0 -16px;
  }

  .news-card-col {
    width: 50%;
    padding: 0 16px;
    margin-bottom: 40px;
  }

  .news-card-img {
    margin-bottom: 20px;
  }

  .news-card-title {
    font-size: 20px;
    line-height: 28px;
    height: 56px;
    margin: 4px 0;
  }

  .news-container {
    padding-left: 0;
    flex-direction: column;
  }

  .news-container-left {
    width: 100%;
    padding: 40px 20px;
    margin-top: 0;
  }

  .news-container-right {
    width: 100%;
    padding: 20px 20px 40px;
  }

  .news-list {
    margin-bottom: 30px;
  }

  .ach-box {
    padding: 20px 0 40px;
  }

  .ach-box.fix {
    padding: 20px 0 40px;
    overflow: visible;
    background-image: none;
  }

  .ach-info-box {
    padding: 28px 0 0 0;
  }

  .ach-info-left {
    font-size: 16px;
  }

  .ach-info-right {
    font-size: 15px;
  }

  .tab-swiper.fix, .tab-swiper.fix-1 {
    width: 100%;
    max-width: 100%;
  }

  .sticky-sm {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9;
    padding: 8px 20px;
    background-color: #ededed;
    margin-bottom: -20px;
  }

  .ach-box.fix {
    background-color: transparent;
    background-size: auto 46vw;
  }

  .ach-container.fix {
    background-size: auto 46vw;
  }

  .history-year {
    width: 60px;
    text-align: left;
    font-size: 20px;
  }

  .history-line {
    width: 20px;
    border-left: solid 1px #000;
  }

  .history-line::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #EDEDED;
    border: solid 2px #000;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: -5px;
    z-index: 3;
  }

  .history-info {
    width: calc(100% - 80px);
    margin-bottom: 20px;
    padding: 10px;
  }

  .history-col span {
    display: inline-block;
    margin-right: 4px;
  }
}

@media (max-width:568px) {
  .mb-6 {
    margin-bottom: 30px !important;
  }

  .imgA.fix,
  .imgB.fix,
  .imgC.fix {
    width: calc(100% - 20px);
  }

  .img-close {
    width: 30px;
    height: 30px;
    top: 16px;
    right: 16px;
  }

  .go-back {
    font-size: 14px;
    padding: 8px;
  }

  .go-back span {
    margin-right: 6px;
    width: 20px;
    height: 14px;
    background-size: auto 14px;
    background-position: center left 6px;
  }

  .Leader-01,
  .Leader-02,
  .Leader-02 {
    width: 100%;
  }

  .report-url {
    min-width: 50%;
    margin-right: 0;
    margin-bottom: 8px;
  }

  .modal-bottom {
    position: sticky;
    bottom: -1px;
    background: #EDEDED;
    padding-top: 12px;
  }

  .important-list li a {
    flex-direction: column;
  }

  .important-list li a span:nth-child(1) {
    margin-bottom: 12px;
  }

  .gov-container {
    margin-top: -20px;
  }

  .page-container.fix {
    margin-top: -60px;
  }

  .ach-box.fix {
    background-size: auto 340px;
  }

  .ach-container.fix {
    background-size: auto 340px;
  }

  .sticky-sm {
    margin-bottom: 0;
  }

  .random-box {
    padding: 32px 20px;
  }

  .tab-swiper.fix,.tab-swiper.fix-1 {
    width: 100%;
    padding: 0;
  }

  .news-card-col {
    width: 100%;
  }

  .news-card:hover .news-card-img,
  .ach-card:hover .news-card-img {
    border-radius: 0;
  }

  .news-card:hover .img-mask,
  .ach-card:hover .img-mask {
    background-color: rgba(0, 0, 0, 0);
  }

  .news-card:hover .img-mask span i,
  .ach-card:hover .img-mask span i {
    transform: translateY(100%);
  }

  .sustainable-item {
    margin-bottom: 0;
    padding: 28px 0;
    border-bottom: solid 1px #ccc;
  }

  .sustainable-item:hover .img-mask {
    background-color: rgba(0, 0, 0, 0);
  }

  .sustainable-item:hover .sustainable-item-right {
    background-image: none;
    padding-right: 0;
  }

  .sustainable-item:hover .sustainable-item-right::after {
    width: 0;
  }

  .sustainable-item:hover .sustainable-item-img {
    border-radius: 0;
  }

  .sustainable-item:hover .img-mask span i {
    transform: translateY(100%);
  }

  .sustainable-info-title {
    -webkit-line-clamp: 2;
    height: 56px;
  }

  .sustainable-item-left {
    padding-right: 16px;
    width: 100px;
  }

  .sustainable-item-right {
    width: calc(100% - 100px);
    border-bottom: none;
    padding-right: 0;
  }

  .sustainable-info {
    border-bottom: solid 1px #CCC;
    padding: 20px 0 16px;
    margin-bottom: 32px;
  }

  .button-next.fix-1 {
    width: 44px;
    height: 44px;
    padding: 0 10px;
  }

  .button-prev.fix-1 {
    right: 44px;
    width: 44px;
    height: 44px;
    padding: 0 10px;
  }

  .form-btn-box {
    margin: 0 -8px;
  }

  .form-btn-box button {
    width: 50%;
    margin: 0 8px;
  }

  .input-row {
    flex-direction: column;
  }

  .input-col {
    width: 100%;
  }

  .radio-container {
    margin-bottom: 8px;
  }

  .contact-form {
    padding: 40px 0 40px 20px;
  }

  .join-info-content ul.fix li {
    flex-direction: column;
  }

  .join-info-content ul.fix li span {
    width: 100% !important;
  }

  .contact-banner {
    width: 76%;
    min-height: 198px;
    padding-left: 0;
    margin-left: 24%;
  }

  .contact-bg {
    height: 260px;
  }

  .contact-container {
    width: calc(100% - 20px);
    margin: 0;
  }

  .contact-info-box {
    padding: 0 0 60px 20px;
  }

  .section-1 {
    padding-bottom: 60px;
  }

  .section-2 {
    padding-bottom: 60px;
  }

  .quality-box {
    padding: 32px 20px 0 20px;
    flex-direction: column;
  }

  .quality-bg {
    width: 100%;
    height: 342px;
  }

  .quality-content {
    padding: 0;
    width: 100%;
  }

  .quality-img-bg {
    width: calc(100% - 20px);
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
  }

  .quality-01 {
    position: relative;
    left: 0;
    width: calc(100% - 20px);
  }

  .quality-01.fix-2 {
    z-index: 2;
    top: 0;
    position: absolute;
  }

  .quality-img {
    width: 100%;
  }

  .quality-title {
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 4px;
  }

  .quality-en-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .quality-info {
    position: relative;
    padding: 34px;
    width: calc(100% - 20px);
    text-align: left;
    z-index: 3;
    top: auto;
    left: auto;
    transform: translate(0, 0);
    margin: 32px 20px 0 20px;
  }

  .color-bg-1,
  .color-bg {
    border-radius: 15px;
  }

  .quality-info h3 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .quality-info p {
    font-size: 18px;
  }

  .Leader-info {
    padding: 34px;
    width: calc(100% - 40px);
  }

  .Leader-info h3 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .Leader-num {
    font-size: 64px;
    transform: translateY(-60%);
  }

  .Leader-info p {
    font-size: 18px;
    margin-bottom: 0;
  }

  .Leader-01 .Leader-info {
    position: relative;
    z-index: 3;
    top: auto;
    left: auto;
    transform: translateY(0);
    margin: -60px 20px 20px 20px;
  }

  .Leader-02 .Leader-info {
    position: relative;
    z-index: 3;
    top: auto;
    left: auto;
    right: auto;
    transform: translateY(0);
    margin: -120px 20px 40px 20px;
  }

  .Leader-03 .Leader-info {
    position: relative;
    z-index: 3;
    top: auto;
    left: auto;
    right: auto;
    transform: translateY(0);
    margin: -80px 20px 0 20px;
  }

  .Leader-01 img {
    width: calc(100% - 30px);
  }

  .Leader-01 .Leader-img {
    margin-left: 30px;
  }

  .Leader-01 .Leader-img-bg {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
  }

  .Leader-02 {
    position: relative;
    z-index: 2;
  }

  .Leader-02 img {
    width: calc(100% - 30px);
    margin-top: 0;
  }

  .Leader-02 .Leader-img {
    margin-left: 0;
  }

  .Leader-02 .Leader-img-bg {
    left: 30px;
  }

  .Leader-03 {
    position: relative;
    z-index: 3;
    padding-right: 0;
    padding-bottom: 0;
    margin-top: 0;
    text-align: left;
  }

  .Leader-03 img {
    width: calc(100% - 30px);
  }

  .Leader-03 .Leader-img-bg {
    position: absolute;
    z-index: 0;
    top: -20px;
    right: auto;
    left: 30px;
  }

  .Leader-box {
    width: 100%;
    margin-left: 0;
    padding: 90px 20px 60px 20px;
    margin-bottom: -60px;
    background-color: #3AA7A0;
  }

  .Leader-title {
    font-size: 32px;
    line-height: 1.5;
  }

  .Leader-bg {
    display: none;
  }

  .Leader-en-title {
    font-size: 30px;
    line-height: 1.3;
    text-align: left;
  }

  .team-list {
    margin-bottom: 8px;
  }

  .team-banner-img {
    display: none;
  }

  .gray-card h3 span:first-child {
    width: 13px;
    height: 11px;
    margin-right: 0;
    transform: translateY(0);
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
  }

  .gray-card h3 span:last-child {
    width: 13px;
    height: 11px;
    margin-left: 0;
    transform: translateY(0);
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }

  .ab-swiper-info {
    min-height: 216px;
  }

  .about-banner-img {
    display: none;
  }

  .about-box {
    padding-left: 0;
  }

  .show-xs {
    display: block;
  }

  .hide-xs {
    display: none;
  }

  .more-box {
    flex-direction: column;
  }

  .more-col {
    width: 100%;
  }

  .more-img h5 {
    width: 260px;
    font-size: 16px;
    padding: 4px;
  }

  .marquee-runner {
    margin-bottom: -4px;
  }

  .clone-me img {
    width: 5000px;
  }

  @keyframes moveSlideshow {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-2500px);
    }
  }

  .page-bn-info h1 {
    font-size: 20px;
    padding: 4px;
  }

  .page-bn-info h2 {
    font-size: 16px;
    padding: 4px;
  }

  .page-banner {
    margin-bottom: 0
  }

  .button-next {
    width: 50px;
  }

  .button-prev {
    width: 50px;
    background: linear-gradient(90deg, #ededed 64.02%, rgba(254, 212, 63, 0.00) 100%);
  }

  .tab-swiper {
    width: 100%;
    margin-left: 0;
    margin-top: 36px;
    margin-bottom: 24px;
  }

  .tabA {
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 40px;
  }

  .tabB {
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 8px;
  }

  .tabC {
    font-size: 14px;
    padding: 10px 16px;
  }

  .pagination {
    margin: 32px 0 0 0;
    padding-top: 0;
  }

  .main-col {
    width: 100%;
    margin-bottom: 10px;
  }

  .menu-item {
    width: 100%;
    padding-right: 0;
  }

  .sub-menu-list li::after {
    display: none;
  }

  .sub-menu-list li {
    width: 100%;
    display: block;
    padding-left: 32px;
  }

  .sub-menu-list li a {
    display: inline-block;
    font-size: 22px;
    padding: 6px 0;
  }

  .menu-item>a {
    font-size: 32px;
    display: inline-flex;
    align-items: center;
  }

  .sub-menu-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

  .has-sub {
    cursor: pointer;
    pointer-events: all;
  }

  .menu-item>a.has-sub::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../images/plus.svg);
    background-repeat: no-repeat;
    background-size: 30px auto;
    background-position: center center;
    margin-left: 8px;
  }

  .menu-item.active>a.has-sub::after {
    background-image: url(../images/minus.svg);
  }

  .menu-item.active .sub-menu-list {
    max-height: 100vh;
  }

  .menu-list {
    margin-bottom: 32px;
  }

  .tech-box {
    width: 76%;
    min-height: 198px;
  }

  .tech-title {
    font-size: 26px;
    height: 38px;
  }

  .tech-en-title {
    font-size: 36px;
    padding-left: 0;
    margin-bottom: 16px;
  }

  .tech-en-title.fix {
    margin-bottom: 42px;
  }

  .breadcrumb-item {
    font-size: 14px;
  }

  .tech-bg {
    height: 260px;
  }

  .tech-bg.fix {
    height: 320px;
  }

  .shapeA-mask,
  .shapeB-mask {
    background-color: transparent;
  }

  .shape-read {
    height: 60px;
  }

  .shape-read span {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
  }

  .shape-read span:nth-child(1) {
    padding: 0 10px;
    height: 60px;
  }

  .shape:hover .shape-read span {
    transform: translateY(0);
  }

  .shape:hover .shapeA-mask,
  .shape:hover .shapeB-mask {
    opacity: 1;
  }

  .ab-swiper {
    margin-bottom: 40px;
  }

  .team-item {
    flex-direction: column;
  }

  .team-face {
    width: 220px;
    padding-right: 0;
    margin-bottom: 12px;
  }

  .team-info {
    width: 100%;
    margin-bottom: 32px;
  }

  .team-info-box {
    flex-direction: column;
    padding: 20px 0;
    max-height: 230px;
  }

  .experience-l {
    width: 100%;
    padding-right: 0;
    margin-bottom: 12px;
    display: flex;
  }

  .experience-l p {
    width: calc(100% - 52px);
    padding-left: 8px;
  }

  .experience-tag {
    width: 104px;
    height: 22px;
    white-space: nowrap;
    text-align: center;
  }

  .experience-r {
    width: 100%;
    padding-right: 0;
    display: flex;
  }

  .experience-r p {
    width: calc(100% - 52px);
    padding-left: 8px;
  }

  .team-img-box {
    flex-direction: column;
  }

  .team-img-left {
    width: 100%;
  }

  .team-img-right {
    width: 100%;
  }

  .img-modal-body {
    width: calc(100% - 40px);
    overflow: auto;
  }

  .img-modal-body img {
    height: 60dvh;
    width: auto;
  }

  .section-3-tag {
    font-size: 40px;
    padding: 0 12px;
  }

  .section-3-tag:nth-child(1) {
    bottom: auto;
    top: 0;
  }

  .section-3-tag:nth-child(2) {
    top: auto;
    bottom: 50%;
    right: auto;
    left: 0;
  }

  .section-3-tag:nth-child(3) {
    top: 50%;
    bottom: auto;
    right: 0;
    left: auto;
  }

  .section-3-tag:nth-child(4) {
    top: auto;
    bottom: 0;
    right: 0;
    left: auto;
  }

  .section-3 {
    height: 100dvh;
    background-image: url(../images/section-3-1.png);
  }

  .section-4 {
    padding: 0;
    flex-direction: column;
  }

  .career-left,
  .career-right {
    width: 100%;
  }

  .career-right {
    order: -1;
  }

  .career-box {
    height: auto;
    padding: 32px 20px 120px;
    margin-bottom: -120px;
  }

  .career-card span {
    font-size: 36px;
  }

  .career-card {
    margin-bottom: -4px;
  }

  .news-row {
    margin: 0;
  }

  .news-col {
    width: 100%;
    padding: 0;
    margin-bottom: 0;
  }

  .news-col:nth-child(4) {
    padding: 0 20px;
  }

  .news-box {
    width: 100%;
    flex-direction: column;
    padding: 32px 20px 96px;
    margin-bottom: -96px;
  }

  .news-info {
    padding: 32px 60px;
  }

  .news-col img.fix {
    width: 100%;
    margin-left: 0;
  }

  .news-date {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .news-text {
    font-size: 24px;
    height: 72px;
  }

  .section-5 {
    padding: 0;
  }

  .section-6 {
    padding: 40px 0;
  }

  .banner {
    flex-wrap: wrap;
    margin-bottom: -16.5%;
  }

  .banner-col {
    width: 50%;
  }

  .banner-col.fix {
    width: 60%;
    margin-right: -10%;
    margin-top: 0;
    z-index: 1;
    overflow: visible;
    transform: translateY(-17%);
  }

  .banner-col.fix .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
  }

  .banner-col:nth-child(4) {
    z-index: -1;
    transform: translateY(-17%);
  }

  .banner-slogan-lg {
    width: 25vw;
    top: 50%;
  }

  .banner-info {
    top: 18.6vw;
    left: 0;
    padding: 0 20px;
    z-index: 5;
  }

  .banner-slogan-sm {
    width: 26px;
    position: absolute;
    bottom: 20px;
    right: auto;
    left: calc(50vw - 46px);
  }

  .banner-title {
    font-size: 8.37vw;
    margin-bottom: 40vw;
  }

  .banner-en-title {
    font-size: 6.6vw;
    margin-bottom: 12vw;
  }

  .banner-btn {
    font-size: 28px;
    padding-bottom: 6px;
    border-bottom: solid 2px #000;
  }

  .button-next span {
    width: 24px;
    height: 24px;
    background-size: auto 24px;
    background-position: center right;
  }

  .button-prev span {
    width: 24px;
    height: 24px;
    background-size: auto 24px;
    background-position: center left;
  }

  .join-container {
    flex-direction: column;
    padding-right: 0;
  }

  .join-left {
    width: 100%;
    ;
    margin-top: 0;
    padding: 16px 20px;
  }

  .join-left.fix {
    width: 100%;
    margin-top: 0;
    padding: 16px 20px;
  }

  .join-swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .join-swiper .swiper-slide {
    display: inline-block;
    width: auto;
  }

  .join-right,
  .join-right.fix {
    width: 100%;
    padding: 40px 20px;
  }

  .join-right.fix-1 {
    width: 100%;
    padding: 0 20px 40px;
  }

  .join-title {
    font-size: 26px;
    height: 38px;
  }

  .join-en-title {
    font-size: 36px;
    padding-left: 0;
    margin-bottom: 0;
  }

  .join-bg {
    display: none;
  }

  .join-banner {
    padding: 0 20px 24px 20px;
    background-color: #F34C50;
  }

  .join-banner.fix {
    background-color: #3AA7A0;
  }

  .box-404 img {
    width: 260px;
  }

  .Leader-en-title span {
    text-align: left;
  }

  .sticky-swiper {
    position: sticky;
    top: 0;
    z-index: 11;
    padding: 12px 0;
    background-color: #ededed;
  }

  .container {
    padding: 0 20px 40px;
  }

  .team-name {
    font-size: 20px;
  }

  .join-info-btn a span {
    display: none;
  }

  .ach-box-text {
    padding: 0;
    margin: 12px 0px 12px;
  }

  .ach-row {
    margin: 0;
  }

  .ach-right {
    padding: 30px 20px 50px;
  }

  .ach-col {
    width: 100%;
    margin-bottom: 28px;
    padding: 0;
  }

  .ach-box {
    padding: 20px 0 40px 0;
    background-size: auto 100px;
  }

  .ach-card-title {
    font-size: 20px;
    padding: 0 0 8px;
  }

  .ach-tag-box {
    width: 100vw;
    padding: 8px 0 8px 20px;
    position: sticky;
    top: 0;
    left: 0;
    background-color: #ededed;
    z-index: 9;
  }

  .ach-container {
    background-size: auto 100px;
  }

  .ach-box-title {
    font-size: 20px;
    margin-top: 20px;
  }

  .ach-swiper.fix {
    width: 100%;
    margin: 0 auto;
    padding: 12px 0;
  }

  .ach-info-box {
    flex-direction: column;
  }

  .ach-info-left {
    width: 100%;
    margin-bottom: 24px;
  }

  .ach-info-right {
    width: 100%;
    padding-top: 0;
  }

}

@media (max-width:390px) {
  .ab-swiper-info {
    min-height: 246px;
  }

  .copy-link li a {
    font-size: 15px;
  }

}
