/*reset.css*/
body, html{ 
  margin:0; 
  padding:0; 
  width:100%; 
  height:100%; 
  scroll-behavior: smooth;
}
body, html, input, textarea, select, button, table{ 
	font-family: 'pretendard', sans-serif;
	-webkit-font-smoothing:antialiased
 }
form, fieldset, h1, h2, h3, h4, h5, h6, p{ 
  margin:0; 
  padding:0; 
  word-break: keep-all;
}
form, fieldset, button{ 
  border:none;
}
ol, ul, li{ 
  list-style:none; 
  padding:0; 
  margin:0; 
  word-break: keep-all;
}
img{ 
  max-width:100%; 
}
a{ 
  color:inherit; 
}
a, a:hover{ 
  text-decoration:none; 
}

.d-lg-none{ 
  display:none; 
}
.d-lg-block{ 
  display:block; 
}

#nc_container{
  z-index: 9999999999 !important;
}

/*header*/
header{ 
  position:fixed; 
  z-index:99999999; 
  top:0; 
  left:0; 
  width:100%; 
  transition:all .5s; 
}
header, header *{ 
  box-sizing:border-box; 
}
.hd_con{ 
  width:100%; 
  margin:0 auto; 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  padding:0 4rem; 
  position: relative;
}

.lg > a{ 
  display:block; 
  font-size:20px; 
  line-height:1em; 
  white-space:nowrap;
}
.lg > a > img{ 
  display:block; 
  width:300px; 
  transition: .5s;
}
.mn{ 
  display:flex; 
  align-items:center; 
}

.hd-wrap{
  display: flex; 
  align-items: center;
}

/*gnb*/
.hd_bt{ 
  position:relative; 
  z-index:5; 
}
#gnb{ 
  position:relative; 
  z-index:5;
}
#gnb > ul{ 
  display:flex; 
  flex-flow:row wrap; 
  padding-left: 0; 
  margin-bottom: 0;
}
#gnb > ul > li{ 
  position:relative; 
  z-index:1; 
}
#gnb > ul > li > a{ 
  display:block; 
  padding:60px 20px; 
  font-size:16px; 
  font-weight:500; 
  transition: all .5s; 
  color: #fff; 
  position: relative;
}
#gnb > ul > li:last-child > a::after{
  display: none;
}
#gnb > ul > li > ul{ 
  position:absolute; 
  z-index:1; 
  top:100%; 
  left:50%; 
  transform: translateX(-50%); 
  display:none; 
  width: 100%; 
  min-width: 200px; 
  box-sizing: border-box; 
  background-color: #fff; 
  padding:25px 15px 25px; 
  text-align: center;  
  box-shadow: 0 12px 30px -2px rgba(0,0,0,.1);
}
#gnb > ul > li > ul > li{ 
  position:relative; 
  z-index:1; 
  text-align: center;
}
#gnb > ul > li > ul > li > a{ 
  display:block; 
  padding:8px 0; 
  font-size:14px; 
  white-space:nowrap; 
  position: relative;
  color: #666;
}
#gnb > ul > li > ul > li > a::before{
  content: ""; 
  transition: .3s; 
  width: 0; 
  height: 1px; 
  background-color: #fff; 
  position: absolute; 
  left: 0; 
  bottom: 0;
}
#gnb > ul > li > ul > li:hover > a::before{
  width: 100%;
}
#gnb > ul > li > ul > li > ul{ 
  position:absolute; 
  z-index:1; 
  top:-10px; 
  left: calc(100% + 15px); 
  padding: 10px 0; 
  display:none; 
  min-width:150px; 
  box-shadow:0 12px 30px -2px rgba(0,0,0,.1); 
  background-color: #fafafa;
}
#gnb > ul > li > ul > li > ul > li > a{ 
  display:block; 
  padding:10px 15px; 
  font-size:14px; 
}

.number{
  display: flex; 
  align-items: center;
}
.number > p{
  display: inline-block; 
  margin-left: 40px;  
  padding: 15px 30px; 
  font-size: 16px; 
  font-weight: 500; 
  color: #fff; 
  background-color: #78161B; 
  border-radius: 8px;
}


