/* -----------------------------------------------
Common
-------------------------------------------------- */

.section_title {
  margin-bottom: 40px;
  text-align: center;
}

.section_title .title {
  font-size: 30px;
  line-height: 42px;
  color: #000;
  font-weight: 900;
  margin: 0;
  margin-bottom: 10px;
}

.section_title .sub_title {
  font-size: 16px;
  line-height: 24px;
  color: #696969;
  font-weight: 500;
  margin: 0;
}

.wrapper {
  max-width: 1320px;
  margin: auto;
}

.text_color {
  color: #3773f5 !important;
}

.sub_page_banner {
  width: 100vw;
  height: 50vh;
  position: relative;
  overflow: hidden;
}

.sub_page_banner video,
.sub_page_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
}

.sub_page_banner.on video,
.sub_page_banner.on img {
  transform: scale(1);
  transition: all 2s ease;
}

.sub_page_banner .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sub_page_banner .content > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sub_page_banner .content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  margin-bottom: 20px;
  opacity: 0;
  transition: all 1s ease;
  transition-delay: 0.8s;
}

.sub_page_banner.on .content p {
  opacity: 1;
}

.sub_page_banner .content h1 {
  font-size: 60px;
  line-height: 84px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  opacity: 0;
  margin-left: -40px;
  transition: all 1s ease;
  transition-delay: 1.6s;
}

.sub_page_banner.on .content h1 {
  opacity: 1;
  margin-left: 0px;
}

@media (max-width: 1360px) {
  .wrapper {
    max-width: 1200px;
  }
}

@media (max-width: 991px) {
  .sub_page_banner .content h1 {
    font-size: 40px;
    line-height: 56px;
  }
  .sub_page_banner .content p {
    margin-bottom: 15px;
  }
}

/* -----------------------------------------------
Home page
-------------------------------------------------- */

.home .menu_cmm {
  border-bottom: 0px;
}

.home .main_banner {
  width: 100%;
  height: 50vh;
  position: relative;
}

.home .main_banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home .main_banner .main_content {
  width: 100%;
  height: calc(100% - 60px);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 1s ease;
}

.home .main_banner .main_content.on {
  opacity: 1;
}

.home .main_banner .main_content img {
  width: 12vw;
  height: auto;
  margin: 0;
  margin-bottom: 30px;
}

.home .main_banner .main_content h1 {
  font-size: 32px;
  line-height: 44px;
  color: #fff;
  font-weight: 600;
  margin: 0;
  margin-bottom: 40px;
}

.home .main_banner .main_content a {
  border: 1px solid #ffffff;
  padding: 8px 20px;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.home section {
  margin-top: 60px;
}

.home .wafer_list .grid_box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.home .wafer_list .grid_box .item {
  width: 100%;
  aspect-ratio: 645/202;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
  background-size: cover;
}

.home .wafer_list .grid_box .item_1 {
  background: url("../images/main/polished_wafer_bg.png") no-repeat center
    center;
  background-size: cover;
}

.home .wafer_list .grid_box .item_2 {
  background: url("../images/main/epitaxial_wafer_bg.png") no-repeat center
    center;
  background-size: cover;
}

.home .wafer_list .grid_box .title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 800;
  color: #000;
  margin: 0;
  margin-bottom: 18px;
}

.home .wafer_list .grid_box .txt {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #696969;
  margin: 0;
  margin-bottom: 18px;
}

.home .wafer_list .grid_box .go_page_ico {
  display: inline-block;
  width: 63px;
  height: 31px;
  background: url("../images/main/go_to_ico.svg") no-repeat center center;
  transition: all 0.6s ease;
}

.home .wafer_list .grid_box .go_page_ico:hover {
  transform: translateX(10px);
}

.home .wafer_journey {
  background: url(../images/main/wafer_journey_bg.png) no-repeat center 250px;
  background-size: 100% auto;
}

.home .wafer_journey .row_1 {
  position: relative;
  height: 86px;
}

.home .wafer_journey .row_1 span {
  width: 160px;
  height: 86px;
  position: absolute;
  text-align: center;
  opacity: 0;
  transition: all 0.6s ease;
}

.home .wafer_journey .row_1 span img {
  width: auto;
  height: 100%;
}

.home .wafer_journey .row_1 span:nth-of-type(1) {
  left: 204px;
}

.home .wafer_journey.on .row_1 span:nth-of-type(1) {
  opacity: 1;
  left: 274px;
  transition-delay: 1.6s;
}

.home .wafer_journey .row_1 span:nth-of-type(2) {
  left: 393px;
}

.home .wafer_journey.on .row_1 span:nth-of-type(2) {
  opacity: 1;
  left: 433px;
  transition-delay: 1.2s;
}

.home .wafer_journey .row_1 span:nth-of-type(3) {
  width: 222px;
  padding: 0 0 2px;
  left: 50%;
  margin-left: -111px;
  margin-top: 80px;
}

.home .wafer_journey.on .row_1 span:nth-of-type(3) {
  opacity: 1;
  margin-top: 0px;
  transition-delay: 0.6s;
}

.home .wafer_journey .row_1 span:nth-of-type(4) {
  right: 393px;
}

.home .wafer_journey.on .row_1 span:nth-of-type(4) {
  opacity: 1;
  right: 433px;
  transition-delay: 1.2s;
}

.home .wafer_journey .row_1 span:nth-of-type(5) {
  right: 204px;
}

.home .wafer_journey.on .row_1 span:nth-of-type(5) {
  opacity: 1;
  right: 274px;
  transition-delay: 1.6s;
}

.home .wafer_journey .row_1:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #cdcdcd;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
  transform: scaleX(0);
}

.home .wafer_journey .row_1:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #cdcdcd;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.5s ease;
}

.home .wafer_journey.on .row_1:after {
  transform: scaleX(1);
}

.home .wafer_journey .row_2 {
  width: 730px;
  height: 355px;
  margin: 25px auto 0;
  padding-top: 50px;
  box-sizing: border-box;
  position: relative;
}

.home .wafer_journey .row_2 > span {
  opacity: 0;
  transition: all 0.6s ease;
}

.home .wafer_journey .row_2 > span.ingredient {
  width: 100%;
  text-align: center;
  display: block;
}

.home .wafer_journey .row_2 > span:nth-of-type(2):before,
.home .wafer_journey .row_2 > span:nth-of-type(4):before,
.home .wafer_journey .row_2 > span:nth-of-type(6):before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 100px;
  box-sizing: border-box;
  position: absolute;
}

.home .wafer_journey .row_2 > span:nth-of-type(2):before,
.home .wafer_journey .row_2 > span:nth-of-type(6):before {
  right: -9px;
  top: 9px;
}

.home .wafer_journey .row_2 > span:nth-of-type(4):before {
  left: -9px;
  top: 9px;
}

.home .wafer_journey .row_2 > span.txt {
  position: absolute;
  text-align: left;
  font-size: 16px;
  line-height: 26px;
  padding-right: 175px;
}

.home .wafer_journey .row_2 > span.txt:after {
  content: "";
  width: 152px;
  height: 1px;
  background: #000;
  position: absolute;
  right: 0;
  top: 50%;
}

.home .wafer_journey .row_2 > span:nth-of-type(2):after {
  width: 228px;
}

.home .wafer_journey .row_2 > span:nth-of-type(2) {
  left: -90px;
  top: 80px;
  padding-right: 248px;
}

