@charset "utf-8";
/*-------------------------------------------------
Style Sheet
Version : 1.0
Author :  김지웅
Create date : 2019. . .
-------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:600');


section,nav,#content{
	min-height:1200px;

}
/*nav{
    height: 100%;
}*/
/* 공통 영역(신규 추가시 하단에 추가) */

/********************************
		INPUT 공통
********************************/

input[type=checkbox] + label{
	padding-left:20px;
	box-sizing:border-box;
	position:relative;
	/*color: #fff;*/
	color:#1e1c1c
}
input[type=checkbox] + label:before{
	content:"";
	display:block;
	width:13px;
	height:13px;
	border:1px solid #fff;
	/*border:1px solid #1e1c1c;*/
	/* border-radius:50%; */
	position:absolute;
	top:5px;
	left:0;
    transition:all 0.5s;
    z-index:101;
}
input[type=checkbox]:checked + label:before{
   /* box-sizing:border-box;
	border-radius:50%;
	background:#333;*/
}
input[type=checkbox] + label.n_check::before{
    content:"";
	display:block;
	width:13px;
	height:13px;
	position:absolute;
	top:5px;
	left:0;
    z-index:101;
    border:1px solid #1e1c1c !important;
}
input[type=checkbox]:checked + label.n_check::after{
    content: '\2714';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
input[type=checkbox] + label.l_check::before{
    content:"";
	display:block;
	width:13px;
	height:13px;
	position:absolute;
	top:5px;
	left:0;
    z-index:101;
    border:1px solid #fff !important;
}
input[type=checkbox]:checked + label.l_check::after{
    content: '\2714';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff
}
.s-check{
    /*position:absolute;*/
    top:-2px;
    left:0;
}


.left{
	float:left;
}
.right{
	float:right;
}

/*
    아이콘
*/

.new-before:before{
	content:"new";
	display:inline-block;
	background:#e53879;
	color:#fff;
	font-size:10px;
	line-height:12px;
	color:#fff;
	font-family: 'Roboto', sans-serif;
	vertical-align:middle;
	padding:1px 10px;
	box-sizing:border-box;
	border-radius:5px;
	margin-right:10px;
	margin-bottom:5px;
}
.new-after:after{
	content:"new";
	display:inline-block;
	background:#e53879;
	color:#fff;
	font-size:10px;
	line-height:12px;
	color:#fff;
	font-family: 'Roboto', sans-serif;
	vertical-align:middle;
	padding:1px 10px;
	box-sizing:border-box;
	border-radius:5px;
	margin-left:10px;
	margin-bottom:3px;
}



.next-icon{
	position:relative;
	padding-right:15px;
	box-sizing:border-box;
}
.next-icon:after{
	content:"";
	display:block;
	width:6px;
	height:9px;
	background:url(/img/next-icon.png) no-repeat center center;
	position:absolute;
	top:51%;
	right:0;
	transform:translateY(-50%);
}



/* font */

.basic h1{
    font-size:56px;
}
.basic h2{
    font-size:48px;
}
.basic h3{
    font-size:40px;
}
.basic h4{
    font-size:32px;
}
.basic h5{
    font-size:26px;
}
.basic h6{
    font-size:18px;
}



.container {
	width: 100%;
	max-width:1200px;
	margin:0 auto;
}

.inner_inter{
    margin-top:50px;
}
.in_inter{
    margin-top:30px;
}

/* main-color & font-size */

.core_color{
    color:#000;
}
.core_bg{
    background:#000;
}
big{
    font-size:24px;
}
small{
    font-size:14px;
}

/* table */

table{
    width:100%;
}

legend, caption{
    display:block;
    overflow:hidden;
    position:absolute;
    top:0;
    left:0;
    width:1px;
    height:1px;
    font-size:0;
    line-height:0;
    white-space: nowrap;
}

/* button & form & label */

button

form

.chk_box input[type="checkbox"]{
    display:none;
}
.chk_box input[type="checkbox"] + label{
    position:relative;
    display:block;
    padding-left:25px;
    box-sizing:border-box;
}
.chk_box input[type="checkbox"] + label:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:13px;
    height:13px;
    /* background:; */
}
.chk_box input[type="checkbox"] + label.ga_chkall{
    position:relative;
    display:block;
    padding-left:25px;
    box-sizing:border-box;
    float: right
}
.chk_box input[type="checkbox"] + label.ga_chkall:before{
    content:"";
    position:absolute;
    top:4px;
    left:0;
    width:13px;
    height:13px;
    border: 1px solid #333
    /* background:; */
}
.chk_box input[type="checkbox"]:checked + label.ga_chkall::after{
    content: '\2714';
    position: absolute;
    left: 0;
    top: -1px;
    color: #333;
    z-index: 90;
}
/* 공통 영역 end */

/* haeder,section,footer 영역 */



