/*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 .4s; 
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}
header, header *{ 
  box-sizing:border-box; 
}
.hd_con{ 
  width:100%; 
  margin:0 auto; 
  display:flex; 
  justify-content:flex-end; 
  align-items:center; 
  padding:0 15px;
  max-width: 1230px; 
  position: relative;
}

/*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:40px 20px; 
  font-size:18px; 
  font-weight:700; 
  transition: all .4s; 
  color: #2a2a2a; 
  position: relative;
}
#gnb > ul > li > ul{ 
  position:absolute; 
  z-index:1; 
  top:100%; 
  left:50%; 
  transform: translateX(-50%); 
  display:none; 
  width: 100%; 
  min-width: 150px;
  box-sizing: border-box; 
  background-color: #fff; 
  padding:25px; 
  box-shadow: 0 12px 30px -2px rgba(0,0,0,.1);
}
#gnb > ul > li > ul > li{ 
  position:relative; 
  z-index:1; 
}
#gnb > ul > li > ul > li > a{ 
  display:block; 
  padding:8px 0; 
  font-size:15px; 
  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; 
}

.buy > a{
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  padding: 14px 50px;
  margin-left: 20px;
}
.buy > a > span{
  display: inline-block;
  margin-right: 5px;
}

/* .scr */
header.scr #gnb > ul > li > a{ 
  padding: 30px 20px; 
}

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

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

/*footer*/
footer{
  padding: 50px 0;
  background-color: #333;
}
.ft_con{
  width:100%; 
  margin:0 auto; 
  padding:0 15px;
  max-width: 1230px; 
}
.ft_pt{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.ft_txt{
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.ft_cp{
  font-size: 14px;
  font-weight: 300;
}

/* mediaquery */

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

  .mo-fixed{
    display: none;
  }

  .right-menu{
    width: 260px;
    padding: 30px 20px;
    border: 1px solid #f5f5f5;
    background-color: #fff;
    border-radius: 30px;
    position: fixed;
    top: 140px;
    right: 40px;
    z-index: 99;
    transition: .3s;
    box-shadow: 5px 6px 5px -1px rgba(0, 0, 0, 0.25);
  }
  .right-menu > h3{
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #000;
  }
  .rm-cont{
    padding: 20px;
    border-radius: 14px;
    background-color: #f2f2f2;
    margin-bottom: 1rem;
  }
  .rm-cont > h5{
    font-size: 16px;
    color: #000;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  .rm-cont > ul > li{
    font-size: 14px;
    color: #000;
    font-weight: 400;
    padding-left: 35px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  .rm-cont > ul > li > span{
    display: inline-block;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
  }
  .rm-cont > ul > li:last-child{
    margin-bottom: 0;
  }
  .right-menu.scr{
    top: 100px;
  }
  .right-menu > a{
    display: block;
    font-size: 16px;
    color: #fff;
    padding: 1rem;
    border-radius: 10px;
    background-color: #E53D25;
    text-align: center;
    font-weight: 700;
  }
}

@media(max-width:1630px){

}
@media(max-width:1499px){

}

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

  .mn{
    display: none;
  }
  .buy{
    display: none;
  }
  .right-menu{
    display: none;
  }
  .wrapper{
    padding-top: 0;
  }

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

  .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;
  }

  .hd-btn{
    position: absolute;
    z-index: 9999999;
    width: 44px;
    height: 44px;
    top: 15px;
    right: 15px;
    border-radius: 50%;
    cursor: pointer;
    background-color: #E53D25;
  }
  .hd-btn::before{
    content: "";
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 2px;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: rotate(0deg) translate(-50%,0);
    margin-top: -6px;
    transition:0.3s transform, 0.3s margin-top 0.3s;
  }
  .hd-btn::after{
    content: "";
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 2px;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: rotate(0deg) translate(-50%,0);
    margin-top: 5px;
    transition:0.3s transform, 0.3s margin-top 0.3s;
  }
  .hd-btn.act::before{
    transform:translate(-50%, 0) rotate(45deg);
    margin-top:0.5px;
    transition:0.3s transform 0.3s, 0.3s margin-top;
  }
  .hd-btn.act::after{
    transform:translate(-50%, 0) rotate(-45deg);
    margin-top:0.5px;
    transition:0.3s transform 0.3s, 0.3s margin-top;
  }

  .mt-menu{
    width: 70vw; 
    height: 100vh; 
    position: fixed; 
    top: 0; 
    right: -101%; 
    background-color: #fff; 
    z-index: 99998; 
    transition: .8s ease-in-out; 
    padding: 0 15px; 
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: scroll;
  }
  .mt-menu.mt-open{
    right: 0; 
    box-shadow: -4px 0px 10px 0px rgba(0,0,0,0.1);
  }
  .mo_mn_mn{
    padding: 5rem 15px 2rem;
    width: 100%;
  }
  .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; 
    position: absolute; 
    top: 50%; 
    right: 20px; 
    transform: translateY(-50%);
  }
  .mo_mn_mn > li > a.more::before{
    content: ""; 
    width: 2px; 
    height: 10px; 
    position: absolute; 
    top: 50%; 
    right: 24px; 
    transform: translateY(-50%); 
    transition: .3s;
  }
  
  .mo_mn_mn > li > a.more.act::before{
    opacity: 0;
  }

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