/* Common */
#main {
  padding-top: 90px;
}

.wrap--popup #main {
  padding: 0px !important;
}

@media screen and (max-width:1400px) {

}
@media screen and (max-width:1200px) {
  #main {
    padding-top: 70px;
  }
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Ele Position */
.ele-up {
  opacity: 0;
  transform: translateY(60px);
  transition: var(--transition-custom3);
}

.ele-delay1 {
  transition-delay: .1s;
}

.ele-delay2 {
  transition-delay: .2s;
}

.ele-delay3 {
  transition-delay: .3s;
}

.ele-delay4 {
  transition-delay: .4s;
}

.ele-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Sub Visual */
.sub-visual {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.sub-visual-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1530px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0px 15px;
}

.sub-visual-inner {
  position: relative;
  text-align: center;
  z-index: 5;
}

.sub-title {
  font-size:4.8rem;
  font-weight: 700;
  color:#fff;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(60px);
  transition:var(--transition-custom3);
}

.sub-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(60px);
  transition:var(--transition-custom3);
  transition-delay: .2s;
}

.sub-nav dd {
  position: relative;
  padding: 0px 10px;
  font-size: 1.4rem;
  color:#fff;
}

.sub-nav dd:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  right:0;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #fff;
} 

.sub-nav dd.home a {
  display: block;
  width: 15px;
  height: 15px;
  background: url('/en/asset/img/icon/ico_home.png') no-repeat center;
}

.sub-visual-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.sub-visual-bg::before {
  content:"";
	display:block;
	position:absolute;
  top:0;
  left:0;
	width:50%;
  height:100%;
	background:#fff;
	transform-origin:left;
  transform:scaleX(0);
}

.sub-visual-bg::after {
  content:"";
	display:block;
	position:absolute;
  top:0;
  right:0;
	width:50%;
  height:100%;
	background:#fff;
	transform-origin:right;
  transform:scaleX(0);
}

.sv1 .sub-visual-bg {
  background-image: url('/en/asset/img/sub/sv01.jpg');
}

.sv2 .sub-visual-bg {
  background-image: url('/en/asset/img/sub/sv02.jpg');
}

.sv3 .sub-visual-bg {
  background-image: url('/en/asset/img/sub/sv03.jpg');
}

.sv4 .sub-visual-bg {
  background-image: url('/en/asset/img/sub/sv04.jpg');
}

.sub-visual.in-view .sub-title,
.sub-visual.in-view .sub-nav {
  opacity: 1;
  transform: translateY(0);
}

.sub-visual.in-view .sub-visual-bg::before,
.sub-visual.in-view .sub-visual-bg::after {
  transform:scaleX(0);
  transition: var(--transition-custom3);
}

@media screen and (max-width:1200px) {
  .sub-title {
    font-size:3.6rem;
  }

  .sub-nav dd {
    font-size: 1.3rem;
  }
}
@media screen and (max-width:1024px) {
  .sub-visual {
    height: 300px;
  }
  
  .sub-title {
    margin-bottom: 14px;
  }

  .sub-nav dd:not(:last-child)::after {
    height: 10px;
  }
}
@media screen and (max-width:768px) {
  .sub-visual {
    height: 240px;
  }
  
  .sub-title {
    font-size: 2.8rem;
  }

  .sub-nav dd {
    font-size: 1.2rem;
  }
}
@media screen and (max-width:576px) {
  .sub-visual {
    height: 200px;
  }
  
  .sub-title {
    font-size: 2.4rem;
    margin-bottom: 8px;
  }

  .sub-nav dd {
    padding: 0px 6px;
    font-size: 1.1rem;
  }

  .sub-nav dd:not(:last-child)::after {
    height: 8px;
  }

  .sub-nav dd.home a {
    width: 12px;
    height: 12px;
    background-size: auto 12px;
  }
}


/* Sub Depth */
.sub-depth {
  width: 100%;
  background-color: #EBEFF7;
}

.sub-depth-container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}

.sub-depth-container .list {
  display: flex;
  justify-content: center;
}

.sub-depth-container .list li {
  flex:1 1;
  max-width: 500px;
}

.sub-depth-container .list a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  font-size: 1.8rem;
  color:#898989;
}

.sub-depth-container .list li.on a {
  font-weight: 700;
  color:#315CA8;
  background-color: #D9E1F0;
}