.home .wafer_journey .row_2 > span:nth-of-type(2):after {
  width: 228px;
}

.home .wafer_journey .row_2 > span:nth-of-type(4):after {
  right: auto;
  left: 0;
}

.home .wafer_journey .row_2 > span:nth-of-type(1) {
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -63px;
}

.home .wafer_journey.on .row_2 > span:nth-of-type(1) {
  opacity: 1;
  transition-delay: 2.6s;
}

.home .wafer_journey .row_2 > span:nth-of-type(2) {
  left: -90px;
  top: 80px;
  padding-right: 248px;
}

.home .wafer_journey.on .row_2 > span:nth-of-type(2) {
  left: -15px;
  transition-delay: 2.6s;
  opacity: 1;
}

.home .wafer_journey .row_2 > span:nth-of-type(3) {
  margin-top: 60px;
}

.home .wafer_journey.on .row_2 > span:nth-of-type(3) {
  margin-top: 0px;
  opacity: 1;
  transition-delay: 2.2s;
}

.home .wafer_journey .row_2 > span:nth-of-type(4) {
  right: -150px;
  top: 178px;
  padding: 0 0 0 175px;
}

.home .wafer_journey.on .row_2 > span:nth-of-type(4) {
  opacity: 1;
  right: -30px;
  transition-delay: 3s;
}

.home .wafer_journey .row_2 > span:nth-of-type(5) {
  margin-top: -60px;
}

.home .wafer_journey.on .row_2 > span:nth-of-type(5) {
  margin-top: 8px;
  opacity: 1;
  transition-delay: 2.2s;
}

.home .wafer_journey .row_2 > span:nth-of-type(6) {
  left: -120px;
  top: 278px;
}

.home .wafer_journey.on .row_2 > span:nth-of-type(6) {
  left: -40px;
  opacity: 1;
  transition-delay: 3.4s;
}

.home .wafer_journey .row_2 > span:nth-of-type(7) {
  margin-top: -60px;
}

.home .wafer_journey.on .row_2 > span:nth-of-type(7) {
  margin-top: 0px;
  opacity: 1;
  transition-delay: 2.2s;
}

.home .wafer_journey .row_3 {
  margin-top: 35px;
  text-align: center;
}

.home .wafer_journey .row_3 a {
  height: 46px;
  display: inline-block;
  position: relative;
  background: #fff;
  padding: 0 56px;
  color: #000;
  font-size: 16px;
  line-height: 44px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #000;
  box-sizing: border-box;
}

.home .company_hightlight .content {
  width: 100%;
  aspect-ratio: 1320/416;
  background: url("../images/main/company_hightlight_bg.png") no-repeat center
    center;
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.home .company_hightlight .content .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home .company_hightlight .content .item .num {
  font-size: 24px;
  line-height: 24px;
  color: #fff;
  border-radius: 0 50% 50% 0;
  background-color: #255cff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .company_hightlight .content .item .txt {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
  margin-top: 20px;
}

.home .company_hightlight .content .item:hover .txt {
  border-bottom: 1px solid #fff;
}

.home .company_hightlight .button_group {
  margin-top: 50px;
  text-align: center;
}

.home .company_hightlight .button_group a {
  height: 46px;
  display: inline-block;
  position: relative;
  background: #fff;
  padding: 0 56px;
  color: #000;
  font-size: 16px;
  line-height: 44px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #000;
  box-sizing: border-box;
}

.home .insight_news {
  padding-bottom: 100px;
}

.home .insight_news .grid_box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.home .insight_news .item img {
  width: 100%;
  aspect-ratio: 420/245;
  object-fit: cover;
  object-position: center;
}

.home .insight_news .item .content {
  padding: 20px 25px 40px 25px;
  background-color: #f7f7f7;
}

.home .insight_news .item .content p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  margin-bottom: 20px;
}

.home .insight_news .item .content a {
  height: 32px;
  display: inline-block;
  position: relative;
  padding: 0 38px;
  color: #000;
  font-size: 14px;
  line-height: 30px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #000;
  box-sizing: border-box;
}

.home .highttech .content {
  position: relative;
  padding-bottom: 40px;
}

.home .highttech .slide_box {
  width: 60%;
  position: relative;
  z-index: 1;
  background: linear-gradient(89.93deg, #2241cb 0.07%, #01122f 99.95%);
}

.home .highttech .slide_box .slide_frame {
  width: 66.67%;
}

.home .highttech .slide_box .swiper {
  width: 100%;
}

.home .highttech .slide_box .swiper .swiper-slide {
  padding: 40px 15px 20px 30px;
}

.home .highttech .slide_box .swiper .swiper-slide p {
  margin: 0;
}

.home .highttech .slide_box .swiper .swiper-slide .title {
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.home .highttech .slide_box .swiper .swiper-slide .txt {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}

.home .highttech .slide_box .swiper-pagination-bullets {
  position: absolute;
  width: 66.67%;
  text-align: center;
  bottom: -20px;
}

.home
  .highttech
  .slide_box
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 3px;
  background: #0733fc;
}

.home .highttech .swiper-pagination-bullet {
  width: 7px;
  height: 3px;
  border-radius: 3px;
  background: #a6a6a6;
  margin: 0 2px !important;
}

.home .highttech .img_box {
  position: absolute;
  top: 40px;
  right: 0;
  width: 60%;
  aspect-ratio: 730/260;
  padding: 0 0 20px 20px;
  background-color: #f7f7f7;
}

.home .highttech .img_box .img_list {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #f7f7f7;
}

.home .highttech .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  z-index: 2;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s, transform 2s, -webkit-transform 2s;
}

.home .highttech .img_box img.on {
  z-index: 3;
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1366px) {
  .home .wafer_journey .row_1 {
    height: 60px;
  }

  .home .wafer_journey .row_1 span {
    width: 160px;
    height: 60px;
  }

  .home .wafer_journey .row_1 span:nth-of-type(3) {
    width: 180px;
    margin-left: -90px;
    margin-top: 60px;
  }

  .home .wafer_journey .row_1 span:nth-of-type(2) {
    left: 80px;
  }

  .home .wafer_journey.on .row_1 span:nth-of-type(2) {
    left: 280px;
  }

  .home .wafer_journey .row_1 span:nth-of-type(4) {
    right: 80px;
  }

  .home .wafer_journey.on .row_1 span:nth-of-type(4) {
    right: 280px;
  }

  .home .wafer_journey .row_1 span:nth-of-type(1) {
    left: 20px;
  }

  .home .wafer_journey.on .row_1 span:nth-of-type(1) {
    left: 100px;
  }

  .home .wafer_journey .row_1 span:nth-of-type(5) {
    right: 20px;
  }

  .home .wafer_journey.on .row_1 span:nth-of-type(5) {
    right: 100px;
  }
}

