/*reset.css*/
body, html{ 
  margin:0; 
  padding:0; 
  width:100%; 
  height:100%; 
  scroll-behavior: smooth;
}
body, html, input, textarea, select, button, table{ 
	font-family: 'bc', 'suit', sans-serif;
	-webkit-font-smoothing:antialiased;
  /* letter-spacing: -1px; */
 }
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; 
}
header, header *{ 
  box-sizing:border-box; 
}
.hd_con{ 
  width:100%; 
  margin:0 auto; 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  padding:30px 100px; 
  position: relative;
}

.lg > a{ 
  display:block; 
  font-size:20px; 
  line-height:1em; 
  white-space:nowrap;
}
.lg > a > img{ 
  display:block; 
  width:150px; 
  transition: .3s;
}
.mn{ 
  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:0 20px; 
  font-size:20px; 
  font-weight:700; 
  transition: .3s; 
  color: #fff; 
  position: relative;
}
#gnb > ul > li > ul{ 
  position:absolute; 
  z-index:3; 
  top:calc(100% + 10px); 
  left:50%; 
  transform: translateX(-50%); 
  display:none; 
  width: 100%; 
  min-width: 150px; 
  box-sizing: border-box; 
  padding:10px 5px; 
  text-align: center;  
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #e3e3e3;
}
#gnb > ul > li > ul::before{
  content: "";
  width: 100%;
  height: 20px;
  background-color: transparent;
  position: absolute;
  top: -20px;
  left: 0;
  z-index: -1;
}
#gnb > ul > li > ul > li{ 
  position:relative; 
  z-index:3; 
  text-align: center;
}
#gnb > ul > li > ul > li > a{ 
  display:block; 
  padding:10px 0; 
  font-size:16px; 
  white-space:nowrap; 
  position: relative;
  color: #000;
  transition: .3s;
  font-weight: 500;
  z-index: 3;
}

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

.hd-etc{
  display: flex;
  align-items: center;
}
.hd-sns{
  display: flex;
  align-items: center;
}
.hd-sns > a{
  font-size: 23px;
  color: #fff;
  font-weight: 500;
  transition: .3s;
  position: relative;
  padding-right: 1rem;
  margin-right: 1rem;
}
.hd-sns > a::before{
  content: "";
  width: 1px;
  height: 14px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 12px;
  transition: .3s;
}
.hd-sns > ul{
  display: flex;
}
.hd-sns > ul > li{
  margin-left: 10px;
}
.hd-sns > ul > li:first-child{
  margin-left: 0;
}
.hd-sns > ul > li > a{
  font-size: 20px;
  color: #fff;
  line-height: 1;
  display: inline-block;
  transform: translateY(2px);
  transition: .3s;
}
.hd-sns > ul > li > a > span{
  display: inline-flex;
  line-height: 1;
  width: 22px;
  height: 22px;
  justify-content: center;
  align-items: center;
}
.hd-mem > ul{
  display: flex;
}
.hd-mem > ul > li{
  margin-left: 1rem;
  padding-left: 1rem;
  position: relative;
}
.hd-mem > ul > li::before{
  content: "";
  width: 1px;
  height: 14px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 12px;
  transition: .3s;
}
.hd-mem > ul > li > a{
  font-size: 23px;
  color: #fff;
  font-weight: 500;
  transition: .3s;
}
.hd-mem > ul > li.scr > a{
  color: #17171b;
}
.hd-mem > ul > li.scr::before{
  background-color: #17171b;
}
.hd-sns > a.scr{
  color: #17171b;
}
.hd-sns > a.scr::before{
  background-color: #17171b;
}
.hd-sns > ul > li > a.scr{
  color: #17171b;
}

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


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

.hd-btn{
  position: absolute;
  z-index: 9999999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #d61313; 
  top: 50%;
  right: 37px;
  transform: translateY(-50%);
  cursor: pointer;
}
.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;
}

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


/*footer*/
footer{
  width: 100%;
  height: 100vh;
  background-color: #000;
  position: relative;
}
.ft_con{
  width: 100%;
  height: 100%;
  padding: 0 100px 0 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ft-wrap{
  width: 100%;
  text-align: center;
  color: #fff;
}
#fnb{
  margin-bottom: 30px;
}
#fnb > ul{
  display: flex;
  justify-content: center;
}
#fnb > ul > li{
  margin-left: 10px;
  padding-left: 10px;
  position: relative;
}
#fnb > ul > li::before{
  content: "";
  width: 1px;
  height: 12px;
  background-color: #fff;
  position: absolute;
  top: 7px;
  left: 0;
}
#fnb > ul > li:first-child{
  margin-left: 0;
  padding-left: 0;
}
#fnb > ul > li:first-child::before{
  display: none;
}
#fnb > ul > li > a{
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  transition: .3s;
}
.ft_lg{
  width: 100%;
  display: flex;
  margin-bottom: 70px;
}
.ft_lg img{
  width: 100%;
}
.ft_txt{
  font-size: 16px;
  color: #ddd;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 30px;
}
.ft_cp{
  width: 100%;
  font-size: 16px;
  color: #ddd;
  font-weight: 300;
}

