@charset "utf-8";

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; */
}

.en{ font-family: 'IBM Plex Sans KR', sans-serif; }
.en-ny{ font-family: 'Nothing You Could Do', cursive;}
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: 10px;
  /* background: linear-gradient(0deg, #E91158 0%, rgba(194, 194, 196, 0) 99%); */
  background: #f9f9fa;
}
body::-webkit-scrollbar-thumb {

  background: linear-gradient(#272727 , #272727);
  border: 2px solid #f9f9fa;
  border-radius: 10px;
  /* height: 20px; */
  min-height: 120px; /* 스크롤바 막대 최소 높이 */
}
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(#E91158, #E91158);
}


#portnav_top.fixed {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	z-index: 20;
  background-color: transparent;
  mix-blend-mode: difference;
}
#portnav_top .bar {
	position: relative;
  padding: 0 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
	z-index: 110;
  width: 100%;
	height: 100%;
	/* background-color: rgba(255, 255, 255, 0.5); */
	}
#portnav_tit {
  width: 150px;
}
#portnav_tit>a{
  /* padding: 0.25rem 0; */
  border-bottom: 1px solid #e4e9e1;
  display: flex;
  justify-content: space-between;
  align-items: center;
	color:#e4e9e1;
}  
#portnav_tit>a>p{
  font-size:16pt;
	font-weight:400;
}
#portnav_tit>a>div{
  width: 34px; 
}
#portnav_tit>a>div>svg{
  width: 100%;
  padding-top: 4px;
}
#portnav_tit>a>div>svg>path{
  stroke: #e4e9e1;
  stroke-linejoin: round;
}
#portnav_top .lang {
  width: 200px;
  /* display: none; */
}
#portnav_top .lang ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#portnav_top .lang a {
	color:#e4e9e1;
  display: flex;
  align-items: center;
	}
#portnav_top .lang a p{
  font-size: 16px;
  padding: 0 10px;
}
/* #portnav_top .lang a:hover {
	opacity:1;
	filter: alpha(opacity=100);
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	}
#portnav_top .lang a.blank {color:#ecd015;} */
@media (max-width:430px){
  #portnav_tit {
    width: 120px;
  }
  #portnav_tit>a>p{
    font-size:14pt;
  }
  #portnav_tit>a>div{
    width: 28px; 
  }
  #portnav_tit>a>div>svg{
    width: 100%;
    padding-top: 4px;
  }
  #portnav_top .lang {
    width: 100px;
    /* display: none; */
  }
  #portnav_top .lang a p{
    font-size: 14px;
    padding: 0 5px;
    display: none;
  }
}

/*footer*/
#footer{
    width:100%;
    background-color:#f9f9fa;
    border-top: 1px solid #C2C8BD;
    color:#8C9388;
    padding: 2rem 3%;
    margin-top: 100px;
}
#footer_wrap{
    width: 100%;
    line-height:19px;font-weight:400;font-size:15px;
}
#footer_wrap .logo{
    width:190px;height:41px; 
    background:url(../../img/footer_logo_m.png) no-repeat ; background-size: contain;
    overflow:hidden; 
    display: none;
}
.footer_link{
    width: 100%;
    display: flex;
    flex-direction: row; flex-wrap: wrap;
    margin-top: 1rem;
}
.footer_link li{
    margin: 0.25rem 1rem 0.25rem 0;
}
#footer_wrap .copyright{
    width: 100%; font-size: 0.8rem;
    margin-top: 1.5rem;
 }

/*------- common --------------------------------------------------------*/
img {max-width:100%}

._motion {
    -webkit-transition-duration: .6s;-moz-transition-duration: .6s;-ms-transition-duration: .6s;-o-transition-duration: .6s;transition-duration: .6s;
}
._motion-hover {
    background:#000;width:100%; height:100%; position:absolute;left:0; top:0; z-index:-1;
    -webkit-transform: translate(-150%, 0) skew(45deg);-moz-transform: translate(-150%, 0) skew(45deg);-ms-transform: translate(-150%, 0) skew(45deg);-o-transform: translate(-150%, 0) skew(45deg);transform: translate(-150%, 0) skew(45deg);
}
.item:hover ._motion-hover,
.item:active ._motion-hover,
.item._active ._motion-hover {
    -webkit-transform: translate(-30px, 0) skew(45deg);-moz-transform: translate(-30px, 0) skew(45deg);-ms-transform: translate(-30px, 0) skew(45deg);-o-transform: translate(-30px, 0) skew(45deg);transform: translate(-30px, 0) skew(45deg);
}