@media (max-width: 991px) {
  .section_title {
    margin-bottom: 20px;
  }

  .section_title .title {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 5px;
  }

  .wrapper {
    padding: 0 20px;
  }

  .home .main_banner .main_content img {
    width: 40vw;
  }

  .home .main_banner .main_content h1 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 30px;
  }

  .home .wafer_list .grid_box {
    grid-template-columns: 1fr;
  }

  .home .wafer_list .grid_box .item {
    padding: 0 20px;
    aspect-ratio: 388/175;
  }

  .home .wafer_list .grid_box .title {
    font-size: 18px;
    line-height: 24px;
  }

  .home .wafer_list .grid_box .txt {
    max-width: 70%;
  }

  .home .wafer_list .grid_box .item_1 {
    background: url("../images/main/polished_wafer_bg_mb.png") no-repeat center
      center;
    background-size: cover;
  }

  .home .wafer_list .grid_box .item_2 {
    background: url("../images/main/epitaxial_wafer_bg_mb.png") no-repeat center
      center;
    background-size: cover;
  }

  .home .wafer_journey .row_1 {
    height: 38px;
  }

  .home .wafer_journey .row_1 span {
    width: 70px;
    height: 38px;
  }

  .home .wafer_journey .row_1 span:nth-of-type(3) {
    width: 80px;
    margin-left: -40px;
    margin-top: 40px;
  }

  .home .wafer_journey .row_1 span:nth-of-type(2) {
    left: 50px;
  }

  .home .wafer_journey.on .row_1 span:nth-of-type(2) {
    left: 70px;
  }

  .home .wafer_journey .row_1 span:nth-of-type(4) {
    right: 50px;
  }

  .home .wafer_journey.on .row_1 span:nth-of-type(4) {
    right: 70px;
  }

  .home .wafer_journey .row_1 span:nth-of-type(1) {
    left: 0px;
  }

  .home .wafer_journey.on .row_1 span:nth-of-type(1) {
    left: 20px;
  }

  .home .wafer_journey .row_1 span:nth-of-type(5) {
    right: 0px;
  }

  .home .wafer_journey.on .row_1 span:nth-of-type(5) {
    right: 20px;
  }

  .home .wafer_journey .row_2 {
    width: 243px;
    height: 118px;
    padding-top: 20px;
  }

  .home .wafer_journey.on .row_2 > span:nth-of-type(1) {
    margin-left: -25px;
  }

  .home .wafer_journey.on .row_2 > span:nth-of-type(1) img {
    width: 48px;
    height: auto;
  }

  .home .wafer_journey.on .row_2 > span:nth-of-type(3) img {
    width: 93px;
    height: auto;
  }

  .home .wafer_journey.on .row_2 > span:nth-of-type(5) img {
    width: 161px;
    height: auto;
  }

  .home .wafer_journey.on .row_2 > span:nth-of-type(7) img {
    width: 161px;
    height: auto;
  }

  .home .wafer_journey .row_2 > span:nth-of-type(2) {
    top: 18px;
    padding-right: 50px;
  }

  .home .wafer_journey .row_2 > span:nth-of-type(2):after {
    width: 42px;
  }

  .home .wafer_journey .row_2 > span:nth-of-type(2) {
    top: 18px;
  }

  .home .wafer_journey .row_2 > span:nth-of-type(4) {
    top: 60px;
    padding: 0 0 0 50px;
  }

  .home .wafer_journey .row_2 > span:nth-of-type(4):after {
    width: 42px;
  }

  .home .wafer_journey .row_2 > span:nth-of-type(6) {
    top: 92px;
    padding-right: 50px;
  }

  .home .wafer_journey .row_2 > span:nth-of-type(6):after {
    width: 42px;
  }
  .home .wafer_journey.on .row_2 > span:nth-of-type(6) {
    left: -56px;
  }

  .home .wafer_journey {
    background: url(../images/main/wafer_journey_bg.png) no-repeat center 200px;
    background-size: 100% auto;
  }

  .home .wafer_journey .row_2 > span.txt {
    font-size: 12px;
  }

  .home .wafer_journey .row_3 a {
    font-size: 14px;
    line-height: 40px;
    height: 40px;
  }

  .home .insight_news .grid_box {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home .insight_news .item .content {
    padding: 20px 20px 30px 20px;
  }

  .home .insight_news .item .content p {
    font-size: 18px;
    line-height: 26px;
  }

  .home .highttech .slide_box {
    width: 100%;
  }

  .home .highttech .slide_box .slide_frame {
    width: 100%;
  }

  .home .highttech .slide_box .swiper .swiper-slide .title {
    font-size: 20px;
    line-height: 28px;
  }

  .home .highttech .content {
    padding-bottom: 20px;
  }

  .home .highttech .img_box {
    position: static;
    padding: 0;
    width: 100%;
    aspect-ratio: 730/300;
  }

  .home .highttech .slide_box .swiper .swiper-slide {
    padding: 20px 20px 15px 20px;
  }

  .home .highttech .slide_box .swiper-pagination-bullets {
    width: 100%;
  }

  .home .company_hightlight .content {
    gap: 30px;
    padding: 60px 20px;
    justify-content: flex-start;
  }

  .home .company_hightlight .content .item {
    flex-direction: row;
  }

  .home .company_hightlight .content .item .txt {
    margin-top: 0;
    margin-left: 10px;
  }

  .home .company_hightlight .button_group a {
    font-size: 14px;
    line-height: 40px;
    height: 40px;
  }

  .home .company_hightlight .button_group {
    margin-top: 40px;
  }
}

/* -----------------------------------------------
Login
-------------------------------------------------- */

.login .main {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
.login .main .bg_mb {
  display: none;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}
.login .main video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}
.login .main .login_wrap {
  width: 100%;
  height: 100%;
  background-color: #0000009e;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.login .text-danger {
  color: #dc3546;
}

.login .main .login_form {
  margin-top: -80px;
}

.login .main .login_form .btn-box {
  display: flex;
  gap: 20px;
}

.login .main .login_form > img {
  width: 250px;
  height: auto;
  margin: auto;
  display: block;
}

.login .main .login_form p {
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 10px;
}

.login .main .login_form input {
  background-color: #fff;
  border: 1px solid #000000;
  border-radius: 8px;
  padding: 10px 20px;
  width: 800px;
  height: 60px;
  font-size: 20px;
}

.login .main .login_form .row {
  margin-top: 30px;
}

.login .main .login_form button.btn-submit {
  width: 100px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  border-radius: 8px;
  background-color: #1e70da;
  margin-top: 30px;
}

.login .main .login_form button.btn-submit:hover {
  background-color: #096ae9;
}

.login .main .login_form a {
  display: inline-block;
  width: 100px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  border: 2px solid #6a6a6a;
  border-radius: 8px;
  margin-top: 30px;
  box-sizing: border-box;
}

.login .main .login_form .small {
  font-size: 14px;
  line-height: 14px;
  margin-top: 10px;
  display: none;
}

.login .password-box {
  position: relative;
}

.login .password-box button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 24px;
  height: 24px;
  background-image: url("../images/login/unshow.svg");
  background-size: cover;
  background-position: center;
}

.login .password-box button.show {
  background-image: url("../images/login/show.svg");
}

@media (max-width: 991px) {
  .login .main .login_form input {
    width: 340px;
    height: 50px;
  }
  .login .main .login_form > img {
    width: 200px;
    height: auto;
  }
  .login .main .bg_pc {
    display: none;
  }
  .login .main .bg_mb {
    display: block;
  }
  .login .password-box button {
    top: 14px;
    right: 10px;
    width: 20px;
    height: 20px;
  }
}

/* -----------------------------------------------
Register
-------------------------------------------------- */

