.main-mv {
  height: 100vh;
  background-image: url("/image/main/main_mv.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.main-page section {
  overflow: hidden;
}

.main-mv__desc {
  padding-top: 180px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.main-mv__desc p {
  text-transform: uppercase;
  font-family: var(--nanum);
  font-size: 76px;
  font-weight: 600;
  line-height: 1;
}
.main-mv__desc > p:first-child {
  -ms-flex-item-align: start;
      align-self: start;
}
.main-mv__desc div span {
  display: block;
  margin-top: 50px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.main-contact {
  position: absolute;
  bottom: 75px;
  right: 50%;
  -webkit-transform: translateX(850px);
          transform: translateX(850px);
  width: 173px;
  height: 173px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main-contact::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("/image/main/main_mv_typo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: mainMv 15s linear infinite;
          animation: mainMv 15s linear infinite;
}

@-webkit-keyframes mainMv {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes mainMv {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.main-scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-850px);
          transform: translateX(-850px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  color: #fff;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 1;
}
.main-scroll > div {
  width: 1px;
  height: 58px;
  margin-left: 2px;
  position: relative;
}
.main-scroll > div span {
  width: 100%;
  position: absolute;
  background-color: #fff;
  -webkit-animation: mainScroll 2s linear infinite;
          animation: mainScroll 2s linear infinite;
}

@-webkit-keyframes mainScroll {
  0% {
    height: 0;
    top: 0;
  }
  45% {
    height: 100%;
  }
  55% {
    height: 100%;
  }
  100% {
    top: auto;
    bottom: 0;
    height: 0;
  }
}

@keyframes mainScroll {
  0% {
    height: 0;
    top: 0;
  }
  45% {
    height: 100%;
  }
  55% {
    height: 100%;
  }
  100% {
    top: auto;
    bottom: 0;
    height: 0;
  }
}
.main-tit {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.main-desc {
  font-size: 47px;
  font-weight: 700;
  line-height: 1.4;
}

.main-company {
  height: 100vh;
}
.main-company .common-btn {
  margin-top: 40px;
  width: 173px;
}

.main-company__desc {
  position: absolute;
  text-align: center;
  top: 220px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.main-company__txt {
  color: rgba(0, 0, 0, 0.3);
}
.main-company__txt span {
  display: block;
  line-height: 1.6;
  white-space: nowrap;
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 200% auto;
  background-position: -100% -100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#000), color-stop(50%, #000), color-stop(50%, rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.3)));
  background-image: linear-gradient(90deg, #000 0%, #000 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 100%);
}

.main-company__visual {
  background-image: url("/image/main/main_company_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  -webkit-clip-path: polygon(20% 20%, 80% 20%, 80% 80%, 20% 80%);
  clip-path: polygon(20% 20%, 80% 20%, 80% 80%, 20% 80%);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  position: relative;
}

.comp-show {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.comp-show strong {
  font-size: 68px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}
.comp-show > p {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
}
.comp-show.show-02 {
  width: 100%;
  height: 100%;
}
.comp-show ul {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.comp-show ul li {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 60px;
  gap: 10px;
  z-index: 2;
}
.comp-show ul li .img-wrap {
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  -o-object-position: top;
     object-position: top;
  overflow: hidden;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  -webkit-transition: -webkit-clip-path 0.5s ease-in-out;
  transition: -webkit-clip-path 0.5s ease-in-out;
  transition: clip-path 0.5s ease-in-out;
  transition: clip-path 0.5s ease-in-out, -webkit-clip-path 0.5s ease-in-out;
}
.comp-show ul li .img-wrap.show {
  -webkit-clip-path: inset(0% 0% 0% 0%);
          clip-path: inset(0% 0% 0% 0%);
}
.comp-show ul li .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.comp-show ul li h2 a {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.comp-show ul li h2 a:hover img {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.comp-show ul li h2 img {
  width: 32px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.comp-show ul li p {
  color: #fff;
  font-family: var(--nanum);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  text-transform: uppercase;
  text-align: left;
}
.comp-show ul li .txt-clip {
  overflow: hidden;
}
.comp-show ul li .txt-cliph2 {
  height: 36px;
}
.comp-show ul li .txt-clipp {
  height: 20px;
}
.comp-show ul li .visual-dim {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.comp-show ul li:hover .visual-dim {
  opacity: 0 !important;
}

.main-business {
  padding: 140px 0;
  z-index: 2;
  position: relative;
}
.main-business::after {
  content: "";
  width: 1107px;
  height: 1107px;
  position: absolute;
  bottom: -143px;
  right: -244px;
  background-image: url("/image/main/main_business_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-animation: mainMv 13s linear infinite;
          animation: mainMv 13s linear infinite;
  z-index: -1;
}
.main-business ul {
  display: grid;
  grid-gap: 100px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: -170px;
}
.main-business ul li {
  height: 700px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.main-business ul li:first-child {
  margin-top: 220px;
}
.main-business ul li:last-child {
  margin-top: -220px;
}
.main-business ul li a {
  display: block;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 60px;
  color: #fff;
}
.main-business ul li h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}
.main-business ul li h3 img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.main-business ul li:hover h3 img {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.main-business ul li p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.main-business__tit {
  width: 650px;
}

.main-service {
  position: relative;
  z-index: 2;
  padding: 178px 0;
  background-image: url("/image/main/main_service_bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
}
.main-service .main-tit {
  color: rgba(255, 255, 255, 0.6);
}
.main-service ul {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 25px 20px;
}
.main-service ul li {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-service ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #fff;
}
.main-service ul li a img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.main-service ul li:hover {
  border-radius: 20px;
}
.main-service ul li:hover a {
  background-color: transparent;
}
.main-service ul li:hover a img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.main-service ul li:hover .main-service__bg {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.main-service__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.main-news {
  padding: 140px 0;
}
.main-news .common-btn {
  width: 164px;
}
.main-news .mo-btn {
  display: none;
}
.main-news ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 50px;
}
.main-news ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.main-news ul li a {
  display: block;
}
.main-news ul li figure {
  position: relative;
  width: 100%;
  padding-top: 65%;
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.main-news ul li figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  top: 0;
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  left: 0;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
.main-news ul li:hover figure img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.main-news ul li:hover b {
  color: var(--orange);
}
.main-news ul li b {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  max-height: 2.8em;
  -webkit-line-clamp: 2;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.main-news ul li p {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #888;
}

.main-news__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-info {
  border-top: 1px solid #ddd;
}
.main-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-info ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.main-info ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 100px 0;
  gap: 220px;
  font-size: 30px;
  font-weight: 600;
}
.main-info ul li:last-child {
  border-left: 1px solid #ddd;
}
.main-info ul li:last-child a {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media all and (max-width: 1800px) {
  .main-contact {
    right: 3.90625%;
    -webkit-transform: none;
    transform: none;
  }
  .main-scroll {
    left: 3.90625%;
    -webkit-transform: none;
    transform: none;
  }
}
@media all and (max-width: 1500px) {
  .main-mv__desc p {
    font-size: 57px;
  }
  .comp-show strong {
    font-size: 48px;
  }
  .main-info ul li a {
    font-size: 24px;
  }
  .main-info ul li a img {
    width: 50px;
  }
}