/* .scr */
header.scr{ 
  background-color:#fff; 
  border-bottom:none; 
}
header.scr .hd_bt{ 
  box-shadow:0 0 10px 0 rgba(0, 0, 0, 0.1); 
}
header.scr #gnb > ul > li > a{ 
  color:#000; 
  padding:30px 20px; 
}
header.scr #gnb > ul > li > a::after{
  background-color: #000;
}
header.scr .number > a{
  color: #000;
}

/* menu */
.menu-toggler {
  position: absolute;
  top: 35px;
  right: 4rem;
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 99999;
  transition: all 500ms ease-out;
}
.menu-toggler.open {
  transform: rotate(-45deg);
}
nav.fullscreenNav.open .menu-toggler {
  position: absolute;
  right: 3rem;top: 2rem;
}
nav.fullscreenNav.open .menu-toggler {
  transform: rotate(-45deg);
}
.bar {
  background-color: #fff;
  width: 100%;
  height: 2px;
  border-radius: 0.8rem;
  transition: background .5s ease;
}

.bar.half {
  width: 50%;
}
.bar.top {
  transform-origin: right;
  transition: transform 500ms cubic-bezier(0.54, -0.81, 0.57, 0.57), background .5s ease;
}

.open .bar.top {
  transform: rotate(-90deg) translateX(0.4rem);
}
.bar.bottom {
  align-self: flex-end;
  transform-origin: left;
  transition: transform 500ms cubic-bezier(0.54, -0.81, 0.57, 0.57), background .5s ease;
}
.open .bar.bottom {
  transform: rotate(-90deg) translateX(-0.4rem);
}

header.on .bar{
  background-color: #1d1d1d;
}

/* mt-menu */
.mt-menu{
  width: 80%; 
  height: 100vh; 
  position: fixed; 
  top: 0; 
  right: -81%; 
  background-color: #fff; 
  z-index: 99998; 
  transition: .8s ease-in-out; 
  overflow-y: scroll; 
  padding: 0 15px; 
  display: flex; 
  flex-direction: column;
  justify-content: center;
}
.mt-menu.mt-open{
  right: -1px; 
  box-shadow: -4px 0px 10px 0px rgba(0,0,0,0.1);
}
.mo_mn_mn{
  padding: 1rem 15px 2rem;
}
.mo_mn_mn > li > a{ 
  display:block; 
  padding:15px 0px; 
  font-size:18px; 
  font-weight:500; 
  border-bottom: 1px solid #f2f2f2; 
}
.mo_mn_mn > li > ul{ 
  display:none; 
  background-color:#fafafa; 
  padding: 10px 0;
}
.mo_mn_mn > li > ul > li > a{ 
  display:block; 
  padding:8px 15px; 
  font-size:15px; 
  font-weight:400; 
  color: #818181;
}

.mo_mn_mn > li > a.more{
  position: relative;
}
.mo_mn_mn > li > a.more::after{
  content: ""; 
  width: 10px; 
  height: 2px; 
  background-color: #666; 
  position: absolute; 
  top: 50%; 
  right: 20px; 
  transform: translateY(-50%);
}
.mo_mn_mn > li > a.more::before{
  content: ""; 
  width: 2px; 
  height: 10px; 
  background-color: #666; 
  position: absolute; 
  top: 50%; 
  right: 24px; 
  transform: translateY(-50%); 
  transition: .3s;
}

.mo_mn_mn > li > a.more.act::before{
  opacity: 0;
}

.momn-img{
  display: flex;
}
.momn-img img{
  width: 100%;
}

.mnb-mark{
  display: flex; 
  padding: 0 20px; 
  justify-content: center; 
  margin-bottom: 1.5rem;
}

.mnb-mark img{
  max-width: 220px;
}

.mnb-btn{
  padding: 0 15px; 
  display: flex; 
  justify-content: space-between; 
  margin-bottom: 1rem;
}
.mnb-btn > a{
  display: block; 
  width: 48%; 
  font-size: 14px; 
  color: #666; 
  padding: 8px; 
  text-align: center; 
  border-radius: 3px; 
  background-color: #ffc61b;
}