/*m-menu*/
.m-menu {
	background-color: rgba(0,0,0,0.9);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9990;
	height: 100%;
	width: 100%;
	display: table;
	text-align: center;
	opacity: 0;
	transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-webkit-transform: scale(0);
	transform: scale(0);
}
.m-menu.act {
	opacity: 1;
	-webkit-transform: scale(1);
			transform: scale(1);
  }
.m-menu.act ul li {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
  }
  .m-menu-cell > ul > li > a{
      display:block;
	  font-size:16px;
	  color:#fff;
	  position:relative;
      border-bottom:1px solid #fff;
  }
  .m-menu ul li a:after{
	  content:"";
	  position:absolute;
	  bottom:-5px;
	  left:50%;
	  transform:translateX(-50%);
	  width:0;
	  height:1px;
	  background:#fff;
	  transition-delay: 1000ms;
	  transition-duration: 500ms;
  }
/*
  .m-menu.act li a:after{
	  width:100%;
  }
*/
.m-menu .m-menu-cell{
	display: table-cell;
	vertical-align: middle;
    text-align:left;
}
.m-menu .m-menu-cell > ul{
    max-width:320px;
    padding:15px 30px 40px;
    box-sizing:border-box;
    width:100%;
    height:100%;
    margin:0 auto;
    overflow-y:scroll;
    -webkit-overflow-scrolling:touch;
    -webkit-transform: translateZ(0px);
}
.m-menu .m-menu-cell > ul > li {
    width:100%;
    float:left;
	margin:5px 0;
	padding: 8px 0;
    box-sizing:border-box;
/*
	transition: all 400ms 510ms;
	opacity: 1;
*/
  }
.m-menu li:nth-child(odd) {
	-webkit-transform: translateX(30%);
			transform: translateX(30%);
  }
.m-menu li:nth-child(even) {
	-webkit-transform: translateX(-30%);
			transform: translateX(-30%);
  }
.m-menu li:last-child {
	-webkit-transform: none;
			transform: none;
  }

.m-sub-menu a{
    width:50%;
    float:left;
    margin:5px 0;
}
.m-sub-menu a{
    display:block;
    font-size:14px;
    color:#dedede;
}

/*hamburger*/
.hamburger.is-active {}
.hamburger {position:relative; z-index:9991;  transform: scale(0.8);display: none;position: absolute;top: 5px;right: 0px;padding: 10px 15px;}
.hamburger .line{
	width: 30px;
	height: 3px;
	background-color: #fff;
	display: block;
	margin: 7px auto;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	 transition: all 0.2s ease-in-out;
}

.hamburger:hover{cursor: pointer;}

#hamburger-6.is-active{
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	transition-delay: 0.3s;
	-webkit-transform: rotate(45deg) scale(0.8);
	-ms-transform: rotate(45deg) scale(0.8);
	-o-transform: rotate(45deg) scale(0.8);
	transform: rotate(45deg) scale(0.8);
}

#hamburger-6.is-active .line:nth-child(2){
	width: 0px;
}

#hamburger-6.is-active .line:nth-child(1),
#hamburger-6.is-active .line:nth-child(3){
	-webkit-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	transition-delay: 0.3s;
	background-color:#fff;
}

#hamburger-6.is-active .line:nth-child(1){
	-webkit-transform: translateY(13px);
	-ms-transform: translateY(13px);
	-o-transform: translateY(13px);
	transform: translateY(13px);
}

#hamburger-6.is-active .line:nth-child(3){
	-webkit-transform: translateY(-7px) rotate(90deg);
	-ms-transform: translateY(-7px) rotate(90deg);
	-o-transform: translateY(-7px) rotate(90deg);
	transform: translateY(-7px) rotate(90deg);
}


/* header,section,footer end */


/* media */
@media (max-width:1200px){
    
}
@media (max-width:991px){
	.hamburger{
        display:block;
    }
}
@media (max-width:768px){

}
@media (max-width:650px){
    section,nav,#content{
        min-height:100%;
    }
}
@media (max-width:480px){
	
}
input[type=checkbox] + label.b_red::before{
    content:"";
	display:block;
	width:13px;
	height:13px;
	position:absolute;
	top:5px;
	left:0;
    z-index:101;
    border:1px solid #da4a54 !important;
}
input[type=checkbox] + label.b_hide::before{
    display: none
}
.board-write input[type=checkbox] + label:before{
	content:"";
	display:block;
	width:13px;
	height:13px;
	border:1px solid #333;
	/*border:1px solid #1e1c1c;*/
	/* border-radius:50%; */
	position:absolute;
	top:5px;
	left:0;
    transition:all 0.5s;
    z-index:101;
}
.board-write input[type=checkbox]:checked + label::after{
    content: '\2714';
    display: block;
    position: absolute;
    top: 0;
    left: 1px;
}
