:root {
  --primary:#29A269;
  --secondary:#2974A2;
}

a {
  color: inherit;
}

#headerTest {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  transition: 0.3s;
  color: #fff;
}
#headerTest .inner {
  display: flex;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
}
#headerTest .h1 {
  display: flex;
  align-items: center;
  height: 100px;
}
#headerTest .h1 a {
  display: block;
}
#headerTest .h1 a img {
  display: block;
  width: 185px;
  filter: invert(1);
  transition: 0.3s;
}
#headerTest .list_menu {
  display: flex;
  text-align: center;
  font-size: 18px;
}
#headerTest .list_menu li {
  width: 100%;
}
#headerTest .list_menu a {
  display: block;
  transition: 0.3s;
}
#headerTest .list_menu .d1 {
  position: relative;
  font-weight: bold;
  line-height: 50px;
}
#headerTest .list_menu .d1:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  transition: 0.3s;
  content: "";
}
#headerTest .list_menu > li {
  width: 180px;
  padding: 24px 0;
  transition: 0.3s;
}
#headerTest .list_menu > li:hover {
  background: var(--primary);
}
#headerTest .list_menu > li:hover .d1:after {
  width: 55%;
}
#headerTest .list_sub {
  display: none;
  padding-top: 20px;
}
#headerTest .list_sub li + li {
  margin-top: 20px;
}
#headerTest .list_sub a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 36px;
}
#headerTest .list_sub a:hover {
  font-weight: bold;
}
#headerTest .list_lang {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100px;
}
#headerTest .list_lang strong, #headerTest .list_lang a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
  font-size: 18px;
}
#headerTest .list_lang strong {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
#headerTest.active {
  background: #fff;
  color: #000;
}
#headerTest.active .h1 a img {
  filter: none;
}
#headerTest.active .list_menu > li:hover a {
  color: #fff;
}
#headerTest.active .list_sub {
  display: block;
}

#mainTest {
  line-height: 1.4;
}
#mainTest .inner {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
}
#mainTest .mo {
  display: none;
}
@keyframes stepProgressAnim {
  to {
    transform: scaleX(1);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#mainTest #visual {
  position: relative;
  font-size: 18px;
}
#mainTest #visual .swiper-slide {
  position: relative;
}
#mainTest #visual .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
#mainTest #visual .swiper-slide .inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100vh;
  padding-bottom: 100px;
  color: #fff;
}
#mainTest #visual .swiper-slide .title {
  width: 46.25%;
  font-size: 64px;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
}
#mainTest #visual .swiper-slide .row {
  display: block;
  transform: translateY(20px);
  opacity: 0;
}
#mainTest #visual .swiper-slide .desc {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 25%;
  min-height: 84px;
  font-size: 1.33em;
  font-weight: bold;
}
#mainTest #visual .swiper-slide.swiper-slide-active .title .row,
#mainTest #visual .swiper-slide.swiper-slide-active .desc {
  animation: fade-up 1s forwards;
}
#mainTest #visual .pager_area {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
  z-index: 2;
}
#mainTest #visual .pager_area .inner {
  position: relative;
}
#mainTest #visual .pager_area .pager {
  position: absolute;
  left: 46.25%;
  right: 25%;
  bottom: 0;
  display: flex;
  align-items: center;
  height: 84px;
  padding: 0 56px;
}
#mainTest #visual .pager_area .progress {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}
#mainTest #visual .pager_area i {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
}
#mainTest .wrap_tit {
  line-height: 1.4;
}
#mainTest .wrap_tit .title {
  display: block;
  font-size: 50px;
  font-weight: bold;
}
#mainTest .wrap_tit .desc {
  margin-top: 20px;
  font-size: 18px;
  color: #111;
}
#mainTest #esg {
  padding: 120px 0 200px;
}
#mainTest #esg .inner {
  display: flex;
}
#mainTest #esg .wrap_tit, #mainTest #esg .contents {
  width: 100%;
}
#mainTest #esg .wrap_tit {
  padding-right: 40px;
}
#mainTest #esg .contents {
  display: flex;
  gap: 30px;
}
#mainTest #esg .contents [class^=box] {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 480px;
  padding: 40px 36px 24px;
  color: #fff;
}
#mainTest #esg .contents .box1 {
  background: var(--primary);
}
#mainTest #esg .contents .box2 {
  background: var(--secondary);
}
#mainTest #esg .contents .tit {
  display: block;
  font-size: 28px;
  font-weight: bold;
}
#mainTest #esg .contents .desc {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.4;
}
#mainTest #esg .contents .count {
  width: 100%;
  text-align: right;
}
#mainTest #esg .contents .count .number {
  display: inline-block;
  font-size: 130px;
  font-weight: bold;
  line-height: 1;
  vertical-align: baseline;
}
#mainTest #esg .contents .count span {
  display: inline-block;
  font-size: 28px;
  font-weight: 900;
  line-height: 2;
  vertical-align: text-bottom;
}
#mainTest #product {
  font-size: 0;
}
#mainTest #product .swiper_view,
#mainTest #product .swiper_list {
  display: inline-block;
  width: 50%;
  vertical-align: top;
}
#mainTest #product .swiper_view {
  overflow: hidden;
  position: sticky;
  top: 0;
}
#mainTest #product .swiper_view .swiper-slide {
  position: relative;
}
#mainTest #product .swiper_view img {
  height: 100vh;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