.register .main {
  width: 100%;
  min-height: 100vh;
  background-image: url(../images/login/agree_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.register .main .step_box {
  display: none;
}

.register .main .text-danger {
  color: #dc3546;
}

.register .main .agreement-box {
  width: 500px;
  display: block;
}

.register .main .agreement_bg {
  background-color: #fff;
  padding: 20px 20px 60px 20px;
  border-radius: 9px;
  width: 100%;
}

.register .main .agreement-box .title {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  text-align: center;
}

.register .main .agreement-box .sub_title {
  font-size: 16px;
  line-height: 16px;
  color: #787878;
  margin-bottom: 30px;
  text-align: center;
}

.register .main .agreement-box .form-check label {
  font-size: 15px;
  line-height: 15px;
  color: #000;
}

.register
  .main
  .agreement-box
  .form-check
  input[type="checkbox"]#checkbox1:checked
  + span {
  border-color: red;
  background-color: red;
}

.register .main .form-check-container {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* -----------------------------------------------
Company
-------------------------------------------------- */

.company section {
  margin-top: 60px;
}

.company .top_text {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #d8d8d8;
}

.company .top_text h3 {
  font-size: 32px;
  font-weight: 900;
  line-height: 40px;
  color: #000;
}

.company .top_text p {
  font-size: 16px;
  line-height: 24px;
  color: #696969;
}

.company .summary01 h3 {
  font-size: 28px;
  line-height: 34px;
  font-weight: 900;
  color: #000;
}

.company .summary01 table {
  width: 100%;
  border-top: 2px solid #000;
}
.company .summary01 table th {
  background: #fafafa;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 1px solid #d5d5d5;
  vertical-align: middle;
  text-align: left;
  padding-left: 50px;
}
.company .summary01 table thead th {
  padding: 12px 0;
}
.company .summary01 table tbody td {
  color: #000;
  padding: 12px 0;
  border-bottom: 1px solid #d5d5d5;
  text-align: left;
  padding-left: 50px;
  font-size: 16px;
}
.company .summary01 table tr td.first {
  border-left: 0;
}

.company .summary01 .table_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.company .summary02 {
  padding: 76px 0 80px;
  border-bottom: 0;
}

.company .summary02 > p {
  font-size: 1.25rem;
  line-height: 2.125rem;
  color: #000;
  margin: 0 0 90px;
}
.company .summary02 > p strong {
  font-family: "NotokrM";
  color: #d70000;
  font-weight: normal;
}
.company .summary02 > h3 {
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 1;
  border: 0;
  text-align: center;
}
.company .summary02 > h3:after {
  content: "";
  position: absolute;
  left: 0;
  top: 139px;
  width: 100%;
  border-top: 1px solid #d3d3d3;
  z-index: 0;
}
.company .summary02 > h3 > img {
  position: relative;
  z-index: 100;
}
.company .summary02 > ul {
  width: 100%;
  height: fit-content;
  margin: -300px auto 0;
  padding: 60px 0;
  text-align: left;
  overflow: hidden;
  list-style-type: none;
}
.company .summary02 > ul li {
  height: 160px;
  float: left;
  text-align: center;
  position: relative;
  opacity: 1;
}
.company .summary02 > ul li:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -5.5px 0 0 -5.5px;
  width: 11px;
  height: 11px;
  border-radius: 100px;
  background: #d0112b;
  box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.3);
}
.company .summary02 > ul li:nth-child(even):after {
  background: #ef7622;
}
.company .summary02 > ul li:nth-child(1) {
  width: 13%;
}
.company .summary02 > ul li:nth-child(2) {
  width: 24%;
}
.company .summary02 > ul li:nth-child(3) {
  width: 20%;
  margin-left: 26%;
}
.company .summary02 > ul li:nth-child(4) {
  width: 17%;
}
.company .summary02 > ul li strong {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 1.5rem;
  color: #000;
  font-family: "NotokrM";
  font-weight: normal;
  opacity: 1;
}
.company .summary02 > ul li span {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  opacity: 1;
}
.company .summary02 > ul li:nth-child(odd) strong,
.company .summary02 > ul li:nth-child(even) span {
  top: 137px;
}

.company .summary03 {
  margin-top: 80px;
}

.company .summary03 h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #000;
  text-align: center;
  margin-bottom: 60px;
}

.company .summary03 .grid_box {
  display: grid;
  grid-template-columns: 3fr 4fr;
  gap: 50px;
  position: relative;
}

.company .summary03 .grid_box h3 {
  position: absolute;
  top: 0;
  left: 0;
}

.company .summary03 .grid_box .img_box {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}

.company .summary03 .grid_box .img_box img {
  width: 100%;
  height: auto;
}

.company .summary03 .grid_box .content_box {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}

.company .summary03 em {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: #000;
}

.company .summary03 p {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #000;
  margin-top: 20px;
}

.company .summary04 {
  text-align: center;
  min-height: 500px;
}

.company .summary04 h2 {
  font-size: 28px;
  font-weight: 900;
  color: #000;
  text-align: left;
  padding: 0 0 30px;
  border-bottom: 1px solid #d8d8d8;
}

.company .summary04 h3 {
  font-size: 32px;
  font-weight: 800;
  color: #000;
  margin-top: 40px;
}

.company .summary04 p {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
}

.company .summary04 .mmt_system {
  width: 88.2%;
  margin: -500px auto 0;
  background: url("../images/main/wafer_journey_bg.png") no-repeat center 0px;
  background-size: 100%;
  opacity: 0;
  transition: all 1s ease;
  transition-delay: 0.4s;
}

.company .summary04.on .mmt_system {
  margin-top: 40px;
  opacity: 1;
}

.company .summary04 .mmt_system .manage_sp {
  display: none;
}

.company .summary04 .mmt_system > div {
  width: 850px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  text-align: center;
  transition: all 0.4s ease;
  transition-delay: 0.6s;
}

.company .summary04.on .mmt_system > div {
  opacity: 1;
}

.company .summary04 .manage01 {
  width: 350px;
  height: 221px;
  text-align: center;
  margin: 0 auto 30px;
  opacity: 1;
}
.company .summary04 .manage02 {
  position: absolute;
  left: 0;
  bottom: 95px;
  opacity: 0;
  transition: all 0.6s ease;
  transition-delay: 1.2s;
}
.company .summary04 .manage03_mb {
  display: none;
}
.company .summary04.on .manage02 {
  opacity: 1;
}
.company .summary04 .manage03 {
  position: absolute;
  right: 0;
  bottom: 75px;
  opacity: 0;
  transition: all 0.6s ease;
  transition-delay: 1.6s;
}
.company .summary04 .manage02_mb {
  display: none;
}
.company .summary04.on .manage03 {
  opacity: 1;
}
.company .summary04 [class^="manage0"] > span {
  display: inline-block;
  width: 120px;
  height: 120px;
  background: #3773f5;
  border-radius: 100%;
  color: #fff;
  font-size: 1.71rem;
  line-height: 120px;
  font-family: "NotokrM";
  vertical-align: middle;
  text-align: center;
}
.company .summary04 [class^="manage0"] > img {
  vertical-align: middle;
  opacity: 0;
}
.company .summary04 .manage01 > img {
  margin-top: -30px;
  transition: all 0.6s ease;
  transition-delay: 1.4s;
}
.company .summary04.on .manage01 > img {
  margin-left: 0px;
  opacity: 1;
}
.company .summary04 .manage02 > img {
  margin-left: -30px;
  transition: all 0.6s ease;
  transition-delay: 1.4s;
}
.company .summary04.on .manage02 > img {
  margin-left: 0px;
  opacity: 1;
}
.company .summary04 .manage03 > img {
  margin-right: -30px;
  transition: all 0.6s ease;
  transition-delay: 1.8s;
}
.company .summary04.on .manage03 > img {
  margin-right: 0px;
  opacity: 1;
}

