body::-webkit-scrollbar {
  width: 1.4rem; /* 스크롤바의 너비 */
}

body::-webkit-scrollbar-thumb {
  height: 10%; /* 스크롤바의 길이 */
  background-image: linear-gradient(#08f, #a6489b);
  border-radius: 1rem;
}

body::-webkit-scrollbar-track {
  background: rgba(88, 50, 120, 0.1); /*스크롤바 뒷 배경 색상*/
}

/* 스크롤 부드럽게 */
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  width: 100%;
  height: 100%;
}

main {
  overflow: hidden;
}

header {
  position: fixed;
  top: 0%;
  left: 0%;
  z-index: 10;
  width: 100vw;
  background: #ffffff;
  border-bottom: 0.1rem solid #e0e0e0;
  padding: 0 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000000;
  width: 100%;
  height: 8rem;
  font-size: 1.8rem;
  font-weight: 600;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

header > .logoWrap {
  z-index: 1;
  background: url(../img/common/logo/logo1.jpg) no-repeat center;
  width: 14rem;
  height: 4rem;
  background-size: contain;
}

.navWrap {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
}

.navWrap > .navtitle {
  width: 79rem;
  height: 8rem;
  display: flex;
  align-items: center;
}
.navWrap > .navtitle > li {
  height: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
}
.navWrap > .navtitle > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.navWrap > .navcontent {
  position: relative;
  width: 100%;
  height: 35rem;
  background: #f3f4f5;
  display: none;
  justify-content: center;
  border-bottom: 0.1rem solid #e0e0e0;
  box-shadow: 0rem 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

.navWrap.on > .navcontent {
  display: flex;
}

.navWrap > .navcontent > h2 {
  position: absolute;
  top: 4.3rem;
  left: 5rem;
  color: #000000;
}
.navWrap > .navcontent > h2 > p {
  font-size: 4.6rem;
  font-weight: 900;
}
.navWrap > .navcontent > h2 > span {
  font-size: 1.3rem;
  font-weight: 500;
}

.navWrap > .navcontent > ul {
  display: flex;
  width: 79rem;
}
.navWrap > .navcontent > ul > li {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-left: 0.1rem solid #e0e0e0;
  background: #f3f4f5;
  z-index: 1;
}

.navWrap > .navcontent > ul > li:last-child {
  border-right: 0.1rem solid #e0e0e0;
}
.navWrap > .navcontent > ul > li > a {
  font-size: 1.7rem;
  font-weight: 400;
  color: #777777;
  padding: 1rem 0rem;
  text-align: center;
}

.navWrap > .navcontent > ul > li > a:hover {
  color: #4f62ae;
}

.navWrap > .navcontent > ul > li > a:first-child {
  padding-top: 2rem;
}

.navWrap > .navcontent > img {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  width: auto;
  height: 35rem;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.7) 50%,
    black 70%,
    black 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.7) 50%,
    black 70%,
    black 100%
  );
  opacity: 0.4;
}

header > .CompanyMapBtnWrap {
  position: relative;
  width: 17rem;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.6rem;
}

header > .CompanyMapBtnWrap > i {
  margin-right: 2rem;
  font-size: 2.1rem;
}

.hambergerWrap {
  position: fixed;
  top: 0%;
  right: 13rem;
  z-index: 40;
  display: flex;
  align-items: center;
  width: 3.3rem;
  height: 8rem;
}
.hambergerWrap > p {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.8rem;
  width: 3.3rem;
  height: 2.5rem;
}
.hambergerWrap > p > span {
  position: absolute;
  display: inline-block;
  height: 0.3rem;
  background: #000000;
  border-radius: 0.2rem;
  -webkit-transition: 0.25s ease-in;
  transition: 0.2s ease-in;
}
.hambergerWrap > p > span:nth-child(1) {
  top: 0rem;
  width: 3.1rem;
}

.hambergerWrap > p > span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
  visibility: visible;
}

.hambergerWrap > p > span:nth-child(3) {
  bottom: 0rem;
  width: 3.1rem;
}
.hambergerWrap > p.on > span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hambergerWrap > p.on > span:nth-child(2) {
  visibility: hidden;
}
.hambergerWrap > p.on > span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

main > .siteMapWrap {
  position: fixed;
  z-index: 30;
  top: 50%;
  left: 100%;
  transform: translate(0%, -50%);
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
  transition-duration: 0.5s;
}
main > .siteMapWrap.on {
  left: 50%;
  transform: translate(-50%, -50%);
}
.siteMapWrapHeader {
  display: flex;
  align-items: center;
  height: 8rem;
  padding-left: 6rem;
}
.siteMapWrapHeader > h2 {
  background: url(../img/common/logo/logo2_noBg.gif) no-repeat center;
  width: 16.5rem;
  height: 4.5rem;
  background-size: contain;
}

.siteMapWrapMain {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 8rem;
  overflow: hidden;
}

