@charset "utf-8";
/* set */
:root{
  --container-padding: 0 5%;
  --black : #121410;
  --white : #fff;
  --main-color-10 : #40000F;
  --main-color : #E91158;
  --main-color-90 : #FFD9DD;
  --surface : #FAFAF3;
  --surface-dark : #121410;
  --surface-container : #E3E3DC;
  --outline : #424940;
  --outline-light : #C2C8BD;
  --outline-dark : #8C9388;
  --font-size-1025 : 0.694vw;
  --font-size-768 : 0.9vw;
  --font-size-20px :1.55rem;
  --font-size-24px :1.8rem;
  --font-size-32px :2.4rem;
  --font-size-48px :3.6rem;
  --border-width: 2px;
}
@media all and (  max-width : 1024px){
  :root{
    --container-padding: 0 3%;
    --font-size-20px :1.75rem;
    --border-width: 1px;
  }
}
@media all and (  max-width : 768px){
  :root{
    --font-size-20px :2rem;
    --font-size-24px :2.15rem;
    --font-size-32px :2.6rem;
    --font-size-48px :3.8rem;
  }
}

@media all and ( min-width : 1025px){
  html{
    font-size: var(--font-size-1025);
  }
}
@media all and (  max-width : 1024px){
  html{
    font-size: var(--font-size-768);
  }
}
@media all and (  max-width : 768px){
  html{
    font-size: 1.15vw;
  }
}
@media all and (  max-width : 430px){
  html{
    font-size: 1.85vw;
  }
}

.en{ font-family: 'IBM Plex Sans KR', sans-serif; }
.en-ny{ font-family: 'Nothing You Could Do', cursive;}

ul,li{ padding: 0; margin: 0; list-style: none; }
a{ display: block; color: inherit; text-decoration: none; }
img{ display: block; border: 0;}

body{
	color: var(--black);
  font-family: 'IBM Plex Sans KR', sans-serif;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	cursor: none;
	overflow-x: hidden;
}
/* scrollbar */
body::-webkit-scrollbar {
  width: 4px;
  /* background: linear-gradient(0deg, #E91158 0%, rgba(194, 194, 196, 0) 99%); */
  background: #d3d2d3;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(#E91158, #E91158);
  /* border: 1px solid #d3d2d3; */
  border-radius: 6px;
  /* height: 20px; */
  min-height: 100px; /* 스크롤바 막대 최소 높이 */
}
body::-webkit-scrollbar-thumb:hover {
  border: 0px solid transparent;
  box-shadow: inset 6px 6px 0 #1f1f1f;
}
/* body::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: transparent;
} */

/* scroll x */
html.no-scroll,body.no-scroll{
  width: 100vw;
  height: 100vh;
  overflow: hidden !important;
  touch-action: none;
}
/* cursor */
div.cursors div{
  position: absolute;
  top: 0; left: 0; 
  width: 70px;
  height: 70px;
  background-color: rgba(216, 216, 216, 0.2);
  border-radius: 50%;
  z-index: 1000;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
}
div.cursors #main-cursors span{
  /* position: absolute;
  top: 0; left: 0; */
  font-size: 24px; font-weight: 400;
  line-height: 100px;
  padding: 0 9px;
  color: #000000;
  /* transform: translate(-50%, -50%); */
  opacity: 0; 
  /* transition: opacity 0.5s; */
}
div.cursors #main-cursors span.hover{
  opacity: 1;
}
div.cursors #main-cursors{
  width: 30px; height: 30px;
  background-color: #11E9A2;
  border-radius: 50%;
  mix-blend-mode: difference;
  z-index: 1000;
  overflow: hidden;
  transition: width 0.3s , height 0.3s;
  display: flex; justify-content: center; align-items: center;
  /* transition: height 0.5s; */
}
div.cursors #main-cursors.hover{
  width: 100px; height: 100px;
  /* transform: scale(2); */
  /* background-color: rgba( 0, 0, 0, 1); */
  background-color: #fff;
  /* mix-blend-mode: overlay; */
}

/* common */
.wrap{
  width: 100%;
  position: relative;
  float: left;
  overflow: hidden;
  background-color: #f3f3f3;
}
header,section,footer{
  width: 100%;
  float: left;
  position: relative;
}
.container{
  padding: var(--container-padding);
  position: relative;
  margin: 0 auto;
  height: 100%;
}
hr{
  width: 100%; height: var(--border-width);
  background-color: var(--outline);
}
p{ font-size: var(--font-size-20px); font-weight: 300; word-break: keep-all; }

