#wrap_content {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

#wrap_content section {
  background-color: var(--balck-color);
  perspective: 1px;
}

#wrap_content .js-marquee-wrapper {
  display: flex;
}

#wrap_content .js-marquee {
  float: none !important;
}

@keyframes transformAni {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateY(10px);
  }
}

@keyframes circleAni {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.contact_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 278px;
  height: 53px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid #fff;
  border-radius: 50px;
  transition: 0.3s;
  overflow: hidden;
}

.contact_button::before {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  transition: 0.3s;
  content: "";
  z-index: -1;
}

.contact_button:hover {
  color: var(--balck-color);
  border-color: var(--main-color);
}

.contact_button:hover::before {
  transform: translateY(0);
}

.check_container input {
  display: none;
}

.check_container input:checked + label .checkbox_container::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: var(--main-color);
  content: "";
}

.check_container label {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

.check_container .checkbox_container {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 13px;
  border: 1px solid #fff;
  border-radius: 50%;
}

#wrap_content.main .section02 .text_circle_container,
#wrap_content.contact .section01 .text_circle_container {
  position: relative;
}

#wrap_content.main .section02 .text_circle_wrap,
#wrap_content.contact .section01 .text_circle_wrap {
  width: 184px;
  height: 184px;
  animation: circleAni 8s linear infinite;
}

#wrap_content.main .section02 .center_circle_wrap,
#wrap_content.contact .section01 .center_circle_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 57px;
  height: 31px;
}

#wrap_content.main .section02 .img_container,
#wrap_content.lime .section03 .img_container {
  position: relative;
  width: 1704px;
  height: 665px;
  margin-left: auto;
  overflow: hidden;
}

#wrap_content.main .section02 .img_container .img_wrap,
#wrap_content.lime .section03 .img_container .img_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: 2s;
}

#wrap_content.main .section02 .img_container .img_wrap:first-child,
#wrap_content.lime .section03 .img_container .img_wrap:first-child {
  z-index: 2;
}

#wrap_content.main .section02 .img_container .img_wrap:nth-of-type(2),
#wrap_content.lime .section03 .img_container .img_wrap:nth-of-type(2) {
  transition-delay: 0.5s;
  z-index: 1;
}

#wrap_content.main .section02 .img_container .img_wrap:last-child,
#wrap_content.lime .section03 .img_container .img_wrap:last-child {
  transition-delay: 0.3s;
  z-index: 0;
}

#wrap_content.main .section02 .img_container.on .img_wrap,
#wrap_content.lime .section03 .img_container.on .img_wrap {
  opacity: 1;
  transform: translateY(0);
}

#wrap_content.lime .section01 .line_wrap .line,
#wrap_content.business .section01 .line_wrap .line {
  position: absolute;
  display: inline-block;
}

#wrap_content.lime .section01 .line_wrap .line:first-child,
#wrap_content.business .section01 .line_wrap .line:first-child {
  top: 0;
  right: 565px;
}

#wrap_content.lime .section01 .line_wrap .line:nth-of-type(2),
#wrap_content.business .section01 .line_wrap .line:nth-of-type(2) {
  top: 207px;
  right: 392px;
}

#wrap_content.lime .section01 .line_wrap .line:nth-of-type(3),
#wrap_content.business .section01 .line_wrap .line:nth-of-type(3) {
  top: 65px;
  right: 43px;
}

#wrap_content.lime .section01 .line_wrap .line:nth-of-type(4),
#wrap_content.business .section01 .line_wrap .line:nth-of-type(4) {
  top: 16px;
  right: 661px;
}

#wrap_content.lime .section01 .line_wrap .line:last-child,
#wrap_content.business .section01 .line_wrap .line:last-child {
  top: 421px;
  right: 43px;
}

#wrap_content.lime .section01 .line_wrap .line:first-child svg,
#wrap_content.business .section01 .line_wrap .line:first-child svg {
  stroke-dasharray: 724;
  stroke-dashoffset: 724;
  width: 496px;
  height: 530px;
}

#wrap_content.lime .section01 .line_wrap .line:nth-of-type(2) svg,
#wrap_content.business .section01 .line_wrap .line:nth-of-type(2) svg {
  stroke-dasharray: 648;
  stroke-dashoffset: 648;
  width: 552px;
  height: 342px;
}

#wrap_content.lime .section01 .line_wrap .line:nth-of-type(3) svg,
#wrap_content.business .section01 .line_wrap .line:nth-of-type(3) svg {
  stroke-dasharray: 846;
  stroke-dashoffset: 846;
  width: 846px;
  height: 2px;
}

#wrap_content.lime .section01 .line_wrap .line:nth-of-type(4) svg,
#wrap_content.business .section01 .line_wrap .line:nth-of-type(4) svg {
  stroke-dasharray: 498;
  stroke-dashoffset: 498;
  width: 2px;
  height: 498px;
}

#wrap_content.lime .section01 .line_wrap .line:last-child svg,
#wrap_content.business .section01 .line_wrap .line:last-child svg {
  stroke-dasharray: 1170;
  stroke-dashoffset: 1170;
  width: 1147px;
  height: 2px;
}

#wrap_content.lime .section01.on .line_wrap .line svg,
#wrap_content.business .section01.on .line_wrap .line svg {
  stroke-dashoffset: 0;
  transition: 1s;
}

#wrap_content.lime .section01 .logo_wrap,
#wrap_content.business .section01 .logo_wrap {
  position: absolute;
  top: 79px;
  right: 0;
  width: 661px;
  height: 357px;
}

#wrap_content.lime .section01 .logo_wrap svg,
#wrap_content.business .section01 .logo_wrap svg {
  stroke-dasharray: 4181;
  stroke-dashoffset: 4181;
  transition: 1.5s;
  opacity: 0;
}

#wrap_content.lime .section01.on .logo_wrap svg,
#wrap_content.business .section01.on .logo_wrap svg {
  stroke-dashoffset: 0px;
  opacity: 0.4;
}

#wrap_content.recruit .section01 .animation_text_container,
#wrap_content.contact .section01 .animation_text_container {
  position: relative;
}

#wrap_content.recruit .section01 .animation_text_container::after,
#wrap_content.contact .section01 .animation_text_container::after {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 100%;
  background: linear-gradient(
    90deg,
    #181818 0%,
    rgba(24, 24, 24, 0) 32.16%,
    rgba(24, 24, 24, 0) 69.29%,
    #181818 100%
  );
  content: "";
}