@media(max-width:1199px){ 
  .hd_con{ 
    padding:0 15px; 
  }
  .lg > a{ 
    padding:8px 0; 
  }
  .lg > a > img{ 
    max-width:250px; 
  }
  .mn{ 
    display:none; 
  }

  .mo_btn{ 
    display:block;
  }

  .d-none{ 
    display:none; 
  }
  .d-block{ 
    display:block;
 }
  .mo_btn{ 
    display:block; 
  }

  .number{
    display: none;
  }
}


/*wrapper*/
.article_mover{ 
  position:absolute; 
  z-index:-1; 
  bottom:100%; 
}


/*footer*/
footer{ 
  padding:40px 0 153px; 
  background-color: #222;
}
.ft_con{ 
  width:100%; 
  padding: 0 4rem; 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
}

.ft-lg{
  width: 320px;
}

.ft_pt:last-child{
  text-align: right; 
  padding-left: 3rem;
}
.ft_txt{ 
  font-size:15px; 
  color: #eee; 
  font-weight:300; 
  word-break:keep-all; 
  margin-bottom:1rem; 
  line-height: 1.5;
}
.ft_cp{ 
  font-size:14px; 
  color: #ddd; 
  font-weight:300; 
}

#fnb > ul{ 
  overflow:hidden; 
  text-align:right; 
  margin-bottom:1.5rem; 
}
#fnb > ul > li{ 
  display:inline-block; 
  margin-left:20px; 
  padding:2px; 
}
#fnb > ul > li > a{ 
  display:block; 
  font-size:15px; 
  font-weight:400; 
  color: #ddd; 
  transition: .2s;
}
#fnb > ul > li > a:hover{
  color: #78161B;
}


/* mediaquery */

