@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

/* reset */
/*** Reset style ***/
*{
	margin: 0;
	padding: 0;                     
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0;
	box-sizing: border-box;
    font-size:18px;
	color:#25292c;
}

h1, h2, h3, h4, h5, h6{
	font-size:100%;
}
ol, ul, li {
	list-style: none;
}
table {
	table-layout: fixed;
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
}
button {
	border: none;
	cursor: pointer;
}
a {
	text-decoration: none;
	color: inherit;
}
img {
	vertical-align: top;
}
span, em, b, strong{
	font-size:100%;
}
b, strong{
	font-weight: bold;
}

input {
	border: none;
	box-sizing: border-box;
	-webkit-appearance: none;
  	-moz-appearance: none;
	appearance: none;
	border:1px solid #e2e2e2;
    -webkit-transition: 0.5s;
			transition: 0.5s;
}
*:focus{
	outline: 0;
}
select::-ms-expand {
    display: none;
}
select {
	-webkit-appearance: none;
  	-moz-appearance: none;
	appearance: none;
	border:1px solid #e2e2e2;
	width:100%;
    padding: 0 20px;
}
select option{
	font-size:18px;
}
textarea{
    outline: none;
    -webkit-transition: 0.5s;
			transition: 0.5s;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"]{
	height:60px;
	line-height:60px;
	padding:0 15px;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus, 
textarea:focus{
    border-image-source: linear-gradient(135deg,  rgba(218,45,143,1) 33%,rgba(218,45,143,1) 33%,rgba(231,44,64,1) 99%);
    border-width: 1pt;
    border-image-slice: 1;
}
input::placeholder, textarea::placeholder{
	font-size:18px;
	color:#b8b8b8;
}
html, body{
	/*max-width:1920px;*/
	margin:0 auto;
	overflow-x:hidden;
}
.text-center{
	text-align:center;
}
.col-r{
	color: #ec2338;
}

/* 그라데이션 버튼 */
.gra-btn{
	background: rgb(218,45,143); /* Old browsers */
	background: -moz-linear-gradient(-45deg,  rgba(218,45,143,1) 33%, rgba(218,45,143,1) 33%, rgba(231,44,64,1) 99%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg,  rgba(218,45,143,1) 33%,rgba(218,45,143,1) 33%,rgba(231,44,64,1) 99%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg,  rgba(218,45,143,1) 33%,rgba(218,45,143,1) 33%,rgba(231,44,64,1) 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#da2d8f', endColorstr='#e72c40',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.btn-wrap, .btn-wrap02{
	margin:50px auto 0;
	display: table;
	width: 100%;
	font-size:0;
	text-align: center;
}
.btn{
	display:inline-block;
	width:100%;
	height:60px;
	line-height:60px;
	border-radius: 15px;
	color:#fff;
	font-size:20px;
	text-align: center;
}
.btn-wrap02 > .btn{
	display:inline-block;
	width:49%;
	margin-right:2%;
}
.btn-wrap02 > .btn-last{
	margin-right:0;
}
.cancel-btn{
    background: #25292c;
}
.cancel-btn02{
    background: #afafaf;
}

/* 라디오버튼 */
label{
    margin-right:20px;
    font-size:16px;
    color:#25292c;
    cursor: pointer;
}
input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    margin-right: 9px;
    border: 1px solid rgb(216, 216, 216);
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
    margin-left: 0;
    vertical-align: middle;
    border-radius: 100%;
    position: relative;
}
input[type=radio]:checked::before{
    content:'';
    position:absolute;
    width:10px;
    height:10px;
    border-radius: 100%;
    background:#f82c35;
    left:4px;
    top:4px;
}

/* 체크박스 버튼 */
input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    margin-right: 9px;
    border: 1px solid #afafaf;
    border-radius: 3px;
    background: #fff;
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
    margin-left: 0;
    vertical-align: middle;
    position: relative;
	cursor: pointer;
}
input[type=checkbox]:checked::before{
    content:'';
    position:absolute;
    width:10px;
    height:10px;
    background:#f82c35;
    left:4px;
    top:4px;
}

/* 셀렉트박스 화살표 */
.select-wrap{
	position: relative;
}
.select-wrap::before{
	content: '';
	position:absolute;
	right:15px;
	top:50%;
	transform: translate(0, -50%);
	width:15px;
	height: 8px;
	background: url(/img/marketer/pc/select-arrow.png) no-repeat center center;
	background-size: 100%;
}

/* 카테고리 스타일 */
.cate-wrap{
	background: #fafafa;
	border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
	margin-top:73px;
}
.cate-wrap ul{
	max-width:1200px;
	margin:0 auto;
	height: 54px;
}
.cate-wrap ul li{
    display: inline-block;
    padding: 0px 31px;
    color: rgba(37,14,44,.5);
    font-size: 20px;
	height: 54px;
    line-height: 54px;
	cursor: pointer;
}
.cate-wrap ul li.on{
    backgrounD:#fff;
    border-left: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    font-weight: bold;
    color:#ec2338;
    position: relative;
}
.cate-wrap ul li.on::before{
    position:absolute;
    content:'';
    background:#fff;
    width:100%;
    height: 1px;
    bottom:-1px;
    left:0;
}
.cate-wrap ul li:hover{
	font-weight: bold;
    color:#ec2338;
}
.cate-wrap ul li a{
	height: 54px;
    line-height: 54px;
	display: table;
}