#wrap_content.recruit .section01 .animation_text,
#wrap_content.contact .section01 .animation_text {
  font-family: "Raleway", sans-serif;
  font-size: 120px;
  font-weight: 600;
  color: #343434;
  text-transform: uppercase;
  white-space: nowrap;
}

#wrap_content.recruit .section01 .animation_text span:nth-child(2),
#wrap_content.contact .section01 .animation_text span:nth-child(2) {
  font-style: italic;
}

/* ----- intro ----- */
/* section01 */
#wrap_content.intro .section01 {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
}

#wrap_content.intro .section01 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#wrap_content.intro .section01 .skipButton {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: bold;
  opacity: 0;
  animation: skipButtonAni 0.5s linear 5.5s forwards;
}

@keyframes skipButtonAni {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ----- main ----- */
/* section01 */
#wrap_content.main .section01 {
  position: relative;
  height: 1080px;
  margin-bottom: 53px;
}

#wrap_content.main .section01 .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  font-family: "Raleway", sans-serif;
  font-size: 160px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  text-shadow: 0px 0px 49px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

#wrap_content.main .section01 .title div {
  overflow: hidden;
}

#wrap_content.main .section01 .title div span {
  display: inline-block;
  transform: translateY(100%);
}

#wrap_content.main .section01 .title div:first-child span {
  animation: mainSection01TitleAni 0.7s ease-out forwards;
}

#wrap_content.main .section01 .title div:last-child span {
  animation: mainSection01TitleAni 0.7s 0.7s ease-out forwards;
}

@keyframes mainSection01TitleAni {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

#wrap_content.main .section01 .video_wrap {
  position: relative;
}

#wrap_content.main .section01 .video_wrap::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  content: "";
}

#wrap_content.main .section01 video {
  width: auto;
  height: 100%;
}

#wrap_content.main .lighting {
  position: absolute;
  top: 11%;
  left: 30%;
  width: 756px;
  height: 756px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 1);
  mix-blend-mode: overlay;
  opacity: 0;
  animation: mainSection01BannerAni 3.5s 1.4s ease forwards;
}

#wrap_content.main .mb_lighting {
  display: none;
}

/* #wrap_content.main .section01 .lighting {
  position: absolute;
  top: 11%;
  left: 30%;
  width: 756px;
  height: 756px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 1);
  mix-blend-mode: overlay;
  opacity: 0;
  animation: mainSection01BannerAni 3.5s 1.4s ease forwards;
} */

@keyframes mainSection01BannerAni {
  0% {
    transform: translate(70%, -40%) scale(0.1);
  }
  20% {
    opacity: 1;
    transform: translate(70%, -40%) scale(0.1);
  }
  40% {
    opacity: 1;
    transform: translate(-70%, 40%) scale(0.2);
  }
  60% {
    opacity: 1;
    transform: translate(-30%, 0%) scale(1.05);
  }
  80% {
    opacity: 1;
    transform: translate(80%, 20%) scale(0.4);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

/* section02 */
#wrap_content.main .section02 {
  position: relative;
  margin-top: 110px;
  padding-top: 303px;
  background-color: var(--balck-color);
  z-index: 1;
}

#wrap_content.main .section02 .text_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}

#wrap_content.main .section02 .text_wrap h2,
#wrap_content.main .section02 .text_wrap p {
  opacity: 0;
  transform: translateY(100px);
  transition: 1s;
}

#wrap_content.main .section02 .text_wrap h2 {
  margin-bottom: 20px;
  font-family: "Raleway", sans-serif;
  font-size: 70px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

#wrap_content.main .section02 .text_wrap p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

#wrap_content.main .section02 .infinite_slider_container {
  position: absolute;
  top: -90px;
  left: -2px;
  width: calc(100% + 4px);
}

#wrap_content.main .section02 .infinite_slider {
  display: flex;
  align-items: center;
  height: 116px;
  transform: rotate(-1.49deg);
  background-color: var(--balck-color);
}

#wrap_content.main .section02 .js-marquee {
  display: flex;
  margin-right: 70px !important;
  float: none !important;
}

#wrap_content.main .section02 .infinite_slider_list:not(:last-child) {
  margin-right: 70px;
}

#wrap_content.main .section02 .infinite_slider img {
  width: auto;
  height: 40px;
}

#wrap_content.main .section02.on .text_container h2,
#wrap_content.main .section02.on .text_container p {
  transform: translateY(0);
  opacity: 1;
}

/* section03 */
#wrap_content.main .section03 {
  position: relative;
  padding: 250px 0 540px;
}

#wrap_content.main .section03 .line_wrap .line {
  position: absolute;
  display: inline-block;
  height: 1px;
  background-color: #fff;
  opacity: 0;
  transition: 1s;
}

#wrap_content.main .section03 .line_wrap .line:first-child {
  top: 217px;
  left: 11px;
  width: 0;
}

#wrap_content.main .section03 .line_wrap .line:nth-of-type(2) {
  top: 65px;
  left: 146px;
  width: 1px;
  height: 0;
  transition-delay: 0.5s;
}

#wrap_content.main .section03 .line_wrap .line:nth-of-type(3) {
  top: 275px;
  right: -47px;
  width: 464px;
}

#wrap_content.main .section03 .line_wrap .line:nth-of-type(4) {
  top: 216px;
  right: -152px;
  width: 812px;
}

#wrap_content.main .section03 .line_wrap .line:nth-of-type(5) {
  bottom: 51px;
  right: 795px;
  width: 1px;
  height: 388px;
  transform: rotate(90deg);
}

#wrap_content.main .section03 .line_wrap .line:nth-of-type(6) {
  bottom: 235px;
  right: 376px;
  width: 894px;
  transform: rotate(0);
}

#wrap_content.main .section03 .line_wrap .line:nth-of-type(7) {
  bottom: 305px;
  right: 447px;
  width: 556px;
  transform: rotate(0);
}

#wrap_content.main .section03 .line_wrap .line.on {
  opacity: 0.2;
}

#wrap_content.main .section03 .line_wrap .line.top.on:first-child {
  width: 419px;
}

#wrap_content.main .section03 .line_wrap .line.top.on:nth-of-type(2) {
  height: 370px;
}