.siteMapWrapMain::before {
  content: "suri e&c";
  position: absolute;
  left: 5rem;
  bottom: -10rem;
  line-height: 1;
  z-index: -1;
  font-size: 70rem;
  color: #e9e9e9;
  opacity: 0.7;
  font-weight: 800;
  white-space: nowrap;
}
.siteMapWrapMain > ul {
  display: flex;
}
.siteMapWrapMain > ul > li {
  width: 34rem;
  height: 32rem;
  padding: 1.5rem 5rem;
  border-left: 0.1rem solid #cccccc;
}
.siteMapWrapMain > ul > li:last-child {
  border-right: 0.1rem solid #cccccc;
}
.siteMapWrapMain > ul > li > h2 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 2.9rem;
}
.siteMapWrapMain > ul > li > p {
  font-size: 1.55rem;
  font-weight: 500;
  color: #444444;
  margin-bottom: 1.2rem;
}
.siteMapWrapMain > ul > li > p::before {
  content: "-";
  margin-right: 1rem;
}

.containerWrap_1 {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
}

.containerWrap_1 > .containerWrap_1_door {
  position: absolute;
  top: 0%;
  bottom: 0%;
  display: flex;
  width: 100%;
  height: 100%;
}

.containerWrap_1 > .containerWrap_1_door > div {
  position: absolute;
  top: 0%;
  width: 50%;
  height: 100%;
  background: #222222;
  opacity: 0.5;
  transition-duration: 1s;
}
.containerWrap_1 > .containerWrap_1_door > div:first-child {
  left: -50%;
}
.containerWrap_1 > .containerWrap_1_door > div:last-child {
  right: -50%;
}

.containerWrap_1 > h2 {
  position: absolute;
  top: 65%;
  opacity: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  z-index: 1;
  transition-duration: 1s;
}
.containerWrap_1 > h2 > p {
  font-size: 4rem;
  font-weight: 600;
}
.containerWrap_1 > h2 > span {
  font-size: 2.2rem;
}

.scrollinductionWrap {
  position: absolute;
  bottom: 10rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
  color: #fff;
  opacity: 0;
  transition: 1s;
}

.scrollinductionWrap > i {
  width: 2.4rem;
  height: 2.4rem;
  border-left: 0.3rem solid #fff;
  border-bottom: 0.3rem solid #fff;
  -webkit-animation: sdb05 1.5s infinite;
  animation: sdb05 1.5s infinite;
  border-radius: 0.2rem;
}

.scrollinductionWrap > span {
  font-size: 1.8rem;
}

@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-2rem, 2rem);
    opacity: 0;
  }
}

main > .scrollTopWrap {
  position: fixed;
  z-index: 2;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  color: #fff;
  font-size: 1.5rem;
  background: rgba(169, 169, 169, 0.5);
  transition: all ease 0.3s;
}

footer {
  position: relative;
  background: #222222;
  color: rgba(255, 255, 255, 0.8);
  padding: 8rem 9.5rem;
}
footer > .footerTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.1rem solid #353535;
  padding-bottom: 3rem;
}
footer > .footerTitle > h2 {
  width: 16rem;
  height: 4rem;
  background: url("../img/common/logo/logo3_noBg.png") no-repeat center;
  background-size: contain;
}
footer > .footerTitle > .linkBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid #ffffff;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 0.3rem;
}
footer > .footerTitle > .linkBtn > i {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
footer > .footerTitle > .linkBtn > p {
  font-size: 1rem;
  line-height: 1;
}

.sharePopup {
  display: none;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: -3.9rem;
  right: 8.1rem;
  background: #f8f9fa;
  padding: 2.1rem;
  border-radius: 1rem;
  border: 0.1rem solid #cccccc;
  box-shadow: 0rem 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
}

.sharePopup::before {
  position: absolute;
  bottom: 0%;
  right: 8%;
  transform: translate(-0%, 50%) rotate(45deg);
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  background: #ffffff;
}

.sharePopup h2 {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.sharePopup > .shareContent {
  width: 18rem;
  height: 3.3rem;
  display: flex;
}
.sharePopup > .shareContent > .address {
  width: 80%;
  border-top-left-radius: 0.6rem;
  border-bottom-left-radius: 0.6rem;
  background: #fff;
  border: 0.1rem solid #ccc;
  color: #2196f3;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  padding-left: 1rem;
}

.sharePopup > .shareContent > .address > p {
  line-height: 1;
}
.sharePopup > .shareContent > .copyBtn {
  width: 20%;
  border-top-right-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
  background: #f4f4f5;
  border: 0.1rem solid #ccc;
  border-left: none;
  font-size: 1.15rem;
  font-weight: 500;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer > .footerMain {
  padding-top: 4rem;
  font-size: 1.6rem;
  font-weight: 100;
}
footer > .footerMain > p {
  padding: 0.4rem 0rem;
  display: flex;
}
footer > .footerMain > p > span {
  display: flex;
  align-items: center;
  margin-right: 4.2rem;
}

footer > .footerMain > p > span > i {
  display: inline-block;
  width: 0.1rem;
  height: 1.4rem;
  margin: 0.2rem 1.2rem 0rem 1.2rem;
  background: rgba(255, 255, 255, 0.5);
}