@media screen and (max-width:1400px) {

}
@media screen and (max-width:1200px) {
  .sub-depth-container .list a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:1024px) {
  .sub-depth-container .list a {
    height: 50px;
  }
}
@media screen and (max-width:768px) {
  .sub-depth-container .list a {
    height: 44px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width:576px) {
  .sub-depth-container .list a {
    height: 38px;
    font-size: 1.2rem;
  }
}


/* Overview */
.overview .hd-tit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:20px;
}

.overview .hd-tit i {
  display: block;
  width: 44px;
  height: 44px;
  background: url('/en/asset/img/icon/ico_logo.png') no-repeat center;
}

.overview .sec01 {
  position: relative;
  width: 100%;
  height: 700px;
  background: url('/en/asset/img/sub/about/overview/sec01_bak.png') no-repeat center / cover;
}

.overview .sec01 .txt-inner {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.overview .sec01 .txt {
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition-custom3);
}

.overview .sec01 .txt.in-view {
  opacity: 1 ;
  transform: scale(1);
}

.overview .sec02 .list {
  display: flex;
  position: relative;
  padding: 161px 0px 110px;
  z-index: 5;
  text-align: center;
}

.overview .sec02 .list::after {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  background: url('/en/asset/img/sub/about/overview/sec02_img.png') no-repeat center / 100% auto;
  z-index: -1;
}

.overview .sec02 .list li {
  flex:1 1;
}

.overview .sec02 .list li:first-child {
  margin-left: 12px;
}

.overview .sec02 .list li:last-child {
  margin-right: 12px;
}

.overview .sec02 .list .img {
  margin-bottom: 30px;
}

.overview .sec02 .core {
  display: flex;
  margin-top: 130px;
}

.overview .sec02 .core .lt {
  width: 44%;
}

.overview .sec02 .core .rt {
  width: 56%;
}

.overview .sec03 {
  background-color: #F5F5F5;
}

.overview .sec03 .list {
  display: flex;
  justify-content: center;
  gap:16.6667%;
}

.overview .sec03 .list .img {
  margin-bottom: 30px;
}

.overview .sec03 .list .img img {
  filter: drop-shadow(0px 4px 4px rgba(0,0,0,.1));
}

.overview .sec05 .din {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.overview .sec05 .lt {
  width:59%;  
}

.overview .sec05 .rt {
  width: 41%;
}

.overview .sec05 .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 100px 20px;
  background-color: #F5F5F5;
  border-radius: 20px;
}

.overview .sec06 .list {
  display: flex;
  gap:25px;
}

.overview .sec06 .list li {
  flex:1 1;
}

.overview .sec06 .list .card {
  position: relative;
  width: 100%;
  height:0;
  padding-top: calc(600/484*100%);
  border-radius: 20px;
  overflow: hidden;
}

.overview .sec06 .list .bak {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height:100%;
  padding: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.overview .sec07 .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap:80px 0px;
  /* opacity: 0;
  transform: translateY(60px); */
  transition: var(--transition-custom2);
}

.overview .sec07 .list li {
  flex:1 1 14.2857%;
}

.overview .sec07 .img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overview .sec07 .img img {
  transition: var(--transition-basic);
}

.overview .sec07 .img img.hover {
  display: block;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  opacity: 0;
}