#wrap_content.main .section03 .line_wrap .line.top.on:nth-of-type(3) {
  transform: rotate(90deg);
}

#wrap_content.main .section03 .line_wrap .line.top.on:nth-of-type(4) {
  transform: rotate(-151.49deg);
}

#wrap_content.main .section03 .line_wrap .line.bottom.on:nth-of-type(5) {
  transform: rotate(0);
}

#wrap_content.main .section03 .line_wrap .line.bottom.on:nth-of-type(6) {
  transform: rotate(-24.84deg);
}

#wrap_content.main .section03 .line_wrap .line.bottom.on:nth-of-type(7) {
  transform: rotate(16.94deg);
}

#wrap_content.main .section03 .solution_list {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 220px;
  padding: 69px 50px;
  border-bottom: 2px solid #464646;
  overflow: hidden;
  transition: 0.35s;
  cursor: pointer;
}

#wrap_content.main .section03 .solution_list::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  content: "";
}

#wrap_content.main .section03 .solution_list .title {
  position: relative;
  font-family: "Raleway", sans-serif;
  font-size: 70px;
  font-weight: 600;
  letter-spacing: -0.02em;
  opacity: 0.5;
  transition: 0.35s;
}

#wrap_content.main .section03 .solution_list .text_circle_wrap {
  position: absolute;
  top: 50%;
  right: -87px;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  opacity: 0;
  transition: 0.35s;
  z-index: -1;
}

#wrap_content.main .section03 .solution_list .text_circle_wrap img {
  animation: circleAni 8s linear infinite;
}

#wrap_content.main .section03 .solution_list .text,
#wrap_content.main .section03 .solution_list .view_detail_button,
#wrap_content.main .section03 .solution_list .img_wrap {
  visibility: hidden;
  opacity: 0;
  transition: 0.35s;
}

#wrap_content.main .section03 .solution_list .text {
  margin: 60px 0 30px;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.73;
}

#wrap_content.main .section03 .solution_list .view_detail_button {
  align-items: center;
  font-size: 16px;
  font-weight: 500;
}

#wrap_content.main .section03 .solution_list .view_detail_button span {
  vertical-align: middle;
}

#wrap_content.main .section03 .solution_list .view_detail_button .icon_wrap {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 6px;
}

#wrap_content.main .section03 .solution_list .img_wrap {
  width: 730px;
  height: 381px;
}

#wrap_content.main .section03 .solution_list.on {
  padding: 50px 50px 69px;
  height: 500px;
  border-bottom: 0;
}

#wrap_content.main .section03 .solution_list.on::after {
  width: 100%;
  transition: 0.35s;
}

#wrap_content.main .section03 .solution_list.on .title {
  opacity: 1;
}

#wrap_content.main .section03 .solution_list.on .text_circle_wrap {
  opacity: 1;
}

#wrap_content.main .section03 .solution_list.on .text,
#wrap_content.main .section03 .solution_list.on .view_detail_button,
#wrap_content.main .section03 .solution_list.on .img_wrap {
  visibility: visible;
  opacity: 1;
}

/* section04 */
#wrap_content.main .section04 {
  position: relative;
  padding-bottom: 536px;
}

#wrap_content.main .section04 .text {
  font-family: "Raleway", sans-serif;
  font-size: 120px;
  font-weight: 800;
  text-transform: uppercase;
}

#wrap_content.main .section04 .text:nth-of-type(odd) {
  color: #464646;
}

#wrap_content.main .section04 .text:not(:last-of-type) {
  margin-bottom: 18px;
}

#wrap_content.main .section04 .img_wrap {
  position: absolute;
  top: -290px;
  left: 23%;
  width: 986px;
  height: 1165px;
}

#wrap_content.main .section04 .img_wrap img {
  position: absolute;
}

#wrap_content.main .section04 .img_wrap img:first-child {
  bottom: 268px;
  left: 226px;
  width: 364px;
  height: 460px;
}

#wrap_content.main .section04 .img_wrap img:nth-of-type(2) {
  top: 333px;
  right: 215px;
  width: 519px;
  height: 255px;
}

#wrap_content.main .section04 .img_wrap img:nth-of-type(3) {
  top: 295px;
  right: 26px;
  width: 385px;
  height: 315px;
}

#wrap_content.main .section04 .img_wrap img:nth-of-type(4) {
  top: 0;
  right: 0;
  width: 295px;
  height: 421px;
}

#wrap_content.main .section04 .img_wrap img:last-child {
  bottom: 0;
  left: 0;
  width: 701px;
  height: 437px;
}

#wrap_content.main .section04 .line_wrap .line {
  position: absolute;
  display: inline-block;
  height: 1px;
  background-color: #fff;
  opacity: 0;
  transition: 1s;
  z-index: -1;
}

#wrap_content.main .section04 .line_wrap .line:first-child {
  bottom: 231px;
  left: 444px;
  width: 1px;
  height: 751px;
  transform: rotate(90deg);
}

#wrap_content.main .section04 .line_wrap .line:nth-of-type(2) {
  bottom: 382px;
  left: 226px;
  width: 497px;
  transform: rotate(0);
}

#wrap_content.main .section04 .line_wrap .line:nth-of-type(3) {
  bottom: 442px;
  right: 535px;
  width: 649px;
  transform: rotate(0);
}

#wrap_content.main .section04 .line_wrap .line.on {
  opacity: 0.2;
}

#wrap_content.main .section04 .line_wrap .line.on:first-child {
  transform: rotate(0);
}

#wrap_content.main .section04 .line_wrap .line.on:nth-of-type(2) {
  transform: rotate(33.34deg);
}

#wrap_content.main .section04 .line_wrap .line.on:nth-of-type(3) {
  transform: rotate(-55.55deg);
}

/* section05 */
#wrap_content.main .section05 {
  padding-bottom: 113px;
}

#wrap_content.main .section05 .inner {
  position: relative;
}

#wrap_content.main .section05 .text_container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 160px;
  z-index: 1;
}

#wrap_content.main .section05 .text_container h2,
#wrap_content.main .section05 .text_container .text {
  font-weight: 600;
  letter-spacing: -0.02em;
  overflow: hidden;
}

#wrap_content.main .section05 .text_container h2 {
  margin-bottom: 20px;
  font-family: "Raleway", sans-serif;
  font-size: 70px;
}