#mainTest #product .swiper_view .tit {
  position: absolute;
  left: 80px;
  bottom: 64px;
  font-size: 50px;
  color: #fff;
  font-weight: bold;
}
#mainTest #product .swiper_list {
  padding: 30px 0 30px 60px;
}
#mainTest #product .swiper_list li {
  position: relative;
  padding: 30px 0;
  border-top: 1px solid #ddd;
}
#mainTest #product .swiper_list li:after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: 0.5s 0.1s;
  z-index: 2;
  content: "";
}
#mainTest #product .swiper_list .inr_item {
  display: flex;
  gap: 40px;
  align-items: center;
}
#mainTest #product .swiper_list .img {
  position: relative;
  width: 240px;
  flex-shrink: 0;
}
#mainTest #product .swiper_list .img:before, #mainTest #product .swiper_list .img:after {
  position: absolute;
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
  content: "";
}
#mainTest #product .swiper_list .img:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
#mainTest #product .swiper_list .img:after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background: url(../images/common/icon_arrow.svg) var(--primary) no-repeat center/28px auto;
}
#mainTest #product .swiper_list .tit {
  display: block;
  font-size: 28px;
  font-weight: bold;
}
#mainTest #product .swiper_list .desc {
  margin-top: 10px;
  font-size: 18px;
  color: #111;
}
#mainTest #product .swiper_list .active:after {
  width: 100%;
}
#mainTest #product .swiper_list .active .img:before, #mainTest #product .swiper_list .active .img:after {
  opacity: 1;
}
#mainTest #rnd {
  padding: 200px 0;
  background: url(../images/main/main_rnd.jpg) no-repeat center/cover;
}
#mainTest #rnd .wrap_tit {
  text-align: center;
}
#mainTest #rnd .contents {
  position: relative;
  height: 420px;
  margin: 280px -15px 0;
  display: flex;
  justify-content: center;
  transition: all 0.8s ease-out;
}
#mainTest #rnd [class^=box] {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  align-items: flex-end;
  transform: translateX(-50%);
  transition: all 0.8s 0.8s ease-out;
  width: 25%;
  padding: 0 15px;
}
#mainTest #rnd .inr_box {
  position: relative;
  width: 100%;
  height: 420px;
  padding: 40px 35px;
  border: 1px solid #ddd;
  background: #fff;
  overflow: hidden;
  transition-delay: 1s;
}
#mainTest #rnd .inr_box:before {
  position: absolute;
  top: -8px;
  right: -12px;
  font-size: 130px;
  font-weight: bold;
  opacity: 0.02;
  line-height: 1;
  content: "";
}
#mainTest #rnd .box01 .inr_box:before {
  content: "01";
}
#mainTest #rnd .box02 .inr_box:before {
  content: "02";
}
#mainTest #rnd .box03 .inr_box:before {
  content: "03";
}
#mainTest #rnd .box04 .inr_box:before {
  content: "04";
}
#mainTest #rnd .contents.aos-animate {
  margin-top: 80px;
}
#mainTest #rnd .contents.aos-animate .box01 {
  left: 0%;
  transform: translateX(0);
}
#mainTest #rnd .contents.aos-animate .box02 {
  left: 25%;
  transform: translateX(0);
}
#mainTest #rnd .contents.aos-animate .box03 {
  left: 50%;
  transform: translateX(0);
}
#mainTest #rnd .contents.aos-animate .box04 {
  left: 75%;
  transform: translateX(0);
}
#mainTest #rnd .contents.aos-animate .inr_box {
  background: rgba(255, 255, 255, 0.5);
}