@media screen and (min-width:1201px){
  .overview .sec07 li:hover .img img {
    opacity: 0;
  } 

  .overview .sec07 li:hover .img img.hover {
    opacity: 1;
  }
}
@media screen and (max-width:1366px) {
  .overview .sec02 .list {
    padding: 141px 0px 110px;
  }
}
@media screen and (max-width:1200px) {
  .overview .sec05 .rt {
    width: 36%;
  }
}
@media screen and (max-width:1024px) {
  .overview .hd-tit {
    gap:14px;
  }

  .overview .hd-tit i {
    width: 34px;
    height: 34px;
    background-size: auto 34px;
  }

  .overview .sec01 {
    height: 480px;
  }

  .overview .sec02 .list {
    padding: 0px;
    flex-wrap: wrap;
    gap:12px;
    text-align: left;
  }

  .overview .sec02 .list::after {
    display: none;
  }

  .overview .sec02 .list li {
    flex:1 1 100%;
  }

  .overview .sec02 .list li:first-child {
    margin-left: 0px;
  }

  .overview .sec02 .list li:last-child {
    margin-right: 0px;
  }

  .overview .sec02 .list .card {
    display: flex;
    align-items: center;
    gap:20px;
    height: 100%;
    padding: 20px;
    border-radius: 20px;
    background-color: #EBEFF7;
  }

  .overview .sec02 .list .img {
    margin: 0px;
  }

  .overview .sec02 .list img {
    width:80px;
  }

  .overview .sec02 .core {
    margin-top: 100px;
  }

  .overview .sec03 .list {
    gap:100px;
  }

  .overview .sec03 .list .img img {
    width: 80px;
  }

  .overview .sec04 img {
    max-width:none;
    height: 300px;
  }

  .overview .sec05 .rt {
    width: 30%;
  }

  .overview .sec05 .img {
    padding: 60px 20px;
  }

  .overview .sec06 .list {
    gap:12px;
  }

  .overview .sec07 .list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap:20px 0px;
    margin: -6px;
  }

  .overview .sec07 .list li {
    flex:1 0 33.33%;
    max-width: 33.33%;
    padding: 6px;
  }

  .overview .sec07 .img {
    position: relative;
    width: 100%;
    height: 60px;
  }

  .overview .sec07 .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width:768px) {
  .overview .hd-tit i {
    width: 28px;
    height: 28px;
    background-size: auto 28px;
  }

  .overview .sec01 {
    height: 400px;
  }

  .overview .sec02 .list {
    gap:8px;
  }

  .overview .sec02 .list .card {
    gap:14px;
    padding: 14px;
  }

  .overview .sec02 .list img {
    width: 60px;
  }

  .overview .sec02 .core {
    flex-wrap: wrap;
    margin-top: 80px;
  }

  .overview .sec02 .core .lt {
    width: 100%;
    margin-bottom: 28px;
  }

  .overview .sec02 .core .rt {
    width: 100%;
  }

  .overview .sec03 .list {
    flex-wrap: wrap;
    gap:8px;
  }

  .overview .sec03 .list li {
    flex:1 1 100%;
  }

  .overview .sec03 .list .card {
    display: flex;
    align-items: center;
    gap:14px;
    padding: 14px;
    background-color: #EBEFF7;
    border-radius: 20px;
  }

  .overview .sec03 .list .img {
    margin: 0px;
  }

  .overview .sec03 .list .img img {
    width: 60px;
    filter:unset;
  }

  .overview .sec04 img {
    height: 240px;
  }

  .overview .sec05 .din {
    flex-wrap: wrap;
    gap:30px;
  }

  .overview .sec05 .lt {
    width: 100%;
    order: 2;
  }

  .overview .sec05 .rt {
    width: 100%;
    order: 1;
  }

  .overview .sec05 .img {
    padding: 40px 14px;
  }

  .overview .sec05 .img img {
    width: 200px;
  }

  .overview .sec06 .list {
    flex-wrap: wrap;
    max-width: 484px;
    width: 100%;
    margin: 0 auto;
  }

  .overview .sec06 .list li {
    flex:1 1 100%;
  }

  .overview .sec06 .list .card {
    padding-top: 52.25%;
  }
}
@media screen and (max-width:576px) {
  .overview .hd-tit i {
    width: 24px;
    height: 24px;
    background-size: auto 24px;
  }

  .overview .sec01 {
    height: 300px;
  }

  .overview .sec02 .list {
    gap:4px;
  }

  .overview .sec02 .list .card {
    gap:8px;
    padding:10px;
    border-radius: 10px;
  }

  .overview .sec02 .list img {
    width: 40px;
  }

  .overview .sec02 .core {
    margin-top: 40px;
  }

  .overview .sec02 .core .lt {
    margin-bottom: 20px;
  }

  .overview .sec03 .list {
    gap:4px;
  }

  .overview .sec03 .list .card {
    gap:8px;
    padding: 10px;
    border-radius: 10px;
  }

  .overview .sec03 .list .img img {
    width: 40px;
  }

  .overview .sec04 img {
    height: 180px;
  }

  .overview .sec05 .din {
    gap:20px;
  }

  .overview .sec05 .img {
    padding: 20px 14px;
    border-radius: 10px;
  }

  .overview .sec05 .img img {
    width: 140px;
  }

  .overview .sec06 .list {
    gap:8px;
  }

  .overview .sec07 .list {
    gap:12px 0px;
    margin: -4px;
  }

  .overview .sec07 .list li {
    padding: 4px;
  }

  .overview .sec07 .img {
    height: 40px;
  }
}