#wrap_content.main .section05 .text_container .text {
  margin-bottom: 70px;
  font-size: 20px;
}

#wrap_content.main .section05 .text_container h2 span,
#wrap_content.main .section05 .text_container .text span {
  display: inline-block;
  transform: translateY(100%);
  transition: 0.5s;
}

#wrap_content.main .section05 .text_container .text span {
  transition-delay: 0.3s;
}

#wrap_content.main .section05 .text_container h2.on span,
#wrap_content.main .section05 .text_container .text.on span {
  transform: translateY(0);
}

#wrap_content.main .section05 .img_wrap {
  position: relative;
  height: 522px;
}

#wrap_content.main .section05 .img_wrap::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #181818 25.73%,
    rgba(34, 34, 34, 0) 107.63%
  );
  content: "";
}

/* ----- lime ----- */
/* section01 */
#wrap_content.lime .section01 {
  padding: 458px 0 284px;
}

#wrap_content.lime .section01 .title {
  margin-bottom: 80px;
  font-family: "Raleway", sans-serif;
  font-size: 70px;
  font-weight: 600;
  transform: translateY(100%);
  opacity: 0;
  transition: 1s;
}

#wrap_content.lime .section01.on .title {
  transform: translateY(0);
  opacity: 1;
}

#wrap_content.lime .section01 .title span {
  display: inline-block;
  transform: skewX(-12deg);
}

#wrap_content.lime .section01 .text_container {
  display: flex;
  gap: 50px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}

#wrap_content.lime .section01 .text_container p {
  width: 302px;
}

#wrap_content.lime .section01 .text_container .right_text {
  padding-top: 145px;
}

#wrap_content.lime .section01 .color_text_img_wrap01 {
  top: 362px;
  right: -67px;
  width: 1028px;
  height: 333px;
}

#wrap_content.lime .section01 .color_text_img_wrap02 {
  top: 658px;
  right: -839px;
  width: 1788px;
  height: 333px;
}

#wrap_content.lime .section01 .color_text_img_wrap,
#wrap_content.lime .section01 .deco_img_wrap {
  position: absolute;
}

#wrap_content.lime .section01 .deco_img_wrap01 {
  top: 264px;
  right: 101px;
  width: 137px;
  height: 150px;
  animation: transformAni 1.5s ease-in-out alternate infinite;
}

#wrap_content.lime .section01 .deco_img_wrap02 {
  bottom: 56px;
  right: 779px;
  width: 205px;
  height: 205px;
  animation: transformAni 2s ease-in-out alternate infinite;
}

/* section02 */
#wrap_content.lime .section02 {
  padding: 494px 0 413px;
}

#wrap_content.lime .section02 .inner {
  display: flex;
  justify-content: flex-end;
}

#wrap_content.lime .section02 .line_wrap .line {
  position: absolute;
  display: inline-block;
}

#wrap_content.lime .section02 .line_wrap .line:first-child {
  top: 270px;
  left: 0;
}

#wrap_content.lime .section02 .line_wrap .line:nth-of-type(2) {
  top: -46px;
  left: 0;
}

#wrap_content.lime .section02 .line_wrap .line:nth-of-type(3) {
  top: -83px;
  left: 871px;
}

#wrap_content.lime .section02 .line_wrap .line:last-child {
  bottom: 264px;
  left: 0;
}

#wrap_content.lime .section02 .line_wrap .line:first-child svg {
  stroke-dasharray: 1455;
  stroke-dashoffset: 1455;
  width: 1455px;
  height: 2px;
}

#wrap_content.lime .section02 .line_wrap .line:nth-of-type(2) svg {
  stroke-dasharray: 1493;
  stroke-dashoffset: 1493;
  width: 1225px;
  height: 762px;
}

#wrap_content.lime .section02 .line_wrap .line:nth-of-type(3) svg {
  stroke-dasharray: 1405;
  stroke-dashoffset: 1405;
  width: 2px;
  height: 1405px;
}

#wrap_content.lime .section02 .line_wrap .line:last-child svg {
  stroke-dasharray: 554;
  stroke-dashoffset: 554;
  width: 390px;
  height: 479px;
}

#wrap_content.lime .section02.on .line_wrap .line:not(.bottom) svg,
#wrap_content.lime .section02 .line_wrap .line.bottom.on svg {
  stroke-dashoffset: 0;
  transition: 1s;
}

#wrap_content.lime .section02 .deco_img_wrap {
  position: absolute;
}

#wrap_content.lime .section02 .deco_img_wrap01 {
  top: 284px;
  left: -200px;
  width: 1072px;
  height: 832px;
}

#wrap_content.lime .section02 .deco_img_wrap02 {
  bottom: 12px;
  right: 0;
  width: 256px;
  height: 301px;
  animation: transformAni 1.5s ease-in-out alternate infinite;
}

#wrap_content.lime .section02 .text_container {
  margin-right: 45px;
}

#wrap_content.lime .section02 .title {
  margin-bottom: 80px;
  font-size: 70px;
  font-weight: 500;
  line-height: 1.23;
  transition: 1s;
}

#wrap_content.lime .section02 .title span {
  color: var(--main-color);
}

#wrap_content.lime .section02 .text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  transition: 1.5s;
}

#wrap_content.lime .section02 .title,
#wrap_content.lime .section02 .text {
  transform: translateY(100%);
  opacity: 0;
}

#wrap_content.lime .section02.on .title,
#wrap_content.lime .section02.on .text {
  transform: translateY(0);
  opacity: 1;
}

/* section03 */
#wrap_content.lime .section03 {
  position: relative;
  padding: 347px 0 527px;
}

#wrap_content.lime .section03 .inner {
  padding: 0 90px;
}

#wrap_content.lime .section03 .img_container {
  position: absolute;
  right: 0;
  bottom: 150px;
  opacity: 0.1;
}

#wrap_content.lime .section03 .line_wrap .line {
  position: absolute;
  display: inline-block;
}

#wrap_content.lime .section03 .line_wrap .line:first-child {
  top: 332px;
  right: 0;
}

#wrap_content.lime .section03 .line_wrap .line:nth-of-type(2) {
  top: 650px;
  left: 0;
}

#wrap_content.lime .section03 .line_wrap .line:nth-of-type(3) {
  top: 283px;
  left: 259px;
}

#wrap_content.lime .section03 .line_wrap .line:nth-of-type(4) {
  top: -295px;
  right: 259px;
}