#tsparticles{
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0; left: 0;
  mix-blend-mode: difference;
}
.company_bg{
  width: 100%; height: 100%;
  position: fixed; inset: 0;
  background-image: radial-gradient(40% 49% at 50% 50%, rgb(249, 252, 253) 40%, #e6e4e600 100%),radial-gradient(75% 75% at 50% 50%, #f9f9fa 1%, #e9e6e9 100%);
  /* background-color: #f9f9fa; */
}
/* ====== header ===== */

.header{
  width: 100%; height: 85px;
  position: fixed; top: 0; left: 0;
  z-index: 100;
  padding-top: 40px;
  mix-blend-mode: difference;
}

.in_header{
  display: flex;justify-content: space-between; align-items: center;
  width: 88%;
  margin: var(--container-padding);
}
.logo{
  width: 50px;  height: 100%;
}
.logo>a{
  width: 100%; height: 45px;
}
.logo img{
  height: 100%;
  margin-right: 5px;
}
.gnb_nav{
  width: 90%;
  display: flex;
  justify-content: flex-end;
  margin-right: 2.5rem;
}
.gnb_nav>li{
  padding: 0 1.5rem;
  font-size: clamp(15px,16px,17px); font-weight: 400;
  color: var(--white);
}
@media all and (  max-width : 768px){
  .header{ padding-top: 30px; height: 60px;}
  .gnb_nav{ display: none; }
}


/*side btn */
.side_btn_wrap{
  height: 36px;
  position: fixed; right: 5%; top: 41px; 
  z-index: 301;
  display: flex;
  align-items: flex-end;
  mix-blend-mode: difference;
}
.side_btn{
  width: 36px; height: 25px;
  display: block;
  cursor: pointer;
}
.side_btn:before,
.side_btn:after,
.side_btn div {
  background: var(--white);
  content: "";
  display: block;
  height: 2px;
  transition: 0.5s;
}
.side_btn::before{ width: 120%; }
.side_btn::after{ width: 90%; }
.side_btn div{
  width: 50%;
  margin: 7px 0;
}
/* click */
.side_btn.click:before {
  width: 100%;
  transform: translateY(9px) rotate(135deg);
}
.side_btn.click:after {
  width: 100%;
  transform: translateY(-9px) rotate(-135deg);
}
.side_btn.click div {
  transform: scale(0);
}
/* side menu */
.side_gnb{
  position: fixed; top: 0; left: 0; z-index: 300;
  width: 100vw; height: 100vh;
  color: var(--white);
  padding: 26px 5% 0 5%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}
.side_bg{
  position: absolute; top: 0; left: 0;
  background-color: #000000;
  opacity: 0;
  z-index: -1;
  width: 100%; height: 100%;
}
.side_container{
  height: 100%;
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  grid-template-rows: 10px auto 10px 6rem;
  font-size: 5rem; font-weight: 300;
  align-items: center;
}
.side_line{
  grid-column: 1 / 3;
  width: 100%; height: 1px;
  background-color: var(--outline-light);
  transform: scale(0);
}
.side_left{
  text-align: center;
}
.side_left>li{
  line-height: 1.6;
  letter-spacing: 0.1em;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.side_left>li:nth-child(4){
  display: none;
}
.side_left>li>a{
  transform: translateY(100px);
}
.side_left>li:not(.side_sns)>a{
  display: inline-block;
}
.side_right{
  height: 100%;
  padding: 3rem 0 3rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.side_right>li>h2{
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: inline-block;
}
.side_right>li>a>p{
  font-size: var(--font-size-32px);
  margin: 0.5rem 0;
}
.side_back{
  display: none; 
}
.side_gnb a{
  transition: all 0.6s cubic-bezier(.36,.95,.5,1);
}
.side_sns{
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  -webkit-user-select:text !important;
  -moz-user-select:text !important;
  -ms-user-select:text !important;
  user-select:text !important;
}
.side_sns a{
  margin: 0 0.5em;
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
}
.side_sns a svg{
  width: 17px; height: 17px;
  margin-left: 7px;
}
.side_sns a svg path{
  stroke: var(--outline-dark);
}
.side_bottom{
  grid-column: 1 / 3;
  display: flex;
  justify-content: center; align-items: center;
}
.side_bottom>li{
  margin: 0.2rem 5rem;
}
.side_bottom>li>p{
  font-size: 1.8rem;
}
.side_gnb .side-current{
  color: var(--main-color);
  position: relative;
}
.side_gnb .side-current::after{
  content: '';
  width: 100%; height: 1px;
  background-color: var(--main-color);  
  position: absolute;
  top: 45%; left: 0%; 
}

@media all and (  max-width : 768px){
  .side_btn_wrap{ top: 32px; }
}
@media all and (  max-width : 430px){
  .side_container{
    grid-template-columns: 1fr;
    grid-template-rows: 10px auto 10px 20rem;
  }
  .side_right{
    width: 100%;    
    height: auto;
    position: absolute;
    top: 0; left: 0;
    /* transform: translate(100%, 0); */
    /* transition: transform 0.6s; */
    padding: 20rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    visibility: hidden;
  }
  .side_right>li:first-child{
    display: flex;
    justify-content: space-between;
  }
  .side_right>li>h2{
    margin-bottom: 1.5rem;
  }
  .side_right>li>h2~a{
    display: block;
  }
  .side_back{
    display: block;
    width: 50px; height: 50px; 
  }
  .side_right>li>a>p{
    margin: 1rem 0;
  } 
  .side_back svg{
    width: 40px; height: 40px;
    margin-left: 7px;
  }
  .side_back svg path{
    stroke: var(--outline-light);
  }

  .side_left>li:nth-child(4){ 
    display: flex;
    justify-content: center; 
  }
  .side_left>li:nth-child(4) img{
    margin-bottom: 10px;
    margin-left: 10px;
  }
  .side_sns{ margin-top: 7rem; }
  .side_bottom{ flex-direction: column; }
  .side_bottom>li>p{ font-size: 2.5rem; }
}

/* ====== main common ===== */
.main_icon{
  width: 11.5rem; height: 11.5rem;
  border: var(--border-width) solid var(--outline);
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  flex-shrink: 0;
}
.main_icon path{
  fill: var(--outline);
}
.clipping,.splitting{
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
@media all and (  max-width : 768px){
  .main_icon{
    width: 17rem; height: 17rem;
  }
}
@media all and (  max-width : 430px){
  .main_icon{
    width: 15rem; height: 15rem;
  }
}

/* ====== footer ===== */
footer{
  width: 100%;
  word-break: keep-all;
  background-color: var(--surface-dark);
  border-top: 1px solid var(--outline) ;
  padding: 7rem 0 2rem 0;
  backdrop-filter: blur(10px);
}
footer>.container{
  display: flex; 
  flex-direction: column;
  align-items: flex-end;
}
footer .main_icon{
  border-color: var(--outline-light);
}
.footer_txt{
  width: 100%;
  margin-top: 7rem;
  display: flex;
  justify-content: space-between;
}
.footer_txt h4{
  color: var(--outline-dark);
  font-size: var(--font-size-20px);
  font-weight: 300;
  letter-spacing: 0.2em;
}
.contact_txt{
  color: var(--surface-container);
  letter-spacing: 0.2em;
}
.contact_txt>h3{
  font-size: var(--font-size-48px); 
  font-weight: 400;
  line-height: 1.6;
}
.address_txt>p{
  font-size: var(--font-size-24px); font-weight: 300;
  color: var(--surface-container);
  letter-spacing: 0.08em;
  margin: 1rem 0 3rem 0 ;
}
.sns{
  display: flex;
  margin-top: 5em;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.sns>a{
  margin-right: 30px;
}
.sns>a>p{
  display: flex; align-items: center;
  font-size: var(--font-size-24px);
  color: var(--surface-container);
  text-decoration: underline;
  transition: color 0.6s;
}
.copyright>p{
  color: var(--outline-dark);
  font-size: var(--font-size-20px); font-weight: 400;
  margin-top: 3em;
}
.footer_top{
  width: 15%;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.footer_top>h4{
  position: absolute; 
  bottom: 2rem;
}
.footer_top svg{
  width: 100%;
}
.footer_top svg path{
  stroke: var(--outline-light);
  stroke-width: 1px;
  stroke-linejoin: bevel;
  transition: stroke 0.6s;
}
.footer_top:hover path{
  stroke: var(--main-color);
}
.footer_txt .sns>a:hover p{
  color: var(--main-color);
}

@media all and (  max-width : 768px){
  .footer_top{
    position: absolute;
    bottom: 30px; right: 3%;
  }
}
@media all and (  max-width : 430px){
  .footer_txt{
    margin-top: 0;
    flex-direction: column;
  }
  .contact_txt{ margin-bottom: 5rem; }
  .contact_txt>h3{ font-weight: 300; line-height: 1.4; }
  .footer_top{ right: 5%; width: 30%; }
  .footer_top svg path{ stroke: var(--main-color); }
}


/* popup */
/* #modal_wrap{
  position: fixed;
  z-index: 1000;
  top: 0; right: 0;
  width: 100%; 
  height: 100%;
  display: block;
}
.modal_body{
  position: absolute;
  top: 100px; right: 50px;
  width: 500px;
  height: 750px;
  background-color: #00ccff;
}
#close-btn{
  float: right;font-weight: bold;
  width: 50px; height: 50px;
  color: #777;
  font-size: 25px;
  cursor: pointer;
  background-color: #a70f1c;
} */