/* History */
.history .sec01 {
  position: relative;
  width: 100%;
  height: 700px;
  background: url('/en/asset/img/sub/about/history/sec01_bak.png') no-repeat center / cover;
}

.history .sec01 .txt-inner {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.history .sec01 .txt {
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition-custom3);
}

.history .sec01 .txt.in-view {
  opacity: 1 ;
  transform: scale(1);
}

.history .sec02 .box-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  padding: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  overflow: hidden;
  border-radius: 20px;
}

.history .sec02 .box-title p {
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition-custom3);
}

.history .sec02 .box-title.in-view p {
  opacity: 1;
  transform: scale(1);
}

.history .sec02 .item dl {
  position: relative;
  padding-left: 34%;
}

.history .sec02 .item dt {
  position: absolute;
  top:-16px;
  left:0;
}

.history .sec02 .item dd {
  position: relative;
  padding-left: 90px;
  line-height:1.85;
}

.history .sec02 .item em {
  display: block;
  position: absolute;
  left: 0;
}

.history .sec02 .item em.pin {
  top:8px;
  width: 25px;
  height: 25px;
  background: url('/en/asset/img/icon/ico_logo.png') no-repeat left center / 25px auto;
}

@media screen and (max-width:1366px){
  .history .sec02 .item dl {
    padding-left: 22%;
  }

  .history .sec02 .item dd {
    padding-left: 60px;
  }
}
@media screen and (max-width:1200px) {
  .history .sec02 .item dl {
    padding-left: 18%;
  }

  .history .sec02 .item dt {
    top:-8px;
  }

  .history .sec02 .item dd {
    padding-left: 40px;
  }

  .history .sec02 .item em.pin {
    top:5px;
  }
}
@media screen and (max-width:1024px) {
  .history .sec01 {
    height: 480px;
  }

  .history .sec02 .box-title {
    height: 300px;
  }

  .history .sec02 .item dl {
    padding-left: 14%;
  }
}
@media screen and (max-width:768px) {
  .history .sec01 {
    height: 400px;
  }

  .history .sec02 .box-title {
    height: 240px;
  }

  .history .sec02 .item dl {
    padding: 0px;
  }

  .history .sec02 .item dt {
    position: relative;
    top:unset;
    left: unset;
    line-height: 1;
    margin-bottom: 14px;
  }

  .history .sec02 .item em.pin {
    width: 21px;
    height: 21px;
    background-size: auto 21px;
  }
}
@media screen and (max-width:576px) {
  .history .sec01 {
    height: 300px;
  }

  .history .sec02 .box-title {
    height: 200px;
  }

  .history .sec02 .item dt {
    margin-bottom: 8px;
  }

  .history .sec02 .item dd {
    padding-left: 28px;
    line-height: 1.4;
  }

  .history .sec02 .item em.pin {
    top:2px;
    width: 15px;
    height: 15px;
    background-size: auto 15px;
  }
}


/* Location */
.location .hd-tit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:20px;
}

.location .hd-tit i {
  display: block;
  width: 44px;
  height: 44px;
  background: url('/en/asset/img/icon/ico_logo.png') no-repeat center;
}

.location .sec01 {
  position: relative;
  width: 100%;
  height: 700px;
  background: url('/en/asset/img/sub/about/location/sec01_bak.png') no-repeat center / cover;
}

.location .sec01 .txt-inner {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.location .sec01 .txt {
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition-custom3);
}

.location .sec01 .txt.in-view {
  opacity: 1 ;
  transform: scale(1);
}

.location .sec02 .item {
  display: flex;
  align-items: center;
  padding: 50px;
  border-radius: 20px;
  background-color: #f5f5f5;
}

.location .sec02 .lt {
  width: 58%;
}

.location .sec02 .rt {
  padding-left: 70px;
}

.location .sec02 .sw {
  border-radius: 20px;
  overflow: hidden;
}

.location .sec02 .prev,
.location .sec02 .next {
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  width: 50px;
  height:50px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0px 4px 4px rgba(0,0,0,.05);
  cursor: pointer;
  z-index: 5;
}

.location .sec02 .prev {
  left: 30px;
  background-image: url('/en/asset/img/icon/ico_btn_prev.png');
}