#wrap_content.lime .section03 .line_wrap .line:nth-of-type(5) {
  top: 261px;
  left: 0;
}

#wrap_content.lime .section03 .line_wrap .line:last-child {
  top: 84px;
  right: 0;
}

#wrap_content.lime .section03 .line_wrap .line:first-child svg {
  stroke-dasharray: 1755;
  stroke-dashoffset: 1755;
  width: 1755px;
  height: 2px;
}

#wrap_content.lime .section03 .line_wrap .line:nth-of-type(2) svg {
  stroke-dasharray: 2040;
  stroke-dashoffset: 2040;
  width: 1802px;
  height: 2px;
}

#wrap_content.lime .section03 .line_wrap .line:nth-of-type(3) svg {
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  width: 3px;
  height: 440px;
}

#wrap_content.lime .section03 .line_wrap .line:nth-of-type(4) svg {
  stroke-dasharray: 1018;
  stroke-dashoffset: 1018;
  width: 3px;
  height: 1018px;
}

#wrap_content.lime .section03 .line_wrap .line:nth-of-type(5) svg {
  stroke-dasharray: 789;
  stroke-dashoffset: 789;
  width: 463px;
  height: 509px;
}

#wrap_content.lime .section03 .line_wrap .line:last-child svg {
  stroke-dasharray: 1170;
  stroke-dashoffset: 1170;
  width: 463px;
  height: 670px;
}

#wrap_content.lime .section03 .line_wrap.on .line svg {
  stroke-dashoffset: 0;
  transition: 1.5s;
}

#wrap_content.lime .section03 .circle_list_wrap {
  display: flex;
  align-items: center;
  margin-bottom: 120px;
}

#wrap_content.lime .section03 .circle_list {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 318px;
  height: 318px;
  font-family: "Raleway", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.16;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 0;
  transition: 1.5s;
}

#wrap_content.lime .section03 .circle_list:not(:first-child) {
  margin-left: -200px;
}

#wrap_content.lime .section03 .circle_list:last-child::before {
  position: absolute;
  top: 50%;
  left: -181px;
  transform: translateY(-50%);
  width: 151px;
  height: 19px;
  background: url("../asset/img/icon_arrow_right_thin.svg") no-repeat center /
    cover;
  content: "";
}

#wrap_content.lime .section03.on .circle_list {
  opacity: 1;
}

#wrap_content.lime .section03.on .circle_list:not(:first-child) {
  margin-left: -41px;
}

#wrap_content.lime .section03.on .circle_list:last-child {
  margin-left: 211px;
}

#wrap_content.lime .section03 .circle_list.color {
  font-size: 42px;
  color: var(--main-color);
  border-color: var(--main-color);
}

/* #wrap_content.lime .section03 .circle_list.color p {
  transform: skew(-10deg);
} */

#wrap_content.lime .section03 .title {
  margin-bottom: 80px;
  font-size: 70px;
  font-weight: 500;
  line-height: 1.23;
  transition: 1s;
}

#wrap_content.lime .section03 .title span {
  color: var(--main-color);
}

#wrap_content.lime .section03 .text_container {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}

#wrap_content.lime .section03 .text {
  margin-bottom: 51px;
  transition: 1.5s;
}

#wrap_content.lime .section03 .boss_container {
  display: flex;
  align-items: center;
  transition: 1.5s;
}

#wrap_content.lime .section03 .boss_container .img_wrap {
  display: inline-block;
  width: 182px;
  height: 45px;
  margin-left: 24px;
}

#wrap_content.lime .section03 .title,
#wrap_content.lime .section03 .text,
#wrap_content.lime .section03 .boss_container {
  transform: translateY(100%);
  opacity: 0;
}

#wrap_content.lime .section03 .title.on,
#wrap_content.lime .section03 .text.on,
#wrap_content.lime .section03 .boss_container.on {
  transform: translateY(0);
  opacity: 1;
}

#wrap_content.lime .section03 .deco_img_wrap {
  position: absolute;
}

#wrap_content.lime .section03 .deco_img_wrap01 {
  right: -211px;
  bottom: 74px;
  width: 703px;
  height: 865px;
  animation: transformAni 1.3s ease-in-out alternate infinite;
}

#wrap_content.lime .section03 .deco_img_wrap02 {
  bottom: 629px;
  right: 0;
  width: 214px;
  height: 214px;
  animation: transformAni 1.5s ease-in-out alternate-reverse infinite;
}

/* ----- business ----- */
/* section01 */
#wrap_content.business .section01 {
  padding: 364px 0 200px;
}

#wrap_content.business .section01 .title {
  margin-bottom: 184px;
  font-family: "Raleway", sans-serif;
  font-size: 70px;
  font-weight: 600;
}

#wrap_content.business .section01 .title span {
  display: inline-block;
  color: var(--main-color);
  line-height: 1.17;
  transform: skew(-9deg);
}

#wrap_content.business .section01 .tab_container {
  position: relative;
  margin-bottom: 180px;
}

#wrap_content.business .section01 .tab_container .deco_text {
  position: absolute;
  bottom: -29px;
  left: 0;
  font-family: "Raleway", sans-serif;
  font-size: 245px;
  font-weight: 700;
  color: #2f2f2f;
  text-align: center;
  letter-spacing: -0.02em;
  z-index: -1;
}

#wrap_content.business .section01 .tab_list_wrap {
  display: flex;
  gap: 40px;
}

#wrap_content.business .section01 .tab_list {
  width: calc(100% / 4);
  font-family: "Raleway", sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-bottom: 5px solid #fff;
  transition: 0.3s;
}

#wrap_content.business .section01 .tab_list.on,
#wrap_content.business .section01 .tab_list:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}

#wrap_content.business .section01 .tab_list a {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}

#wrap_content.business .section01 .tab_list .icon_wrap {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(317deg)
    brightness(103%) contrast(102%);
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(317deg)
    brightness(103%) contrast(102%);
  transition: 0.1s;
}

#wrap_content.business .section01 .tab_list.on .icon_wrap,
#wrap_content.business .section01 .tab_list:hover .icon_wrap {
  filter: invert(79%) sepia(12%) saturate(6540%) hue-rotate(21deg)
    brightness(100%) contrast(101%);
  -webkit-filter: invert(79%) sepia(12%) saturate(6540%) hue-rotate(21deg)
    brightness(100%) contrast(101%);
}