.moveTop {display:block ;width:40px; height:40px; background:url(../../img/move_top.png) no-repeat center; position:fixed; right:5px; bottom:20px; z-index:100;}

/*_motion*/
._motion-moveTop {opacity: 1}
._motion-moveTop._hide {opacity:0}

/*------- container --------------------------------------------------------*/
/* common */
.img-wrap {background-size:cover; background-position:center; background-repeat: no-repeat; display:block;}
.section {position:relative}

/* .page-projects */
.page-projects #container {padding-top:9.38vw;}
.page-projects .section {padding-bottom:150px;}
.page-projects .section .m-main {max-width:1260px; padding:0 30px;}

/* .page-detail */

/* .close-frame {
    display:block; 
    width:60px; height:60px;  
    position:fixed; 
    top: 0;
    right:3%; 
    z-index:99999;
}
.close-frame._active {
    -webkit-transition-duration: .8s;
    -o-transition-duration: .8s;
    transition-duration: .8s;
    -webkit-transition-delay: .4s;
    -o-transition-delay: .4s;
    transition-delay: .4s;
}
.close-frame:after,.close-frame:before {
	content:""; 
    display:block; 
    width:30px; height:2px; 
    position:absolute; right:3%; top:50%;
    background-color: #FF0015;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    -o-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}
.close-frame:after {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
} */

.page-detail{ background-color: #f9f9fa; }
/* .page-detail .m-main { width: 100%; padding:0 3% !important; } */
.page-detail .m-main { width: 100%; }
.page-detail .sec-kv .img-wrap {
  width: 100%;
  background-position:center bottom ; 
  background-size: cover !important;
}

/* .page-detail .sec-kv .img-wrap .m-main {height:670px; position:relative} */
.page-detail .sec-kv header {
  color:#fff; 
  padding: 120px 5% 18vw 5%;
  /* padding: 15vw; */
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25);
}
.page-detail .sec-kv header dl {margin-bottom:25px; line-height:1;}
.page-detail .sec-kv header dt {font-size:20px; font-weight:500; color: #121410;}
.page-detail .sec-kv.eca header dt {font-size:20px; font-weight:500; color: #C2C8BD;}
.page-detail .sec-kv header dd {font-size:24px; font-weight:500; margin-top:16px;text-transform: uppercase}
.page-detail .sec-kv header .project-detail{display: flex;}
.page-detail .sec-kv header .project-detail dl{margin-right: 65px;}
.page-detail .sec-kv header dl.bland  {font-size:20px; margin-bottom:20px;}
.page-detail .sec-kv header dl.bland dt,
.page-detail .sec-kv header dl.bland dd{font-weight:500; margin-top:20px; color: #121410; }
.page-detail .sec-kv.eca header dl.bland dd{font-weight:500; margin-top:20px; color: #C2C8BD; }
.page-detail .sec-kv header .poroject-tit {
  font-size:60px; 
  margin-bottom:40px; 
  line-height:1; 
  font-weight: 700;
}
.page-detail .sec-kv header .poroject-tit .link a img{
    margin-top: 20px;
}


/* renew */
.page-detail#renew .sec-kv header {
  color:#3a3a3a; 
  padding: 70px 3%;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-shadow: none;
  /* padding: 15vw; */
}
.page-detail#renew .sec-kv header .poroject-tit{
  font-size: clamp( 110px, 7vw, 7vw );
  margin-bottom: 6vw; 
  line-height: 1.2; 
  font-weight: 300;
  text-align: center;
  letter-spacing: -0.05em;
  /* position: relative; */
}
.page-detail#renew .sec-kv header .poroject-tit span{
  position: relative;
}
.page-detail#renew .sec-kv header .poroject-tit span::after{
  content: attr(data-text);
  position: absolute; bottom: -32%; left: 0;
  transform: rotateX( 180deg ) scaleY(0.85);
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0)20%, rgba(233, 17, 88, 0.10)60%, rgba(34, 0, 14, 0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-detail#renew .sec-kv header dt{
  font-size: clamp( 24px, 1.5vw, 1.5vw ); 
  font-weight:400; 
  color: #8C9388;
}
.page-detail#renew .sec-kv header dd {
  font-size: clamp( 24px, 1.5vw, 1.5vw ); 
  font-weight:400; 
  color: #424940;
  margin-top:24px;
}
.page-detail#renew .sec-kv header dl.bland dd{
  font-weight:400; 
  font-size: clamp( 24px, 1.5vw, 1.5vw ); 
  line-height: 1;
  color: #E91158;
}
.page-detail#renew .sec-kv header .project-detail dl{
  margin-right: 0px;
}
.page-detail#renew .sec-kv header .project-detail dl:nth-child(2){
  margin: 0 100px;
}
.page-detail#renew .sec-kv .project-link{
  display: flex;
  justify-content: center; align-items: center;
  margin-top: 40px;
  font-size: clamp( 20px, 1.4vw, 1.4vw );
  color: #808080;
}
.page-detail#renew .sec-kv .project-link img{
  width: 24px;
  margin-right: 20px;
}
.page-detail#renew .sec-kv .main_background{
  width: 100%;
  position: relative;
  margin-bottom: 200px;
}