.company .summary05 {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}

.company .summary05 h3 {
  font-size: 32px;
  font-weight: 800;
  color: #000;
  margin-top: 40px;
}

.company .summary05 .vwbe {
  margin-top: 60px;
  position: relative;
  z-index: 10;
}
.company .summary05 .vwbe > div {
  width: 86%;
  margin: 0 auto;
}
.company .summary05 .vwbe > div > span {
  display: inline-block;
  width: 33.3%;
  padding-top: 170px;
  background: url("../images/company/bg_work01.png") no-repeat center top;
  opacity: 0;
  text-align: center;
  transition: all 0.8s ease;
  color: #696969;
  line-height: 24px;
}
.company .summary05 .vwbe > div > span:nth-of-type(2) {
  background: url("../images/company/bg_work02.png") no-repeat center top;
}
.company .summary05 .vwbe > div > span:nth-of-type(3) {
  background: url("../images/company/bg_work03.png") no-repeat center top;
}
.company .summary05 .vwbe > div > span + span {
  margin-left: -4px;
}
.company .summary05 .vwbe > div > span strong {
  display: block;
  font-size: 25px;
  line-height: 40px;
  font-weight: 700;
  color: #003cbd;
  margin: 0 0 10px;
}
.company .summary05 .vwbe > div span:nth-of-type(2) strong {
  color: #3773f5;
}
.company .summary05 .vwbe > div span:nth-of-type(3) strong {
  color: #000;
}

.company .summary05 .vwbe + a.btn_type01 {
  margin-top: 55px;
}

.company .summary05 .vwbe.on > div > span {
  opacity: 1;
}

.company .summary05 .vwbe > div > span:nth-of-type(1) {
  transition-delay: 0.4s;
}

.company .summary05 .vwbe > div > span:nth-of-type(2) {
  transition-delay: 1s;
}

.company .summary05 .vwbe > div > span:nth-of-type(3) {
  transition-delay: 1.4s;
}

@media (max-width: 1279px) {
  .company .summary05 .vwbe > div > span {
    font-size: 14px;
    line-height: 22px;
  }
  .company .top_text h3 {
    font-size: 26px;
    line-height: 36px;
  }
  .company .summary01 h3 {
    font-size: 26px;
    line-height: 36px;
  }
  .company .summary03 em {
    font-size: 22px;
    line-height: 28px;
  }
  .company .summary04 h2 {
    font-size: 24px;
    padding: 0 0 25px;
  }
  .company .summary03 .grid_box {
    gap: 30px;
  }
  .company .summary03 p {
    line-height: 24px;
  }
  .company .summary04 h3 {
    font-size: 26px;
  }
  .company .summary05 h3 {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .company section {
    margin-top: 40px;
  }
  .company .top_text h3 {
    font-size: 24px;
    line-height: 34px;
  }
  .company .summary01 h3 {
    font-size: 24px;
    line-height: 34px;
  }
  .company .summary01 .table_box {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .company .summary01 table th,
  .company .summary01 table tbody td {
    padding-left: 10px;
  }
  .company .summary03 {
    margin-top: 40px;
  }
  .company .summary03 h3 {
    margin-bottom: 40px;
  }
  .company .summary03 .grid_box {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .company .summary03 em {
    display: block;
    text-align: center;
    font-size: 20px;
    line-height: 28px;
  }
  .company .summary04 h2 {
    font-size: 24px;
    padding: 0 0 20px;
  }
  .company .summary04 h3 {
    font-size: 24px;
    margin-top: 30px;
  }
  .company .summary04 [class^="manage0"] > span {
    width: 90px;
    height: 90px;
    line-height: 90px;
    font-size: 20px;
  }
  .company .summary04 .mmt_system {
    width: 100%;
    background: url(../images/main/wafer_journey_bg.png) no-repeat center 200px;
    background-size: contain;
  }
  .company .summary04 .mmt_system > div {
    padding: 166px 0;
    width: calc(100% - 40px);
  }
  .company .summary04 .mmt_system > div > img {
    width: 180px;
    height: auto;
  }
  .company .summary04 .mmt_system .manage_pc {
    display: none;
  }
  .company .summary04 .mmt_system .manage_sp {
    display: inline;
  }
  .company .summary04 .manage02 {
    display: none;
  }
  .company .summary04 .manage02_mb {
    position: absolute;
    top: 0;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.6s ease;
    transition-delay: 1.2s;
    width: 100%;
  }
  .company .summary04.on .manage02_mb {
    opacity: 1;
  }
  .company .summary04 .manage02_mb > img {
    margin-top: -30px;
    transition: all 0.6s ease;
    transition-delay: 1.4s;
    height: 55px;
    width: auto;
  }
  .company .summary04.on .manage02_mb > img {
    margin-top: 10px;
    opacity: 1;
  }
  .company .summary04 .manage03 {
    display: none;
  }
  .company .summary04 .manage03_mb {
    position: absolute;
    bottom: 0;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.6s ease;
    transition-delay: 1.2s;
    width: 100%;
  }
  .company .summary04.on .manage03_mb {
    opacity: 1;
  }
  .company .summary04 .manage03_mb > img {
    margin-bottom: -30px;
    transition: all 0.6s ease;
    transition-delay: 1.4s;
    height: 55px;
    width: auto;
  }
  .company .summary04.on .manage03_mb > img {
    margin-bottom: 10px;
    opacity: 1;
  }
  .company .summary05 {
    margin-top: 60px;
  }
  .company .summary05 h3 {
    font-size: 24px;
  }
  .company .summary05 .vwbe {
    margin-top: 30px;
  }
  .company .summary05 .vwbe > div > span {
    width: 100%;
    margin-bottom: 20px;
  }
  .company .summary05 .vwbe > div > span strong {
    font-size: 22px;
    line-height: 36px;
    margin: 0 0 6px;
  }
}

/* -----------------------------------------------
Business
-------------------------------------------------- */

.business .top_text {
  margin-top: 60px;
  margin-bottom: 100px;
  position: relative;
}

.business .top_text h3 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
}

.business .top_text:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -110px;
  width: 1px;
  height: 80px;
  background: #d5d5d5;
}

.business .business01 {
  margin-top: 150px;
}

.business .business02 {
  margin-top: 80px;
}

.business .business_wafer h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.business .business_wafer h3 p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #696969;
  margin-top: 10px;
}

.business .business_wafer p {
  margin: 0;
}

.business .business_wafer .row_1 {
  background: url(../images/business/bg_polished.png) no-repeat center center;
  opacity: 0;
  text-align: center;
  transition: all 1s ease;
  transition-delay: 0.4s;
}

.business .business02.business_wafer .row_1 {
  background: url(../images/business/bg_epitaxial.png) no-repeat center center;
}

.business .business_wafer .row_1.on {
  opacity: 1;
}

.business .business_wafer .row_1 .con_bus1 {
  opacity: 0;
  margin-left: -100px;
  transition: all 0.8s ease;
  transition-delay: 1.4s;
  position: relative;
  z-index: 2;
}

.business .business_wafer .row_1 .con_bus2 {
  opacity: 0;
  margin-left: -160px;
  transition: all 0.8s ease;
  transition-delay: 0.8s;
}

.business .business_wafer .row_1.on .con_bus1 {
  opacity: 1;
  margin-left: 0;
}

.business .business_wafer .row_1.on .con_bus2 {
  opacity: 1;
  margin-left: -60px;
}