@media(min-width:1200px){ 
  .d-lg-none{ 
    display:none; 
  }
  .d-lg-block{ 
    display:block; 
  }

  .lg{
    margin-right: 30px;
  }
  .mo-fixed{
    display: none;
  }

  .fixed-menu{
    position: fixed; 
    top: 50%; 
    right: 0; 
    z-index: 9998; 
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    transition: .5s;
  }
  .fixed-menu > ul{
    padding:1rem 0 0;
    margin-bottom: 0;
  }
  .fixed-menu > ul > li{
    width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    color: #fff;
    text-align: center;
    position: relative;
  }
  .fixed-menu > ul > li::after{
    content: "";
    width: 85%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .fixed-menu > ul > li:last-child::after{
    display: none;
  }
  .fixed-menu > ul > li > a{
    text-align: center;
  }
  .fixed-menu > ul > li img{
    display: inline-block;
    margin-bottom: 8px;
    max-width: 50px;
  }
  .fixed-menu > ul > li h5{
    font-weight: 700;
    font-size: 14px;
    background-image: linear-gradient(to right, #dfdebc, #9c8160);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }
  .fixed-menu > ul > li p{
    font-size: 14px;
    margin-top: 5px;
    background-image: linear-gradient(to right, #dfdebc, #9c8160);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 600;
  }
  .fixed-menu > ul > li h3{
    font-size: 16px;
    background-image: linear-gradient(to right, #dfdebc, #9c8160);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }
  .fixed-menu > ul > li p.top{
    position: relative;
  }
  .fixed-menu > ul > li p.top > span{
    position: absolute;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
    font-size: 16px;
    line-height: 1;
    background-image: linear-gradient(to right, #dfdebc, #9c8160);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }
  .fixed-menu > ul > li p.blink{
    color: #fdcd00;
    animation: blink 1s infinite;
    font-weight: 400;
  }
  .fixed-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-53%);
    left: -45px;
    width: 45px;
    height: 110px;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    line-height: 110px;
    cursor: pointer;
  }
  .fixed-btn > span{
    font-size: 25px;
    background-image: linear-gradient(to right, #dfdebc, #9c8160);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    transition: .4s;
  }
  .fixed-btn.fxact > span{
    transform: scaleX(-1);
  }
  .fixed-menu.fxin{
    right: -130px;
  }

  .fixed-cs{
    width: 100%;
    padding: 30px 0;
    background-color: #1e1e1e;
    position: fixed;
    bottom: -115px;
    left: 0;
    z-index: 99999999;
    transition: .8s ease-in-out;
    transition-delay: .5s;
  }
  .fcs-con{
    width: 100%;
    max-width: 1430px;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .fcs-logo{
    display: flex;
    width: 300px;
  }
  .fcs-logo img{
    width: 100%;
  }
  .fcs-wrap form{
    display: flex;
    align-items: center;
  }
  .fcs-text input{
    width: 200px;
    background-color: #fff;
    padding: 1rem;
    border: 1px solid #000;
    border-radius: 10px;
    font-size: 16px;
    margin-left: 10px;
  }
  .fcs-text input::placeholder{
    font-size: 16px;
    color: #000;
  }
  .fcs-text input:focus{
    outline: none;
  }
  .fcs-pol{
    margin-left: 1rem;
  }
  .fcs-pol label{
    font-size: 16px;
    color: #fff;
  }
  .fcsbtn{
    border: 1px solid #78161B;
    padding: 1rem 4rem;
    font-size: 16px;
    color: #fff;
    border-radius: 10px;
    background-color: #78161B;
    cursor: pointer;
    margin-left: 1rem;
  }
  .fixed-cs.scr{
    bottom: -2px;
  }
}

@media(max-width:1499px){
  .ft_con{
    padding: 0 2rem;
  }
  .hd_con{
    padding: 0 2rem;
  }
  .fixed-menu{
    right: 2rem;
  }
  /* #gnb > ul > li > a{
    padding: 60px 20px; 
    font-size: 14px;
  }
  header.scr #gnb > ul > li > a{
    padding: 30px 20px;
  }
  .number > p{
    padding: 12px 2rem; 
    font-size: 14px;
  }
  #gnb > ul > li > ul{
    min-width: 160px;
  }
  #gnb > ul > li > ul > li > a{
    font-size: 14px;
  }
  #gnb > ul > li > ul > li > ul > li > a{
    font-size: 13px;
  }
  #gnb > ul > li > ul > li > ul{
    min-width: 135px;
  } */
}

@media(max-width:1199px){ 
  .d-none{ 
    display:none;
  }
  .d-block{ 
    display:block; 
  }

  .hd_con{padding: 0 15px;}

  .fixed-menu{
    display: none;
  }
  .fixed-cs{
    display: none;
  }

  .mo-fixed{
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 8888;
    display: flex;
    background-color: #78161B;
    color: #fff;
  }
  .mo-fixed::after{
    content: "";
    width: 1px;
    height: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  .mo-fixed > a{
    flex: 1 1 auto;
    width: 50%;
    padding: 1rem 5px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
  }
  .mo-fixed > a > span{
    display: inline-block;
    font-size: 20px;
    margin-right: 5px;
    transform: translateY(2px);
  }

  .menu-toggler{
    top: 16px; 
    right: 15px;
  }
  header.scr .bar{
    background-color: #000;
  }
  header.scr .open .bar{
    background-color: #000;
  }

  .open .bar{
    background-color: #000;
  }
  .open .bar.top{
    background-color: #000;
  }
  .open .bar.bottom{
    background-color: #000;
  }

  footer{ 
    padding:40px 15px 80px; 
  }
  .ft_con{
    padding: 0; 
    flex-direction: column;
  }
  .ft-lg{
    max-width: 250px; 
    margin-bottom: 1.5rem;
  }
  .ft_pt:last-child{
    padding-left: 0;
  }
  #fnb > ul{
    text-align: center;
  }
  #fnb > ul > li{
    margin-left: 0; 
    padding: 0 15px 10px 0;
  }
  #fnb > ul > li > a{
    font-size: 14px;
  }
  .ft_pt:last-child{
    text-align: center;
  }

}
@keyframes blink{
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}