@media (max-width:1024px) {
  .page-detail#renew .sec-kv header {
    padding: 100px 5%;
  }
  .page-detail#renew .sec-kv header .poroject-tit{
    font-size: clamp( 70px, 10vw, 10vw );
    /* font-weight: 200; */
    margin-bottom:8vw; 
  }
  .page-detail#renew .sec-kv header dt{
    font-size: clamp( 20px, 2.3vw, 2.3vw ); 
  }
  .page-detail#renew .sec-kv header dd {
    font-size: clamp( 20px, 2.3vw, 2.3vw ); 
    margin-top:15px;
  }
  .page-detail#renew .sec-kv header dl.bland dd{
    font-size: clamp( 20px, 2.3vw, 2.3vw ); 
    color: #E91158;
  }
  .page-detail#renew .sec-kv header .project-detail dl:nth-child(2){
    margin: 0 10vw;
  }
}
@media (max-width:430px){
  .page-detail#renew .sec-kv header {
    padding: 120px 3%;
  }
  .page-detail#renew .sec-kv header .poroject-tit{
    font-size: 58px;
    margin-bottom:15vw;   
  }
  .page-detail#renew .sec-kv header dt{
    font-size: 18px; 
  }
  .page-detail#renew .sec-kv header dd {
    font-size: 18px; 
    margin-top:15px;
  }
  .page-detail#renew .sec-kv header dl.bland dd{
    font-size: 18px; 
  }
  .page-detail#renew .sec-kv .project-link{
    margin-top: 20px;
    font-size: 18px;
  }
  .page-detail#renew .sec-kv .project-link img{
    width: 20px;
    margin-right: 10px;
  }
}
@media (max-width:500px) {
  .page-detail#renew .sec-content {margin-top: 200px;}
  .page-detail#renew .sec-kv .img-wrap .m-main {height:auto !important;}
}

/* item-full */
.page-detail .sec-content .item-full,.page-detail .sec-content .item-renew{
  padding: 0 3%;
}
.page-detail .sec-content .item-renew .item_one{
  text-align: left;
  margin-bottom: 200px;
}
.page-detail .sec-content .item-renew .item_two{
  text-align: right;
  margin-bottom: 200px;
}
.page-detail .sec-content .item-renew .item_one>img,.page-detail .sec-content .item-renew .item_two>img{
  width: 100%;
  max-width: 1056px;
}
.page-detail .sec-content .item-renew .item_middle{
  width: 100%;
  margin-bottom: 200px;
}
.page-detail .sec-content .item-renew .item_middle>.video_bg{
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
  /* padding: 100px; */
  border-radius: 20px;
  background-color: #808080;
  position: relative;
}
.page-detail .sec-content .item-renew .item_middle>.video_bg>video{
  display: block;
  margin: 0 auto;
  padding: 15% 10%;
  width: 100%;
}
.page-detail .sec-content .item-renew .item_middle>.iframe_bg{
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
  padding: 3%;
  border-radius: 20px;
  background-color: #808080;
  position: relative;
}
.page-detail .sec-content .item-renew .item_middle>.iframe_bg>div{
  width: 100%;
  height: 0;
  padding-top: 56%;
  position: relative;
}
.page-detail .sec-content .item-renew .item_middle>.iframe_bg>div>iframe{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
}
.page-detail .sec-content .item-renew .item_middle>img{
  width: 100%;
  max-width: 1440px;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 10px;
  display: block;
}
.page-detail .sec-content .item-renew .item_last{
  margin-top: 200px;
  display: flex;
  flex-wrap: wrap;
}
.page-detail .sec-content .item-renew .item_last>img{
  width: 50%;
}
@media (max-width:1024px){
  .page-detail .sec-content .item-renew .item_last{
    margin-top: 0px;
    display: flex;
    flex-wrap: wrap;
  }
  .page-detail .sec-content .item-renew .item_last>img{
    width: 100%;
    margin-bottom: 200px;
  }
  .page-detail .sec-content .item-renew .item_middle>img{
    border-radius: 0px;
  }
  
}
@media (max-width:768px){
  .page-detail .sec-content .item-renew{
    padding: 0 3%;
  }
  .page-detail .sec-content .item-renew .item_one{
    margin-bottom: 80px;
  }
  .page-detail .sec-content .item-renew .item_two{
    text-align: center;
    margin-bottom: 80px;
  }
  .page-detail .sec-content .item-renew .item_middle{
    width: 100%;
    margin-bottom: 80px;
  }
  .page-detail .sec-content .item-renew .item_last{
    margin-bottom: 0px;
    display: flex;
    flex-wrap: wrap;
  }
  .page-detail .sec-content .item-renew .item_last>img{
    width: 100%;
    margin-bottom: 80px;
  }
  .page-detail .sec-content .item-renew .item_middle>.video_bg{
    border-radius: 10px;
  }
  .page-detail .sec-content .item-renew .item_middle>.video_bg>video{
    padding: 15% 5%;
  }
}
/*  */