.location .sec02 .next {
  right: 30px;
  background-image: url('/en/asset/img/icon/ico_btn_next.png');
}

.location .sec02 dd {
  position: relative;
  padding-left: 150px;
  line-height:1.75;
}

.location .sec02 b {
  display: flex;
  align-items: center;
  gap:10px;
  position: absolute;
  left:0;
}

.location .sec02 i {
  display: block;
  width: 29px;
  height:29px;
  background-repeat: no-repeat;
  background-position: center;
}

.location .sec02 i.icon01 {
  background-image: url('/en/asset/img/icon/ico_addr.png');
}

.location .sec02 i.icon02 {
  background-image: url('/en/asset/img/icon/ico_tel.png');
}

@media screen and (max-width:1366px) {
  .location .sec02 .item {
    padding: 36px;
  }

  .location .sec02 .rt {
    padding-left:40px;
  }
}
@media screen and (max-width:1200px) {
  .location .sec02 .lt {
    width: 48%;
  }

  .location .sec02 dd {
    padding-left: 120px;
  }
}
@media screen and (max-width:1024px) {
  .location .sec01 {
    height: 480px;
  }

  .location .sec02 .item {
    flex-wrap: wrap;
    padding: 30px;
  }

  .location .sec02 .lt {
    width: 100%;
  }

  .location .sec02 .rt {
    width: 100%;
    padding-left: 0px;
    padding-top:20px;
  }

  .location .sec02 img {
    width: 100%;
  }

  .location .sec02 .prev, .location .sec02 .next {
    width: 42px;
    height: 42px;
  }

  .location .sec02 .prev {
    left: 20px;
  }

  .location .sec02 .next {
    right: 20px;
  }

  .location .sec02 b {
    gap:6px;
  }

  .location .sec02 i {
    width: 22px;
    height: 22px;
    background-size: auto 22px;
  }
}
@media screen and (max-width:768px) {
  .location .sec01 {
    height: 400px;
  }

  .location .sec02 .item {
    padding: 20px;
  }

  .location .sec02 dd {
    padding-left: 110px;
  }

  .location .sec02 .prev, .location .sec02 .next {
    width: 36px;
    height: 36px;
  }

  .location .sec02 .prev {
    left: 14px;
  }

  .location .sec02 .next {
    right: 14px;
  }
}
@media screen and (max-width:576px) {
  .location .sec01 {
    height: 300px;
  }

  .location .sec02 .item {
    padding: 10px;
    border-radius: 10px;
  }

  .location .sec02 .rt {
    padding-top: 10px;
  }

  .location .sec02 .sw {
    border-radius: 10px;
  }

  .location .sec02 .prev, .location .sec02 .next {
    width: 32px;
    height: 32px;
  }

  .location .sec02 .prev {
    left: 8px;
  }

  .location .sec02 .next {
    right: 8px;
  }

  .location .sec02 dd {
    padding-left: 80px;
    line-height: 1.5;
  }

  .location .sec02 b {
    gap:4px;
  }

  .location .sec02 i {
    width: 14px;
    height: 14px;
    background-size: auto 14px;
  }
}


/* Product */
.product .sec01 .bd {
  padding: 60px 80px 100px;
  background-color: #F5F5F5;
}

.product .sec01 .bd p {
  line-height:1.85;
}

.product .sec01 .swiper-container {
  max-width: 740px;
  width: 100%;
  margin: 0 auto;
}

.product .sec01 .prev,
.product .sec01 .next {
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  width: 50px;
  height:50px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0px 4px 4px rgba(0,0,0,.05);
  cursor: pointer;
  z-index: 5;
}

.product .sec01 .prev {
  left:0px;
  background-image: url('/en/asset/img/icon/ico_btn_prev.png');
}

.product .sec01 .next {
  right:0px;
  background-image: url('/en/asset/img/icon/ico_btn_next.png');
}

.product .sec01 .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(480/740*100%);
  overflow: hidden;
}

.product .sec01 .img img {
  display: block;
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
}

.product .sec02 .list {
  display: flex;
  flex-wrap: wrap;
  margin:-0.8%;
}

.product .sec02 .list li {
  flex:1 1;
  padding: 0.8%;
}

.product .sec02 .list-hover .txt {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 120px;
  border-radius: 20px;
  background-color: #EBEFF7;
  transition: var(--transition-custom);
  cursor: pointer;
}

.product .sec02 .list-hover .txt p {
  transition: var(--transition-custom);
}