#wrap_content.business .section01 .content_container {
  min-height: 671px;
  padding: 70px 0;
  border: 2px solid #ffffff;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(100px);
  transition: 1s;
}

#wrap_content.business .section01 .content_container.on {
  opacity: 1;
  transform: translateY(0);
}

#wrap_content.business .section01 .content {
  display: none;
  flex-direction: column;
  align-items: center;
}

#wrap_content.business .section01 .content.on {
  display: flex;
}

#wrap_content.business .section01 .content .tab_title {
  margin-bottom: 80px;
  font-family: "Raleway", sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

#wrap_content.business .section01 .circle_list_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 1039px;
  margin-bottom: 57px;
}

#wrap_content.business .section01 .tab1 .circle_list_wrap {
  width: 888px;
}

#wrap_content.business .section01 .circle_list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 236px;
  height: 236px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.08;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 0;
}

#wrap_content.business .section01 .circle_list:nth-of-type(2) {
  transform: translateX(-100%);
}

#wrap_content.business .section01 .tab1 .circle_list:nth-of-type(3) {
  transform: translateX(-100%);
}

#wrap_content.business
  .section01
  .content:not(.tab1)
  .circle_list:nth-of-type(n + 3) {
  transform: translateX(-200%);
}

#wrap_content.business .section01 .circle_list span {
  opacity: 0;
}

#wrap_content.business .section01 .circle_list.color {
  position: relative;
  color: var(--main-color);
  border-color: var(--main-color);
}

#wrap_content.business .section01 .circle_list.color::before {
  position: absolute;
  top: 50%;
  left: -122px;
  transform: translateY(-50%);
  width: 100px;
  height: 19px;
  background: url("../asset/img/icon_arrow_right_thin_short_green.svg")
    no-repeat center / cover;
  content: "";
}

#wrap_content.business .section01 .tab1 .circle_list.color::before {
  left: -181px;
  width: 151px;
  background: url("../asset/img/icon_arrow_right_thin_green.svg") no-repeat
    center / cover;
}

#wrap_content.business
  .section01
  .content_container.on
  .circle_list_wrap.on
  .circle_list {
  opacity: 1;
  transform: translateX(0);
  transition: 1s;
}

#wrap_content.business
  .section01
  .content_container.on
  .circle_list_wrap.on
  .circle_list:not(:first-child) {
  margin-left: -25px;
}

#wrap_content.business
  .section01
  .content_container.on
  .circle_list_wrap.on
  .circle_list.color {
  transition: 1.3s;
}

#wrap_content.business
  .section01
  .content_container.on
  .tab1
  .circle_list_wrap.on
  .circle_list.color {
  margin-left: 211px;
}

#wrap_content.business
  .section01
  .content_container.on
  .content:not(.tab1)
  .circle_list_wrap.on
  .circle_list.color {
  margin-left: 146px;
}

#wrap_content.business
  .section01
  .content_container.on
  .circle_list_wrap.on
  .circle_list
  span {
  opacity: 1;
  transition: opacity 0.5s;
  transition-delay: 1s;
}

#wrap_content.business .section01 .content .text {
  font-size: 18px;
  text-align: center;
  line-height: 1.56;
}

/* ----- partners ----- */
/* section01 */
#wrap_content.partners .section01 {
  padding: 298px 0 200px;
}
#wrap_content.partners .section01 .inner {
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(100px);
  transition: 1s;
}

#wrap_content.partners .section01 .inner.on {
  opacity: 1;
  transform: translateY(0);
}

#wrap_content.partners .section01 .title {
  font-family: "Raleway", sans-serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 1.17;
}

#wrap_content.partners .section01 .title span {
  display: inline-block;
  color: var(--main-color);
  transform: skew(-12deg);
}

#wrap_content.partners .section01 .company_list_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, auto));
  width: 1160px;
}

#wrap_content.partners .section01 .company_list {
  width: 291px;
  height: 290px;
  padding: 30px 25px;
}

#wrap_content.partners .section01 .logo_wrap {
  height: 50px;
}

#wrap_content.partners .section01 .logo_wrap img {
  width: auto;
}

/* #wrap_content.partners .section01 .company_name {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
} */

#wrap_content.partners .gradient_box {
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  width: 100vw;
  height: 50vh;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #000 100%);
}

#wrap_content.partners .gradient_box.on {
  display: block;
}

/* section02 */
#wrap_content.partners .section02 {
  padding-bottom: 200px;
}

#wrap_content.partners .section02 .banner_img_wrap {
  opacity: 0;
  transform: translateY(100px);
  transition: 1s;
}

#wrap_content.partners .section02 .banner_img_wrap.on {
  opacity: 1;
  transform: translateY(0);
}

/* ----- recruit ----- */
#wrap_content.recruit .main_title {
  margin-bottom: 100px;
  font-family: "Raleway", sans-serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 1.17;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(100px);
  transition: 1s;
}

#wrap_content.recruit .main_title.on {
  opacity: 1;
  transform: translateY(0);
}

/* tab */
#wrap_content.recruit .tab_container {
  position: absolute;
  top: 0;
  right: 250px;
  z-index: 9;
}

#wrap_content.recruit .tab_container.hide {
  z-index: 2;
}

#wrap_content.recruit .tab_container .tab_list_wrap {
  display: flex;
  gap: 17px;
}

#wrap_content.recruit .tab_container .tab_list button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 138px;
  height: 60px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  border: 1px solid #fff;
  border-top: 0;
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  transition: 0.3s;
}

#wrap_content.recruit .tab_container .tab_list.on button {
  color: var(--balck-color);
  background-color: var(--main-color);
  border-color: var(--main-color);
}

/* section01 */
#wrap_content.recruit .section01 {
  padding: 314px 0 100px;
}

#wrap_content.recruit .section01::before,
#wrap_content.recruit .section01::after {
  position: absolute;
  left: 0;
  width: 100%;
  content: "";
  z-index: -1;
}

#wrap_content.recruit .section01::before {
  top: 0;
  height: 960px;
  background: url("../asset/img/img_recruit_section01_bg01.png") no-repeat top
    center / cover;
  opacity: 0.3;
}