.business .business_wafer .row_2 {
  margin-top: 40px;
}

.business .business_wafer .row_2 .grid_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15%;
}

.business .business_wafer .row_2 .grid_chil {
  display: flex;
  justify-content: space-between;
}

.business .business_wafer .row_2 .txt_box {
  height: 100px;
  width: 100%;
  text-align: center;
}

.business .business_wafer .row_2 .txt_box p {
  text-align: end;
}

.business .business_wafer .row_2 .txt_box .num {
  font-size: 64px;
  line-height: 50px;
  font-weight: 700;
  color: #d5d5d5;
}

.business .business_wafer .row_2 .txt_box .unit {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: #d5d5d5;
}

.business .business_wafer .row_2 .txt_box img {
  max-height: 100%;
  width: auto;
}

.business .business_wafer .row_2 .grid_chil .note {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.business .business_wafer .row_2 .grid_chil .note.text_end {
  text-align: end;
}

.business .business03 {
  margin-top: 80px;
  margin-bottom: 100px;
}

.business .business03 h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.business .business03 .img_box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
  padding: 0 30px;
}

.business .business03 .img_box button {
  transition: all 0.6s ease;
  padding: 0;
  position: relative;
}

.business .business03 .img_box button img {
  aspect-ratio: 185/104;
  object-fit: cover;
  object-position: center;
  width: 100%;
  filter: grayscale(100%);
  transition: 0.4s;
}

.business .business03 .img_box button:hover::before,
.business .business03 .img_box button.on::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid #3773f5;
  z-index: 1;
  transition: 0.4s;
}

.business .business03 .img_box button.on img {
  filter: grayscale(0%);
}

.business .business03 .swiper-slide {
  padding: 0 30px;
}

.business .business03 .swiper-slide .banner_box {
  padding-right: 30px;
  position: relative;
}

.business .business03 .swiper-slide .banner_box img {
  width: 100%;
  aspect-ratio: 1156/396;
  object-fit: cover;
  object-position: center;
}

.business .business03 .swiper-slide .banner_box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: calc(100% + 40px);
  background-color: #f8f8f8;
  z-index: -1;
}

.business .business03 .swiper-slide > .txt_box {
  width: 100%;
  padding: 45px 0 45px 100px;
  box-sizing: border-box;
  text-align: left;
}
.business .business03 .swiper-slide > .txt_box > span {
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 8px 50px;
  opacity: 0;
  color: #696969;
}
.business .business03 .swiper-slide.swiper-slide-active > div > span {
  opacity: 1;
  margin-left: 0px;
  transition: opacity 1s ease, margin 1s ease;
  transition-delay: 0.2s;
}
.business .business03 .swiper-slide > div > strong {
  display: inline-block;
  font-size: 24px;
  line-height: 32px;
  color: #000;
  font-weight: 500;
  border-bottom: 1px solid #000;
  padding: 0;
  margin-left: 50px;
  opacity: 0;
  position: relative;
}
.business .business03 .swiper-slide.swiper-slide-active > div > strong {
  opacity: 1;
  margin-left: 0px;
  transition: opacity 1s ease, margin 1s ease;
  transition-delay: 0.6s;
}
.business .business03 .swiper-slide > div i {
  font-style: normal;
  margin-left: -20px;
  position: absolute;
}
.business .business03 .swiper-slide > div > p {
  font-size: 16px;
  word-break: keep-all;
  margin-top: 20px;
  margin-bottom: 0;
  padding: 0;
  opacity: 0;
  margin-left: 50px;
}
.business .business03 .swiper-slide.swiper-slide-active > div > p {
  opacity: 1;
  margin-left: 0px;
  color: #696969;
  transition: opacity 1s ease, margin 1s ease;
  transition-delay: 1s;
}
.business .business03 .swiper-button-next,
.business .business03 .swiper-button-prev {
  width: 14px;
  height: 22px;
  top: calc(50% - 132px);
  margin-top: 0px;
}

.business .business03 .swiper-button-next:after,
.business .business03 .swiper-button-prev:after {
  font-size: 22px;
  color: #000;
}
.business .business03 .swiper-button-next.swiper-button-disabled,
.business .business03 .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