.product .sec02 .list-text li {
  flex:1 1 33.33%;
  max-width: 33.33%;
}

.product .sec02 .list-text .txt {
  height: 100%;
  padding: 40px 8.2%;
  border-radius: 20px;
  background-color: #EBEFF7;
}

.product .sec02 .list-text .txt .t01 {
  height: 68px;
}

.product .sec02 .list-text .txt .t02 {
  position: relative;
  padding-left: 20px;
}

.product .sec02 .list-text .txt .t02::before {
  content: "•";
  display: block;
  position: absolute;
  left: 6px;
}

.product .sec03 .table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  border:1px solid #C7C2C2;
  background-color: #fff;
}

.product .sec03 .table tr {
  border-bottom: 1px solid #C7C2C2;
}

.product .sec03 .table td {
  height: 60px;
  padding: 10px 30px;
  border-right: 1px solid #C7C2C2;
  font-size: 2rem;
}

.product .sec03 .table .tr-bak {
  background-color: #EBEFF7;
}

.product .sec03 .table .td-bak {
  background-color: #EBEFF7;
}

@media screen and (min-width:1201px) {
  .product .sec02 .list-hover li:hover .txt {
    background-color:#315CA8 ;
  }

  .product .sec02 .list-hover li:hover .txt p {
    color:#fff;
  }
}
@media screen and (max-width:1200px) {
  .product .sec01 .bd {
    padding: 40px 60px 80px;
  }

  .product .sec02 .list-hover .txt  {
    height: 100px;
  }

  .product .sec03 .table td {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:1024px) {
  .product .sec01 .bd {
    padding: 30px 40px 60px;
  }

  .product .sec01 .prev, .product .sec01 .next {
    width: 42px;
    height: 42px;
  }

  .product .sec02 .list {
    margin: -4px;
  }

  .product .sec02 .list li {
    flex:1 1 33.33%;
    max-width: 33.33%;
    padding: 4px;
  }

  .product .sec02 .list-hover .txt {
    height: 80px;
    padding: 10px;
  }

  .product .sec02 .list-text li {
    flex:1 1 50%;
    max-width: 50%;
  }

  .product .sec02 .list-text li:nth-child(4){
    display: none;
  }

  .product .sec02 .list-text .txt {
    padding: 28px 20px;
  }

  .product .sec02 .list-text .txt .t01 {
    height: auto;
  }

  .product .sec02 .list-text .txt .t02 {
    padding-left: 14px;
  }

  .product .sec02 .list-text .txt .t02::before {
    left: 2px;
  }

  .product .sec03 .table-wrap {
    width: 100%;
    border:1px solid #C7C2C2;
    overflow-x: auto;
  }

  .product .sec03 .table {
    width: 1100px;
    border:0px;
  }

  .product .sec03 .table td {
    height: 50px;
    padding: 6px 20px;
  }

  .product .sec03 .table td:last-child {
    border-right: 0px;
  }

  .product .table td.td-pin {
    position: sticky;
    top:0;
    left:0;
    border-right: 0px;
    z-index: 3;
    background-color: #EBEFF7;
  }

  .product .table td.td-pin::after {
    content: "";
    display: block;
    position: absolute;
    top:0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #C7C2C2;
  }
}
@media screen and (max-width:768px) {
  .product .sec01 .bd {
    padding: 20px 20px 40px;
  }

  .product .sec01 .img img {
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: auto;
  }

  .product .sec02 .list li {
    flex:1 1 50%;
    max-width: 50%;
  }

  .product .sec02 .list-text li {
    flex:1 1 100%;
    max-width: 100%;
  }

  .product .sec03 .table {
    width: 900px;
  }

  .product .sec03 .table td {
    height: 44px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width:576px) {
  .product .sec01 .bd {
    padding: 10px 15px 20px;
  }

  .product .sec01 .prev, .product .sec01 .next {
    width: 32px;
    height: 32px;
  }

  .product .sec01 .bd p {
    line-height:1.4;
  }

  .product .sec02 .list {
    margin: -2px;
  }

  .product .sec02 .list li {
    flex:1 1 100%;
    max-width: 100%;
    padding: 2px;
  }

  .product .sec02 .list-hover .txt {
    height: 40px;
    padding: 6px;
  }

  .product .sec02 .list-text .txt {
    padding:20px 14px;
    border-radius: 10px;
  }

  .product .sec02 .list-text .txt .t02 {
    padding-left: 8px;
  }

  .product .sec02 .list-text .txt .t02::before {
    left: 0;
  }

  .product .sec03 .table {
    width: 800px;
  }

  .product .sec03 .table td {
    height: 38px;
    font-size: 1.4rem;
    padding: 4px 14px;
  }
}


/* Ethics */
.ethics .sec01 {
  position: relative;
  width: 100%;
  height: 700px;
  background: url('/en/asset/img/sub/esg/ethics/sec01_bak.jpg') no-repeat center / cover;
}

.ethics .sec01 .txt-inner {
  position: absolute;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  width: 100%;
}

.ethics .sec01 .txt {
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition-custom3);
}

.ethics .sec01 .txt.in-view {
  opacity: 1;
  transform: scale(1);
}

.ethics .sec02 .hd-tit {
  display: flex;
  align-items: center;
  gap:20px;
  line-height: 1;
}

.ethics .sec02 .hd-tit i {
  display: block;
  width: 44px;
  height: 44px;
  background: url('/en/asset/img/icon/ico_logo.png') no-repeat center;
}

.ethics .sec02 .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:60px 4%;
  border-radius: 20px;
  background-color: #F5F5F5;
}