#wrap_content.recruit .section01::after {
  top: 327px;
  height: 709px;
  background: linear-gradient(
    180deg,
    rgba(24, 24, 24, 0) 0%,
    rgba(24, 24, 24, 0.5) 25.52%,
    rgba(24, 24, 24, 0.893162) 56.77%,
    #181818 100%
  );
}

#wrap_content.recruit .section01 .deco_img_container {
  position: relative;
  height: 216px;
  margin-bottom: 170px;
  opacity: 0;
  animation: decoImgAni 1s linear forwards;
}

@keyframes decoImgAni {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#wrap_content.recruit .section01 .deco_img_wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1998px;
  height: 100%;
}

#wrap_content.recruit .section01 .recruitment_list_wrap,
#wrap_content.recruit .section01 .recruitment_list,
#wrap_content.recruit .section01 .recruitment_list .sub_title {
  display: flex;
}

#wrap_content.recruit .section01 .recruitment_list_wrap {
  flex-wrap: wrap;
  gap: 100px 0;
  margin-bottom: 100px;
}

#wrap_content.recruit .section01 .recruitment_list {
  justify-content: space-between;
  width: 50%;
  opacity: 0;
  transform: translateY(100px);
  transition: 1.3s;
}

#wrap_content.recruit .section01 .recruitment_list.on {
  opacity: 1;
  transform: translateY(0);
}

#wrap_content.recruit .section01 .recruitment_list:nth-of-type(2) {
  padding-left: 191px;
}

#wrap_content.recruit .section01 .recruitment_list .sub_title {
  align-items: center;
  margin-bottom: 5px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #777;
  text-transform: capitalize;
}

#wrap_content.recruit .section01 .recruitment_list .sub_title .icon_wrap {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 5px;
}

#wrap_content.recruit .section01 .recruitment_list .title {
  font-size: 38px;
  font-weight: 700;
}

#wrap_content.recruit .section01 .recruitment_list .text {
  width: 491px;
  font-size: 18px;
  line-height: 1.56;
}

#wrap_content.recruit .section01 .recruitment_list .text b {
  font-weight: 900;
}

#wrap_content.recruit .section01 .recruitment_list .document_list_wrap {
  width: 376px;
  font-size: 18px;
}

#wrap_content.recruit
  .section01
  .recruitment_list
  .document_list_wrap
  .document_list:not(:last-child) {
  margin-bottom: 5px;
}

#wrap_content.recruit .section01 .recruitment_list .document_list_wrap .number {
  display: inline-block;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 700;
  transform: skew(-10deg);
}

#wrap_content.recruit .section01 .recruitment_step_list_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  height: 368px;
  margin-bottom: 150px;
  border: 1px solid #fff;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(100px);
  transition: 1s;
}

#wrap_content.recruit .section01 .recruitment_step_list_wrap.on {
  opacity: 1;
  transform: translateY(0);
}

#wrap_content.recruit .section01 .recruitment_step_list {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 217px;
  opacity: 0;
  transition: 1s;
}

#wrap_content.recruit .section01 .recruitment_step_list.on {
  opacity: 1;
}

#wrap_content.recruit .section01 .recruitment_step_list:nth-of-type(2) {
  transition-delay: 0.3s;
}
#wrap_content.recruit .section01 .recruitment_step_list:nth-of-type(3) {
  transition-delay: 0.5s;
}
#wrap_content.recruit .section01 .recruitment_step_list:nth-of-type(4) {
  transition-delay: 0.7s;
}
#wrap_content.recruit .section01 .recruitment_step_list:last-child {
  transition-delay: 0.9s;
}

#wrap_content.recruit
  .section01
  .recruitment_step_list:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: url("../asset/img/icon_arrow_right_gray.svg") no-repeat center /
    cover;
  content: "";
}

#wrap_content.recruit .section01 .recruitment_step_list .icon_wrap {
  width: 110px;
  height: 110px;
}

#wrap_content.recruit .section01 .recruitment_step_list .step_text {
  margin: 15px 0 10px;
  font-family: "Raleway", sans-serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 700;
  color: var(--main-color);
}

#wrap_content.recruit .section01 .recruitment_step_list .text {
  font-size: 18px;
  font-weight: 500;
}

/* section02 */
#wrap_content.recruit .section02 {
  padding: 50px 0 200px;
}

#wrap_content.recruit .section02 .position_list_wrap {
  display: flex;
  justify-content: space-between;
}

#wrap_content.recruit .section02 .position_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 490px;
  height: 642px;
  padding-top: 85px;
  border: 1px solid #ffffff;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(100px);
  transition: 1s;
}

#wrap_content.recruit .section02 .position_list:nth-of-type(2) {
  transition-delay: 0.3s;
}

#wrap_content.recruit .section02 .position_list:last-child {
  transition-delay: 0.5s;
}

#wrap_content.recruit .section02 .position_list.on {
  opacity: 1;
  transform: translateY(0);
}

#wrap_content.recruit .section02 .position_list .img_wrap {
  width: 239px;
  height: 239px;
}

#wrap_content.recruit .section02 .position_list .title {
  margin: 20px 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  color: var(--main-color);
}

#wrap_content.recruit .section02 .position_list .text_list {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 1.56;
  letter-spacing: -0.02em;
}

#wrap_content.recruit .section02 .position_list .text_list:not(:last-child) {
  margin-bottom: 20px;
}

#wrap_content.recruit
  .section02
  .position_list
  .text_list:not(:last-child)::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 375px;
  height: 1px;
  background-color: #4e4e4e;
  content: "";
}

/* ----- contact_us ----- */
/* section01 */
#wrap_content.contact_us .section01 {
  padding: 314px 0 200px;
  background: url("../asset/img/img_contact_us_section01_bg01.png") no-repeat
    top center / 100% 556px;
}

#wrap_content.contact_us .section01 .main_title {
  margin-bottom: 360px;
  font-family: "Raleway", sans-serif;
  font-size: 70px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(100px);
  transition: 1s;
}

#wrap_content.contact_us .section01 .main_title.on {
  opacity: 1;
  transform: translateY(0);
}

#wrap_content.contact_us .section01 .map_container {
  position: relative;
  height: 834px;
  background-color: #fff;
}

#wrap_content.contact_us .section01 .map_container::before {
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 551px;
  background: linear-gradient(
    180deg,
    rgba(176, 176, 176, 0) 0%,
    rgba(55, 55, 55, 0.515625) 40.63%,
    #181818 86.46%
  );
  content: "";
  pointer-events: none;
  touch-action: none;
  z-index: 1;
}