.page-detail .sec-content {margin-top:100px;}
.page-detail .sec-content .item { display: flex; flex-direction: column; align-items: center;}
.page-detail .sec-content .item img {margin: 0 auto;}

.page-detail .sec-contentpr {margin-top:-420px;}
.page-detail .sec-contentpr .editor-container {margin-top:50px; padding-bottom:0px;}
.page-detail .sec-contentpr .item {padding-bottom:100px;}
.page-detail .sec-contentpr .item img {
  width: 100%; 
  max-width: 1200px;
  object-fit: cover; 
  margin: 10vw auto; 
  text-align: center;
  display: block;
}
.page-detail .sec-contentpr .item img.has-padding {padding: 0 3%;}
@media (max-width:1440px){
  .page-detail .sec-contentpr .item img {margin: 20vw 0;}
}
@media (max-width:1000px) {
  .page-detail .sec-kv header {padding: 100px 3% 50vw 3%;}
  .page-detail .sec-kv header dl {margin-bottom:2.5vw;}
  .page-detail .sec-kv header dl.bland  {margin-bottom:2vw;}
  .page-detail .sec-kv header dl.bland dd {margin-top:1vw;}
  .page-detail .sec-kv header dt {font-size:18px;}
  .page-detail .sec-kv header dd {font-size:20px; margin-top:10px;}
  .page-detail .sec-kv header .poroject-tit {font-size:6vw; margin-bottom:4vw;}
  .page-detail .sec-content .editor-container {padding-bottom:7.5vw;}
  .page-detail .sec-content .item {margin-bottom:4vw;}
}
@media (max-width:768px) {
	.page-detail .sec-contentpr {margin-top:-300px;}
  .page-detail .sec-contentpr .item:last-child {margin-bottom:0;}
  .page-detail .sec-contentpr .item {padding-bottom:50px;}
  .page-detail .sec-content .item1 {margin-bottom:40px; display:block;}
  .page-detail .sec-content .item1 img {margin-top:-90px;}
  .page-detail .sec-content .item1:last-child {margin-bottom:0;}
}
@media (max-width:500px) {
    #portnav_top .lang {
        right: calc( 3% + 55px);
    }
    #portnav_top .lang ul li {
        padding:10px 8px;
    }
    .page-detail .sec-kv .img-wrap .m-main {height:542px !important; padding-top:0 !important;}
    .page-detail .sec-kv header dl {margin-bottom:12px;}
    .page-detail .sec-kv header dl.bland  {margin-bottom:10px;}
    .page-detail .sec-kv header dl.bland dd {margin-top:5px}
    .page-detail .sec-kv header dt {font-size:14px;}
    .page-detail .sec-kv header dd {font-size:16px; margin-top:10px;}
    .page-detail .sec-content .editor-container {padding-bottom:37px;}
    .page-detail .sec-kv header .poroject-tit {font-size:30px; }
    .page-detail .sec-content .item {margin-bottom:20px;}
    .page-detail .sec-contentpr .item {padding-bottom:100px;}
}