@media (max-width: 991px) {
  .business .top_text {
    margin-top: 40px;
  }
  .business .top_text h3 {
    font-size: 24px;
    line-height: 34px;
  }
  .business .top_text:after {
    bottom: -90px;
    height: 60px;
  }
  .business .business01 {
    margin-top: 130px;
  }
  .business .business02 {
    margin-top: 60px;
  }
  .business .business_wafer h3 {
    margin-bottom: 30px;
  }
  .business .business_wafer .row_1,
  .business .business02.business_wafer .row_1 {
    background: none;
  }
  .business .business_wafer .row_1.on .con_bus1 img {
    width: 160px;
    height: auto;
  }
  .business .business_wafer .row_1.on .con_bus2 img {
    width: 220px;
    height: auto;
  }
  .business .business_wafer .row_2 .txt_box .num {
    font-size: 50px;
    line-height: 40px;
  }
  .business .business_wafer .row_2 .grid_chil {
    flex-wrap: wrap;
    gap: 0;
  }
  .business .business_wafer .row_2 .grid_box {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .business .business_wafer .row_2 .txt_box img {
    max-height: 60px;
  }
  .business .business_wafer .row_2 .txt_box {
    height: 80px;
  }
  .business .business_wafer .row_2 .content.mb_w_100 {
    width: 100%;
    margin-top: 30px;
  }
  .business .business_wafer .row_2 .grid_chil .note {
    font-size: 11px;
  }
  .business .business03 {
    margin-top: 60px;
    margin-bottom: 0;
  }
  .business .business03 h3 {
    margin-bottom: 30px;
  }
  .business .business03 .swiper-slide .banner_box img {
    aspect-ratio: 348/203;
  }
  .business .business03 .swiper-slide .banner_box::after {
    width: 0;
    height: 0;
  }
  .business .business03 .swiper-slide .banner_box {
    padding-right: 0;
  }
  .business .business03 .swiper-slide > div > p {
    display: none;
  }
  .business .business03 .swiper-slide > .txt_box {
    padding: 20px 0 20px 20px;
    min-height: 200px;
  }
  .business .business03 .swiper-slide > div > strong {
    font-size: 16px;
  }
  .business .business03 .swiper-slide > div i {
    margin-left: -18px;
  }
  .business .business03 .swiper-slide > .txt_box > span {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 3px;
  }
  .business .business03 .swiper-slide {
    padding: 0;
  }
}

/* -----------------------------------------------
Office
-------------------------------------------------- */
.office dl,
.office dt,
.office dd {
  margin: 0;
  padding: 0;
}

.office .corporate {
  text-align: center;
  margin-top: 60px;
}
.office .corporate > span {
  color: #000;
  font-weight: 700;
  padding-left: 25px;
  position: relative;
  opacity: 0;
}
.office .corporate > span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 15px;
  height: 4px;
  background: #003cbd;
}
.office .corporate > span:nth-of-type(2):after {
  background: #22960b;
}
.office .corporate > span:nth-of-type(3):after {
  background: #000;
}
.office .corporate > span ~ span {
  margin-left: 26px;
}
.office .map {
  width: 1128px;
  height: 567px;
  margin: 60px auto 0;
  background: url("../images/office/bg_map.png") no-repeat center top;
  background-size: cover;
  position: relative;
  opacity: 0;
}
.office .map > button {
  position: absolute;
  padding: 0 0 30px;
  color: #000;
  opacity: 0;
  font-weight: 700;
}
.office .map > button:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-radius: 100%;
  border: 5px solid #000;
  box-sizing: border-box;
  background: #fff;
}
.office .map > button:nth-of-type(1) {
  left: 113px;
  top: 168px;
}
.office .map > button:nth-of-type(2) {
  left: 204px;
  top: 225px;
}
.office .map > button:nth-of-type(3) {
  left: 532px;
  top: 173px;
}
.office .map > button:nth-of-type(4) {
  right: 224px;
  top: 172px;
}
.office .map > button:nth-of-type(5) {
  right: 169px;
  top: 210px;
}
.office .map > button:nth-of-type(6) {
  right: 95px;
  top: 205px;
}
.office .map > button:nth-of-type(1):after,
.office .map > button:nth-of-type(4):after,
.office .map > button:nth-of-type(6):after {
  border: 5px solid #003cbd;
}
.office .map > button:nth-of-type(5):after {
  border: 5px solid #22960b;
}
.office .branch_box {
  position: absolute;
  border: 1px solid #666;
  padding: 20px;
  background: #fff;
  box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.25);
  display: none;
}
.office .branch_box:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 12px;
  height: 11px;
  margin-left: -6px;
  background: url("../images/office/bg_branch.png") no-repeat center top;
}
.office .branch_box > dl {
  width: 100%;
  line-height: 1.71rem;
  color: #000;
  margin-top: 20px;
}
.office .branch_box > dl dt,
.office .branch_box > dl dd {
  display: inline;
}
.office .map > button:nth-of-type(1) + .branch_box {
  top: -67px;
  left: 46px;
}
.office .map > button:nth-of-type(2) + .branch_box {
  top: -10px;
  left: 160px;
}
.office .map > button:nth-of-type(3) + .branch_box {
  top: -63px;
  left: 473px;
}
.office .map > button:nth-of-type(4) + .branch_box {
  top: -63px;
  right: 157px;
}
.office .map > button:nth-of-type(5) + .branch_box {
  top: -24px;
  right: 102px;
}
.office .map > button:nth-of-type(6) + .branch_box {
  top: -30px;
  right: 29px;
}
.office .map > button:hover + .branch_box {
  display: block;
}
.office .corporate.on > span:nth-of-type(1) {
  transition: opacity 0.3s ease 0.2s;
  opacity: 1;
}
.office .corporate.on > span:nth-of-type(2) {
  transition: opacity 0.3s ease 0.5s;
  opacity: 1;
}
.office .corporate.on > span:nth-of-type(3) {
  transition: opacity 0.3s ease 0.8s;
  opacity: 1;
}
.office .corporate.on .map {
  transition: opacity 0.6s ease 1.1s;
  opacity: 1;
}
.office .corporate.on .map > button:nth-of-type(1) {
  transition: opacity 0.4s ease 1.6s;
  opacity: 1;
}
.office .corporate.on .map > button:nth-of-type(4) {
  transition: opacity 0.4s ease 1.9s;
  opacity: 1;
}
.office .corporate.on .map > button:nth-of-type(6) {
  transition: opacity 0.4s ease 2.2s;
  opacity: 1;
}
.office .corporate.on .map > button:nth-of-type(5) {
  transition: opacity 0.4s ease 2.5s;
  opacity: 1;
}
.office .corporate.on .map > button:nth-of-type(2) {
  transition: opacity 0.4s ease 2.8s;
  opacity: 1;
}
.office .corporate.on .map > button:nth-of-type(3) {
  transition: opacity 0.4s ease 3.1s;
  opacity: 1;
}

.office .address {
  margin-top: 80px;
  margin-bottom: 100px;
}
.office .address h3 {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #000;
  margin: 0 0 20px;
  border: 0;
  text-align: left;
}
.office .address h3 ~ h3 {
  margin-top: 36px;
}
.office .address > div {
  width: 100%;
  display: block;
  text-align: left;
  font-size: 0;
}
.office .address > div a {
  display: inline-block;
  width: 50%;
  font-size: 1rem;
  vertical-align: top;
}
.office .address > div a div {
  width: 100%;
  border: 1px solid #d5d5d5;
  padding: 36px 48px 40px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.office .address > div a div > img {
  float: left;
}
.office .address > div a div > dl {
  width: calc(100% - 180px);
  position: relative;
  float: left;
  margin-left: 30px;
}
.office .address > div a:hover div {
  border: 1px solid #000;
  box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.25);
  z-index: 100;
}
.office .address > div a:nth-child(even) {
  margin-left: -1px;
}
.office .address > div a:nth-child(even) ~ a {
  margin-top: -1px;
}
.office .address > div dl dt {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 0 0 20px;
}
.office .address > div dl dd {
  font-size: 16px;
  line-height: 22px;
  padding: 0 100px 0 0;
  word-wrap: break-word;
  color: #696969;
}
.office .address > div dl dd:after {
  content: "";
  width: 27px;
  height: 34px;
  position: absolute;
  right: 2px;
  top: 50%;
  margin-top: -17px;
  background: url("../images/office/location.png") no-repeat center top;
}
.office .address > div a:hover dl dd:after {
  background-position: center -64px;
}
.office .address > div:nth-of-type(2) > a:hover dl dd:after {
  background-position: center -128px;
}
.office .address > div:nth-of-type(3) > a:hover dl dd:after {
  background-position: center -192px;
}