.ethics .sec02 .box-title {
  position: relative;
  width: 54.2647%;
  padding-left: 100px;
}

.ethics .sec02 .box-title i {
  display: block;
  position: absolute;
  top:50%;
  left:0;
  transform: translateY(-50%);
  width: 80px;
  height:80px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.ethics .sec02 .box-title i.icon01 {
  background-image: url('/en/asset/img/sub/esg/ethics/sec02_ico01.png');
}

.ethics .sec02 .box-title i.icon02 {
  background-image: url('/en/asset/img/sub/esg/ethics/sec02_ico02.png');
}

.ethics .sec02 .box-title i.icon03 {
  background-image: url('/en/asset/img/sub/esg/ethics/sec02_ico03.png');
}

.ethics .sec02 .box-title i.icon04 {
  background-image: url('/en/asset/img/sub/esg/ethics/sec02_ico04.png');
}

.ethics .sec02 .box-title i.icon05 {
  background-image: url('/en/asset/img/sub/esg/ethics/sec02_ico05.png');
}

.ethics .sec02 .box-area {
  width: 54.2647%;
}

.ethics .sec02 .box-area dl {
  margin: -20px 0px;
}

.ethics .sec02 .box-area dd {
  display: flex;
  align-items: center;
  gap:20px;
  padding: 20px 0px;
  border-bottom: 1px solid #C7C2C2;
}

.ethics .sec02 .box-area em {
  display: block;
  width: 28px;
  height: 29px;
  background: url('/en/asset/img/sub/esg/ethics/sec02_dot.png') no-repeat center;
}

.ethics .sec02 .box-area span {
  display: block;
  width: calc(100% - 48px);
}

@media screen and (max-width:1200px) {
  .ethics .sec02 .box-area dd {
    gap:12px;
  }

  .ethics .sec02 .box-area em {
    width: 23px;
    height: 24px;
    background-size: auto 24px;
  }
}
@media screen and (max-width:1024px) {
  .ethics .sec01 {
    height: 480px;
  }

  .ethics .sec01 .txt-inner {
    bottom: 60px;
  }

  .ethics .sec02 .hd-tit {
    gap:12px;
  }

  .ethics .sec02 .hd-tit i {
    width: 38px;
    height: 38px;
    background-size: auto 38px;
  }

  .ethics .sec02 .box {
    flex-wrap: wrap;
    gap:30px;
    padding:40px 20px 30px;
  }
  
  .ethics .sec02 .box-title {
    width: 100%;
    padding-left: 80px;
  }

  .ethics .sec02 .box-title i {
    width: 60px;
    height:60px;
  }

  .ethics .sec02 .box-area {
    width: 100%;
  }

  .ethics .sec02 .box-area dl {
    margin: 0px;
  }

  .ethics .sec02 .box-area dd {
    padding: 14px 0px;
  }
}
@media screen and (max-width:768px) {
  .ethics .sec01 {
    height: 400px;
  }

  .ethics .sec01 .txt-inner {
    top:50%;
    left:50%;
    bottom: unset;
    transform: translate(-50%, -50%);
  }

  .ethics .sec02 .hd-tit i {
    width: 28px;
    height: 28px;
    background-size: auto 28px;
  }
  
  .ethics .sec02 .box {
    gap:10px;
    padding: 30px 20px;
  }

  .ethics .sec02 .box-title {
    padding-left: 50px;
  }

  .ethics .sec02 .box-title i {
    width: 40px;
    height: 40px;
  }

  .ethics .sec02 .box-area dd {
    gap:8px;
  }

  .ethics .sec02 .box-area em {
    width: 19px;
    height: 20px;
    background-size: auto 20px;
  }
}
@media screen and (max-width:576px) {
  .ethics .sec01 {
    height: 300px;
  }

  .ethics .sec02 .hd-tit {
    gap:8px;
  }

  .ethics .sec02 .hd-tit i {
    width: 22px;
    height: 22px;
    background-size: auto 22px;
  }

  .ethics .sec02 .box {
    padding:20px 14px;
    border-radius: 10px;
  }

  .ethics .sec02 .box-title {
    padding-left: 40px;
  }

  .ethics .sec02 .box-title i {
    width: 30px;
    height: 30px;
  }

  .ethics .sec02 .box-area dd {
    gap:6px;
    padding: 10px 0px;
  }

  .ethics .sec02 .box-area em {
    width: 11px;
    height: 12px;
    background-size: auto 12px;
  }

  .ethics .sec02 .box-area span {
    width: calc(100% - 18px);
  }
}


/* Safety */
.safety .sec01 {
  position: relative;
  width: 100%;
  height: 700px;
  background: url('/en/asset/img/sub/esg/safety/sec01_bak.jpg') no-repeat center / cover;
}

.safety .sec01 .txt-inner {
  position: absolute;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  width: 100%;
}

.safety .sec01 .txt {
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition-custom3);
}