/* 페이지네이션 */
.pagenation-wrap{
	margin-bottom:120px;
}
.pagenation-wrap ul{
	text-align:center;
}
.pagenation-wrap ul li{
	display: inline-block;
	margin:0 20px;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
}
.pagenation-wrap ul li a{
	font-size:20px;
}
.pagenation-wrap ul li a.first{
	width:11px;
	height:20px;
    display: table;
	background:url(/img/marketer/pc/pagenation_arrow_prev.png) no-repeat center center;
}
.pagenation-wrap ul li a.last{
	width:11px;
	height:20px;
    display: table;
	background:url(/img/marketer/pc/pagenation_arrow_next.png) no-repeat center center;
}
.pagenation-wrap ul li.on{
	color:#ec2338;
}
.pagenation-wrap ul li.on::before{
	content: '';
    position: absolute;
    bottom: -4px;
    width: 140%;
    height: 2px;
    left: -2px;
    background: #ec2338;
}


/* 서브페이지 텍스트 */
.sub-title{
	font-size: 40px;
    font-weight: bold;
    color: #25292c;
	text-align:center;
}
.sub-title em{
	font-size: 20px;
    color: #a6a6a6;
    display: block;
    font-style: normal;
    line-height: 1;
}
.sub-title .col-r{
	color: #ec2338;
    font-weight: bold;
}
.sec-txt{
	font-size:24px;
	text-align:center;
	color:#25292c;
}

.sub-txt{
	display:table;
	width:100%;
	background:#fff;
	padding: 55px 0 15px;
}
.sub-txt.text-center{
	padding-bottom:45px;
}
.sub-txt .inner{
	max-width:1200px;
	margin:0 auto;
	font-size:20px;
}
.sub-txt h1{
	font-size:30px;
	color:#25292c;
    font-weight: 500;
}
.sub-txt h1 span{
	font-size:14px;
	color:#9f9f9f;
}
.sub-txt h3{
	font-size:24px;
}
.sub-txt h3 a{
    color: #25292c;
    border-radius: 20px;
    border: 1px solid #25292c;
    display: inline-block;
    padding: 3px 35px;
    vertical-align: middle;
    margin-bottom: 5px;
    margin-left: 10px;
    font-size: 14px;
}

.tit-border{
	border-bottom:1px solid #e2e2e2;
	display:table;
	width:100%;
}
.tit-border h3{
	max-width:1200px;
	margin:0 auto;
	padding:20px 0 10px;
	font-size: 24px;
}

/* 팝업 */
.layer-popup{
	position: fixed;
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
    z-index: 100;
    left: 0;
    top: 0;
}
.layer-popup .inner{
	position:absolute;
	left:50%;
	top:50%;
	transform: translate(-50%, -50%);
}
.layer-popup .inner .exit{
	float:right;
	margin:20px;
	cursor: pointer;
}
.layer-wrap{
	background:#fff;
	border-radius:20px;
	clear: both;
	min-width: 800px;
	padding:60px;
	overflow: hidden;
}
.layer-wrap h3{
	font-size: 24px;
    color: #000000;
    font-weight: bold;
    text-align: center;
	margin-bottom: 20px;
}
.layer-popbg::before{
    content: '';
    position: absolute;
    width: 1221px;
    height: 795px;
    background: url(/img/marketer/pc/popup_bg.png) no-repeat center center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* 컨택트 폼 */
.contact-form > div{
	font-size:0;
	display: table;
    width: 100%;
}
.contact-form > div.wid2 input{
	width:49%;
	display:inline-block;
	margin:5px 0;
}
.contact-form > div.wid2 input:first-child{
	margin-right: 2%;
}

.contact-form > div.wid1 input{
	width:100%;
	margin:10px 0;
}
.contact-form > div.wid1 textarea{
	width:100%;
	padding:20px;
	border:1px solid #e2e2e2;
	margin:10px 0;
}


/* 데이터 없을경우 */
.data-no{
    text-align: center;
    margin: 150px 0 200px;
}
.data-no b{
    display: block;
    color: #25292c;
    font-size: 24px;
    font-weight: normal;
    margin: 20px 0;
}
.data-no p{
    font-size: 20px;
    color: #25292c;
}

/* 카테고리 스타일 */
.cate_wrap{
	background: #fafafa;
    border-bottom: 1px solid #e2e2e2;
}
.cate_wrap ul{
	max-width:1200px;
	margin:0 auto;
}
.cate_wrap ul li{
    display: inline-block;
    padding: 0px 31px;
    color: rgba(37,14,44,.5);
    font-size: 20px;
	height: 54px;
    line-height: 54px;
	cursor: pointer;
}
.cate_wrap ul li.on{
    backgrounD:#fff;
    border-left: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    font-weight: bold;
    color:#ec2338;
    position: relative;
}
.cate_wrap ul li.on::before{
    position:absolute;
    content:'';
    background:#fff;
    width:100%;
    height: 1px;
    bottom:-1px;
    left:0;
}
.cate_wrap ul li:hover{
	font-weight: bold;
    color:#ec2338;
}
.status-table img:hover + .q-hover{
	display:block;
}
.status-table .q-hover{
	position: absolute;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    background: #fff;
    padding: 15px;
	padding-left:20px;
    font-size: 16px;
	margin-left:75px;
    width: 300px;
    z-index: 1;
    word-break: keep-all;
	text-align: left;
	display:none;
}