@media (max-width: 991px) {
  .office .corporate {
    margin-top: 40px;
  }
  .office .corporate > span {
    padding-left: 20px;
  }
  .office .corporate > span:after {
    left: 0;
    top: 8px;
    width: 12px;
    height: 3px;
  }
  .office .corporate > span ~ span {
    margin-left: 26px;
  }
  .office .map {
    width: 100%;
    aspect-ratio: 1128/567;
    height: auto;
    margin: 40px auto 0;
    position: relative;
  }
  .office .map > img {
    width: 100%;
  }
  .office .map > button {
    padding: 0 0 15px;
    font-size: 0.6rem;
  }
  .office .map > button:after {
    left: 50%;
    bottom: 0;
    width: 11px;
    height: 11px;
    margin-left: -5px;
    border: 3px solid #000;
  }
  .office .map > button:nth-of-type(1) {
    left: 1%;
    top: 24%;
  }
  .office .map > button:nth-of-type(2) {
    left: 13%;
    top: 35%;
  }
  .office .map > button:nth-of-type(3) {
    left: 43.43%;
    top: 25%;
  }
  .office .map > button:nth-of-type(4) {
    right: 18%;
    top: 23.5%;
  }
  .office .map > button:nth-of-type(5) {
    right: 10%;
    top: 31%;
  }
  .office .map > button:nth-of-type(6) {
    right: 4%;
    top: 43%;
    padding: 15px 0 0;
  }
  .office .map > button:nth-of-type(1):after,
  .office .map > button:nth-of-type(4):after,
  .office .map > button:nth-of-type(6):after {
    border: 3px solid #003cbd;
  }
  .office .map > button:nth-of-type(5):after {
    border: 3px solid #22960b;
  }
  .office .map > button:nth-of-type(6):after {
    bottom: auto;
    top: 0;
  }
  .office .branch_box {
    text-align: left;
  }
  .office .branch_box:after {
    left: 50%;
    bottom: -11px;
    width: 12px;
    height: 11px;
    margin-left: -6px;
  }
  .office .branch_box > img {
    float: left;
    margin-right: 20px;
  }
  .office .branch_box > img + dl {
    float: left;
    line-height: 1.71rem;
  }
  .office .branch_box > dl {
    min-width: 198px;
    line-height: 1.71rem;
    margin: -4px 0;
  }
  .office .branch_box > dl dd {
    margin-top: 2px;
  }
  .office .branch_box > dl dd + dt {
    border-top: 1px solid #d5d5d5;
    margin-top: 18px;
    padding-top: 16px;
  }
  .office .map > button:nth-of-type(1) + .branch_box {
    top: -12px;
    left: -4px;
  }
  .office .map > button:nth-of-type(1) + .branch_box:after {
    left: 134px;
    margin-left: 0;
  }
  .office .map > button:nth-of-type(2) + .branch_box {
    top: 43px;
    left: 122px;
  }
  .office .map > button:nth-of-type(3) + .branch_box {
    top: -8px;
    left: 445px;
  }
  .office .map > button:nth-of-type(4) + .branch_box {
    top: -63px;
    right: 59px;
  }
  .office .map > button:nth-of-type(5) + .branch_box {
    top: 6px;
    right: -2px;
  }
  .office .map > button:nth-of-type(6) + .branch_box {
    top: 0;
    right: 36px;
  }
  .office .map > button:nth-of-type(6) + .branch_box:after {
    left: auto;
    right: 80px;
    margin-left: 0;
  }

  .office .address_mb {
    margin-top: 60px;
    margin-bottom: 80px;
    border-top: 1px solid #d8d8d8;
  }
  .office .address_mb:after {
    border: 0;
    position: static;
  }
  .office .address_mb h3 {
    display: block;
    font-size: 20px;
    color: #000;
    margin: 20px 0 0;
    border: 0;
    text-align: left;
  }
  .office .address_mb > div {
    width: 100%;
    display: inline-block;
    text-align: left;
  }
  .office .address_mb > div a {
    width: 100%;
  }
  .office .address_mb > div dl {
    width: 100%;
    padding: 20px 0 16px;
    box-sizing: border-box;
    position: relative;
    border-bottom: 1px solid #d5d5d5;
  }
  .office .address_mb > div dl dt {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0;
  }
  .office .address_mb > div dl dd {
    overflow: hidden;
    margin-top: 16px;
    display: table;
  }
  .office .address_mb > div dl dd span {
    width: 25.8%;
    display: table-cell;
  }
  .office .address_mb > div dl dd span img {
    width: 100%;
  }
  .office .address_mb > div dl dd p {
    width: 67.2%;
    display: table-cell;
    font-size: 13px;
    line-height: 18px;
    color: #696969;
    vertical-align: middle;
    box-sizing: border-box;
    padding-left: 15px;
  }
  :root {
    --non-: 3px solid transparent;
  }
  .office .address_mb > div dl:after {
    content: "";
    width: 15px;
    height: 19px;
    position: absolute;
    right: 0;
    top: 20px;
    background: url("../images/office/location_mb.png") no-repeat center -33px;
    background-size: 100%;
  }
  .office .address_mb > div:nth-of-type(2) dl:after {
    background-position: center -66px;
  }
  .office .address_mb > div:nth-of-type(3) dl:after {
    background-position: center -99px;
  }
}

/* -----------------------------------------------
Review
-------------------------------------------------- */

.review .menu_cmm{
  border-bottom: 0;
}
.review .params_list {
  margin-top: 60px;
}
.review h3,
.review p{
  margin: 0;
}
.review .params_list .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  color: #222222;
  margin: 0;
  margin-bottom: 30px;
  text-align: center;
}
.review .params_list .video-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.review .params_list .video-list img {
  width: 100%;
  height: auto;
}
.review .invest_review {
  margin-top: 60px;
  margin-bottom: 100px;
}
.review .invest_review .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  color: #222222;
  margin-bottom: 30px;
}
.review .invest_review .filter_box select {
  width: 105px;
  height: 45px;
  margin-right: 10px;
  border-radius: 8px;
  border: 0;
  padding: 10px 25px 10px 10px;
  color: #222222;
  font-size: 14px;
  font-weight: 700;
  appearance: none;
  background: #f5f5f5 url(../images/common/select_arr_2.png) no-repeat right
    10px center;
  cursor: pointer;
}
.review .invest_review .article_list .item {
  padding: 30px 0;
  border-bottom: 1px solid #dee4e9;
}
.review .invest_review .article_list .info .name {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #222222;
  margin-right: 10px;
}
.review .invest_review .article_list .info .time {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #72767c;
}
.review .invest_review .article_list .tab_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}
.review .invest_review .article_list .tab_list > div {
  font-size: 16px;
  line-height: 16px;
  color: #222222;
  padding: 7px 23px;
  border-radius: 6px;
  background-color: #f5f5f5;
}
.review .invest_review .article_list .content {
  padding: 25px 0;
}
.review .invest_review .article_list .content img {
  max-width: 200px;
  max-height: 250px;
  margin-bottom: 30px;
}
.review .invest_review .article_list .content p,
.review .invest_review .article_list .content span {
  font-size: 16px;
  line-height: 26px;
  color: #222222;
}
.review .invest_review .article_list .like_box,
.review .invest_review .article_list .like_bot_liked {
  padding: 6px 15px;
  border: 1px solid #dee4e9;
  border-radius: 32px;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.review .invest_review .article_list .like_box .icon_like,
.review .invest_review .article_list .like_bot_liked .icon_like {
  background-image: url("../images/common/like_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
}
.review .invest_review .article_list .like_bot_liked {
  background: #222222;
}
.review .invest_review .article_list .like_bot_liked .icon_like {
  background-image: url("../images/common/like_icon_active.svg");
}
.review .invest_review .article_list .like_bot_liked .num,
.review .invest_review .article_list .like_bot_liked .txt {
  color: #ffffff;
}
.review .invest_review .article_list .like_box:hover,
.review .invest_review .article_list .like_bot_liked:hover {
  opacity: 0.7;
}
.review .invest_review .article_list .like_box span,
.review .invest_review .article_list .like_bot_liked span {
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  color: #222222;
}
.review .invest_review .article_list .like_box .txt,
.review .invest_review .article_list .like_bot_liked .txt {
  margin: 0 5px;
}

.review .invest_review .show_more {
  margin-top: 40px;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1e70da;
  color: #ffffff;
  transition: 0.3s;
}
.review .invest_review .show_more:hover {
  opacity: 0.7;
}
.review .invest_review .show_more p {
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-right: 10px;
}
.review .invest_review .show_more img {
  width: 9px;
  height: auto;
}

@media (max-width: 991px) {
  .review .params_list {
    margin-top: 40px;
  }
  .review .params_list .title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .review .params_list .video-list {
    grid-template-columns: 1fr 1fr;
  }
  .review .invest_review {
    margin-top: 40px;
    margin-bottom: 80px;
  }
  .review .invest_review .filter_box select {
    width: 100px;
    height: 40px;
    margin-right: 0px;
  }
  .review .invest_review .filter_box {
    display: flex;
    gap: 5px;
  }
  .review .invest_review .title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .review .invest_review .article_list .tab_list {
    gap: 10px;
  }
  .review .invest_review .article_list .item {
    padding: 30px 0;
  }
  .review .invest_review .article_list .tab_list > div{
    padding: 7px 12px;
  }
}