.safety .sec01 .txt.in-view {
  opacity: 1;
  transform: scale(1);
}

.safety .sec02 .box {
  display: flex;
  align-items: center;
  gap:5.8823%;
  padding: 60px 4.6667%;
  border-radius: 20px;
  background-color: #F5F5F5;
}

.safety .sec02 .box-img {
  width: 40.4411%;
}

.safety .sec02 .box-area {
  width: 50%;
}

.safety .sec03 .box {
  display: flex;
  min-height: 270px;
  padding: 30px 0px;
  border-top: 1px solid #898989;
}

.safety .sec03 .box-title {
  width:49.2%;
}

@media screen and (max-width:1400px) {

}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
  .safety .sec01 {
    height:480px;
  }

  .safety .sec02 .box {
    gap:30px;
    padding:40px;
  }

  .safety .sec02 .box-area {
    width: 54%;
  }

  .safety .sec03 .box {
    flex-wrap: wrap;
    min-height: auto;
    padding: 20px 0px;
  }

  .safety .sec03 .box-title {
    width: 100%;
    margin-bottom: 14px;
  }

  .safety .sec03 .box-area {
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .safety .sec01 {
    height: 400px;
  }

  .safety .sec01 .txt-inner {
    top:50%;
    left:50%;
    bottom: unset;
    transform: translate(-50%, -50%);
  }

  .safety .sec02 .box {
    flex-wrap: wrap;
  }

  .safety .sec02 .box-img {
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
  }

  .safety .sec02 .box-area {
    width: 100%;
  }
}
@media screen and (max-width:576px) {
  .safety .sec01 {
    height: 300px;
  }

  .safety .sec02 .box {
    gap:12px;
    padding: 20px;
  }

  .safety .sec03 .box {
    padding: 14px 0px;
  }

  .safety .sec03 .box-title {
    margin-bottom: 8px;
  }
}


/* Member */
.privacy .textarea {
  height: 600px;
  overflow-y: auto;
  border:1px solid #B3B3B3;
  border-radius: 5px;
}

.privacy .textarea > div {
  padding:20px;
  font-size:2rem;
}

@media screen and (max-width:1200px) {
  .privacy .textarea > div {
    font-size:1.8rem;
  }
}
@media screen and (max-width:1024px) {
  .privacy .textarea {
    height: 400px;
  }
}
@media screen and (max-width:768px) {
  .privacy .textarea > div {
    font-size:1.6rem;
  }
}
@media screen and (max-width:576px) {
  .privacy .textarea > div {
    font-size:1.4rem;
  }
}