#wrap_content.contact_us .section01 #map {
  height: 100%;
}

#wrap_content.contact_us .section01 .map_info_list_wrap {
  position: absolute;
  bottom: -3px;
  left: 50px;
  opacity: 0;
  transform: translateY(100px);
  transition: 1s;
  pointer-events: none;
  touch-action: none;
  z-index: 1;
}

#wrap_content.contact_us .section01 .map_info_list_wrap.on {
  opacity: 1;
  transform: translateY(0);
}

#wrap_content.contact_us .section01 .map_info_list {
  font-size: 38px;
  font-weight: 500;
}

#wrap_content.contact_us .section01 .map_info_list:not(:last-child) {
  margin-bottom: 20px;
}

#wrap_content.contact_us .section01 .map_info_list em {
  font-family: "Raleway", sans-serif;
  color: var(--main-color);
}

/* section02 */
#wrap_content.contact_us .section02 {
  padding: 50px 0 230px;
}

#wrap_content.contact_us .section02 .inner {
  position: relative;
}

#wrap_content.contact_us .section02 .text_container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 160px;
  z-index: 1;
}

#wrap_content.contact_us .section02 .text_container h2 {
  margin-bottom: 70px;
  font-family: "Raleway", sans-serif;
  font-size: 70px;
  font-weight: 600;
  letter-spacing: -0.02em;
  overflow: hidden;
}

#wrap_content.contact_us .section02 .text_container h2 span {
  display: inline-block;
  transform: translateY(100%);
  transition: 0.5s;
}

#wrap_content.contact_us .section02 .text_container h2 em {
  color: var(--main-color);
}

#wrap_content.contact_us .section02 .text_container h2.on span {
  transform: translateY(0);
}

#wrap_content.contact_us .section02 .img_wrap {
  position: relative;
  height: 522px;
}

#wrap_content.contact_us .section02 .img_wrap::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #181818 25.73%,
    rgba(34, 34, 34, 0) 107.63%
  );
  content: "";
}

/* ----- contact ----- */
/* section01 */
#wrap_content.contact .section01 {
  padding: 314px 0 113px;
}

#wrap_content.contact .section01 .top_container {
  display: flex;
  justify-content: space-between;
}

#wrap_content.contact .section01 .main_title {
  font-family: "Raleway", sans-serif;
  font-size: 70px;
  font-weight: 600;
  letter-spacing: -0.02em;
  opacity: 0;
  transition: 1.3s;
}

#wrap_content.contact .section01 .main_title.on {
  opacity: 1;
}

#wrap_content.contact .section01 .text_circle_container {
  width: fit-content;
  margin: 53px auto 0;
  opacity: 0;
  transition: 1.3s;
}

#wrap_content.contact .section01 .text_circle_container.on {
  opacity: 1;
}

#wrap_content.contact .section01 .form_container {
  opacity: 0;
  transform: translateY(100px);
  transition: 1.5s;
}

#wrap_content.contact .section01 .form_container.on {
  opacity: 1;
  transform: translateY(0);
}

#wrap_content.contact .section01 .form_list {
  position: relative;
  width: fit-content;
  font-size: 16px;
  border: 1px solid #ffffff;
  transition: 0.3s;
}

#wrap_content.contact .section01 .form_list.on {
  border-color: var(--main-color);
}

#wrap_content.contact .section01 .form_list label {
  position: absolute;
  top: -17px;
  left: 30px;
  display: inline-block;
  padding: 6px;
  font-size: 14px;
  font-weight: 800;
  background-color: var(--balck-color);
}

#wrap_content.contact .section01 .form_list input {
  width: 601px;
  height: 75px;
  padding: 0 36px;
}

#wrap_content.contact .section01 .form_list:not(:last-child) {
  margin-bottom: 45px;
}

#wrap_content.contact .section01 .form_list:last-child {
  padding: 28px 0 61px;
}

#wrap_content.contact .section01 .form_list textarea {
  display: block;
  width: 1055px;
  height: 394px;
  padding: 0 36px;
  overflow: auto;
  line-height: 1.75;
}

#wrap_content.contact .section01 .form_list textarea::-webkit-scrollbar {
  width: 25px;
}

#wrap_content.contact .section01 .form_list textarea::-webkit-scrollbar-track {
  background: transparent;
}

#wrap_content.contact .section01 .form_list textarea::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 999px;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

#wrap_content.contact .section01 .form_list .text_number {
  position: absolute;
  right: 36px;
  bottom: 28px;
  width: fit-content;
  font-size: 16px;
}

#wrap_content.contact .section01 .form_list .text_number.empty .now {
  color: #4e4e4e;
}

#wrap_content.contact .section01 .form_list .text_number.empty .total {
  display: none;
}

#wrap_content.contact .section01 .bottom_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}

#wrap_content.contact .section01 .privacy_modal_button {
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid #fff;
}

#wrap_content.contact .section01 .animation_text_container {
  margin-top: 150px;
}

@media (hover: hover) {
  #wrap_content.main .section03 .solution_list:hover {
    padding: 50px 50px 69px;
    height: 500px;
  }

  #wrap_content.main .section03 .solution_list:hover::after {
    width: 100%;
    transition: 0.35s;
  }

  #wrap_content.main .section03 .solution_list:hover .title {
    opacity: 1;
  }

  #wrap_content.main .section03 .solution_list:hover .text_circle_wrap {
    opacity: 1;
  }

  #wrap_content.main .section03 .solution_list:hover .text,
  #wrap_content.main .section03 .solution_list:hover .view_detail_button,
  #wrap_content.main .section03 .solution_list:hover .img_wrap {
    visibility: visible;
    opacity: 1;
  }

  @media (max-width: 1600px) {
    #wrap_content.main .section03 .solution_list:hover {
      padding: calc(100vw * (50 / 1580)) calc(100vw * (50 / 1580))
        calc(100vw * (69 / 1580));
      height: calc(100vw * (500 / 1580));
    }
  }

  @media (max-width: 767px) {
    #wrap_content.main .section03 .solution_list:hover {
      padding: calc(100vw * (20 / 370)) calc(100vw * (19 / 370))
        calc(100vw * (45 / 370));
      height: calc(100vw * (345 / 370));
    }
  }
}