/* mediaquery */

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

  .hd-mem.pc{
    display: block;
  }
  .hd-mem.mo{
    display: none;
  }
  .lg{
    margin-right: 30px;
  }
  .mo-fixed{
    display: none;
  }

  .hd-btn{
    display: none;
  }
  .mo_mn_mn{
    display: none;
  }

  .mt-menu{
    width: 100%; 
    height: 100vh; 
    position: fixed; 
    top: -100%; 
    left: 0; 
    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;
  }
  .mt-menu.mt-open{
    top: 0; 
    box-shadow: -4px 0px 10px 0px rgba(0,0,0,0.1);
  }
  .mt-menu > .mt-ul{width: 100%; max-width: 1230px; display: flex; justify-content: center;}
  .mt-menu > .mt-ul > li{flex: 1 0 auto; margin-right: 1.5rem;}
  .mt-menu > .mt-ul > li:last-child{margin-right: 0;}
  .mt-menu > .mt-ul > li > a{color: #17171b; font-size: 22px; font-weight: 600; margin-bottom: 1rem; padding-bottom: 1rem; display: block; border-bottom: 1px solid #d61313; transition: .3s;}
  .mt-menu > .mt-ul > li > ul > li{margin-bottom: 12px;}
  .mt-menu > .mt-ul > li > ul > li:last-child{margin-bottom: 0;}
  .mt-menu > .mt-ul > li > ul > li > a{color: #666; font-size: 16px; transition: .3s;}
  .mt-logo{margin-bottom: 5rem; text-align: center;}
  .mt-logo img{display: inline-block; width: 200px;}
 
}

@media(max-width:1499px){
  .hd_con{
    padding: 30px 50px;
  }
  .ft_con{
    padding: 0 50px 0 300px;
  }
}
@media(max-width:1199px){

  .hd_con{ 
    padding:0 15px; 
  }
  .ft_con{ 
    padding:0 15px; 
  }
  .lg{
    opacity: 1;
  }
  .lg > a{ 
    padding:15px 0; 
  }
  .lg > a > img{ 
    max-width:150px; 
  }
  .mn{ 
    display:none; 
  }
  .hd-wrap{
    display: none;
  }
  .ft_lg{
    margin-bottom: 30px;
  }
  #fnb{
    margin-bottom: 20px;
  }
  #fnb > ul > li > a{
    font-size: 14px;
  }
  #fnb > ul > li::before{
    height: 10px;
    top: 6px;
  }
  .ft_txt{
    font-size: 12px;
    margin-bottom: 20px;
  }
  .ft_cp{
    font-size: 14px;
  }
  footer{
    height: auto;
    padding: 100px 0;
  }

  .mo_btn{ 
    display:block;
  }

  .d-none{ 
    display:none; 
  }
  .d-block{ 
    display:block;
 }
  .mo_btn{ 
    display:block; 
  }
  .hd-btn.act::before{
    margin-top: 0;
  }
  .hd-btn.act::after{
    margin-top: 0;
  }

  .hd-btn{
    width: 44px;
    height: 44px;
    right: 15px;
    left: auto;
  }
  .mt-menu{
    width: 80%; 
    height: 100vh; 
    position: fixed; 
    top: 0; 
    right: -81%; 
    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: 0 15px 15px;
    width: 100%;
  }
  .mo_mn_mn > li > a{ 
    display:block; 
    padding:15px 0px; 
    font-size:22px; 
    font-weight:700; 
    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:16px; 
    font-weight:500; 
    color: #17171b;
  }
  
  .mo_mn_mn > li > a.more{
    position: relative;
  }
  .mo_mn_mn > li > a.more::after{
    content: ""; 
    width: 10px; 
    height: 2px; 
    background-color: #d61313; 
    position: absolute; 
    top: 50%; 
    right: 20px; 
    transform: translateY(-50%);
  }
  .mo_mn_mn > li > a.more::before{
    content: ""; 
    width: 2px; 
    height: 10px; 
    background-color: #d61313; 
    position: absolute; 
    top: 50%; 
    right: 24px; 
    transform: translateY(-50%); 
    transition: .3s;
  }
  
  .mo_mn_mn > li > a.more.act::before{
    opacity: 0;
  }

  .hd-etc-mo{
    width: 100%;
    padding: 0 15px;
  }
  .hd-sns{
    flex-direction: column;
    margin-bottom: 1rem;
    align-items: flex-start;
  }
  .hd-sns > a{
    font-size: 22px;
    font-weight: 700;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 3rem;
    color: #000;
  }
  .hd-sns > ul > li > a{
    color: #000;
  }
  .hd-mem > ul > li{
    margin-left: 10px;
    padding-left: 10px;
  }
  .hd-mem > ul > li:first-child{
    margin-left: 0;
    padding-left: 0;
  }
  .hd-mem > ul > li::before{
    background-color: #999;
    height: 12px;
    top: 6px;
  }
  .hd-mem > ul > li:first-child::before{
    display: none;
  }
  .hd-mem > ul > li > a{
    color: #000;
    font-size: 18px;
  }

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


}
