@charset "euc-kr";

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


/*지마켓 산스*/
@font-face {
	font-family: 'Gmarket Sans';    font-style: normal;    font-weight: 700;
	src: local('Gmarket Sans Bold'), local('GmarketSans-Bold'),
	url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
}
@font-face {
	font-family: 'Gmarket Sans';    font-style: normal;    font-weight: 500;
	src: local('Gmarket Sans Medium'), local('GmarketSans-Medium'),
	url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
}
@font-face {
	font-family: 'Gmarket Sans';    font-style: normal;    font-weight: 300;
	src: local('Gmarket Sans Light'), local('GmarketSans-Light'),
	url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
}

/*더페이스샵 잉크립퀴드체*/
@font-face {
    font-family: 'InkLipquid';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/InkLipquid.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


*{
	margin:0;
	padding:0;
}
@font-face{
	font-family: 'Noto Sans KR', sans-serif;
}

*{ /* 패딩, 보더를 포함시킴 */
	-webkit-box-sizing : border-box;
	-moz-box-sizing : border-box;
	-o-box-sizing : border-box;
	-ms-box-sizing : border-box;
	box-sizing : border-box;
 } 

body, select, input, textarea, option{
	margin:0;
	padding:0;
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 400;
	color: #232323;	
	letter-spacing: -0.5px;
	word-break: keep-all;
}

/*스크롤바*/
html::-webkit-scrollbar{
	width: 8px;
	background-color: #fff;
}
html::-webkit-scrollbar-thumb{
	background-color: #575757;
	border-radius: 10px;
}

.right::-webkit-scrollbar,
.left .left_menu::-webkit-scrollbar{
	width: 8px;
	background-color: #fff;
}
.right::-webkit-scrollbar-thumb,
.left .left_menu::-webkit-scrollbar-thumb{
	background-color: #ededed;
	border-radius: 10px;
}

/* 아이폰 기본 스타일 제거 */
input,
textarea{
	/*ios대응*/
	appearance: none;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

select{
	/*ios대응*/
	-webkit-appearance: none;
	-moz-appearance: none; 
	appearance: none;
	background: url('../images/sub/bg_select.jpg') no-repeat 95% 50%; /* 화살표 아이콘 추가 */
	background-size: 10px 7px;
	border-radius: 0;
}

 /* -----기본 링크스타일----- */
a:link{
	color :#000000;
	text-decoration: none;
}                                       
a:visited{
	color:#000000;
	text-decoration: none;
}
a:hover{
	color :#0052a5;
	text-decoration :none;
}
a:active{
	color: #0052a5;
	text-decoration: none;
}
.hidden{
	display: none;
}

caption, legend{
	font-size: 0px;
	width: 0px;
	height: 0px;
	overflow: hidden;
	position: absolute;
	visibility:hidden;
}

img{
	border: 0;
	image-rendering: -webkit-optimize-contrast !important;
}

input,textarea,select{
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

ul,ol,dl,li{
	list-style: none;
}

textarea{
	overflow: auto;
} 

button,label{
	cursor: pointer;
}


.skip{
	position: absolute;
	width: 1px;
	height: 1px;
	border: 1px;
	top: -5000em;
	overflow: hidden;
}
hr{
	display: none;
	clear: both;
}

button{
	font-family: 'Noto Sans KR', sans-serif;
}
button:focus{
	outline: none;
}

/*입력폼*/
input{
	height: 36px;
	border: 1px solid #dddddd;
	color: #5c5c5c;
	padding: 0 10px;
	box-sizing: border-box;
}
input:focus {
	outline: none;
	border: 1px solid #000000;
	border-radius: 0;
}


/*textarea박스*/
textarea{
	height: 100px;
	border: 1px solid #dddddd;
	color: #5c5c5c;
	padding: 10px 10px;
	box-sizing: border-box;
}
textarea:focus {
	outline: none;
	border: 1px solid #000000;
	border-radius: 0;
}

/*셀렉트박스*/
select{
	height: 36px;
	border: 1px solid #dddddd;
	color: #5c5c5c;
	padding: 0 10px;
}
select:focus {
	outline: none;
	border: 1px solid #000000;
	border-radius: 0;
}

/*라디오 버튼*/
input[type='radio'] {
	display: none;
}
input[type='radio'] + label{
	margin-bottom:0;
	font-weight: 400;
	color: #5c5c5c;
    display: inline-block;
    cursor: pointer;
    position: relative;
	margin: 0 17px 0 0;
}
input[type='radio'] + label::before {
	content: ' ';
	display: inline-block;
	width: 15px;
	height: 15px;
	vertical-align: middle;
	margin: -5px 7px 0 0;
	background: url('../images/sub/radio_off.png');
}
input[type='radio']:checked + label::before {
	background: url('../images/sub/radio_on.png');
}

/*체크버튼*/
input[type=checkbox] {
    display: none;
}

input[type=checkbox] + label{
	margin-bottom: 0;
	font-weight: 400;
	color: #262626;	
    display: inline-block;
    cursor: pointer;
    position: relative;   
}
input[type=checkbox]+ label:before {

	content: "";
	display: inline-block;

	width: 16px;
	height: 16px;

	position: absolute;
	left: 0;
	top: 4px;
	background-color: #FFFFFF;
	border: 1px solid #dddddd;
}
input[type=checkbox]:checked + label:before{
    content: "\2713";  /* 체크모양 */
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
    font-size: 16px;
    font-weight:800;
    color: #fff;
    background: #49b80a;
    text-align: center;
    line-height: 12px;

}

@media (max-width: 575px){
	input[type=checkbox] + label{
		font-size: 15px;
		padding: 0 20px 0 24px;
	}
}
@media (min-width: 576px){
	input[type=checkbox] + label{
		font-size: 16px;
		padding: 0 20px 0 26px;
	}
}
@media (min-width: 768px){
	input[type=checkbox] + label{
		font-size: 17px;
		padding: 0 20px 0 26px;
	}
}

/*테이블-기본설정*/
table{
	border-collapse: collapse;
	border-spacing: 0;
	border:0;
}

td img{
	border: 0;
	vertical-align: middle;
}

/*================================
	반응형 기본사이즈
================================*/
/* 기본레이아웃 */
.wrap{
	margin: 0 auto;
	overflow: hidden;
}

@media (max-width: 575px) {
	.wrap{
		width: 100%;
		padding-right: 15px;
		padding-left: 15px;		
	}
}
@media (min-width: 576px) {
	.wrap{
		max-width: 540px;
		padding-right: 0;
		padding-left: 0;
		margin: 0 auto;
	}
}
@media (min-width: 768px){
	.wrap{
		max-width: 720px;
		padding-right: 0;
		padding-left: 0;
	}
}
@media (min-width: 992px){
	.wrap{
		max-width: 950px;
		padding-right: 0;
		padding-left: 0;
	}
}
@media (min-width: 1100px){
	.wrap{
		max-width: 1040px;
		padding-right: 0;
		padding-left: 0;
	}
}
@media (min-width: 1200px){
	.wrap{
		max-width: 1120px;
		padding-right: 0;
		padding-left: 0;
	}
}
@media (min-width: 1300px){
	.wrap{
		max-width: 1200px;
		padding-right: 0;
		padding-left: 0;
	}
}
@media (min-width: 1400px){
	.wrap{
		max-width: 1280px;
		padding-right: 0;
		padding-left: 0;
	}
}
@media (min-width: 1500px){
	.wrap{
		max-width: 1400px;
		padding-right: 0;
		padding-left: 0;
	}
}

/* 서브-기본레이아웃 */
.s_wrap{
	margin: 0 auto;
	overflow: hidden;
}

@media (max-width: 575px) {
	.s_wrap{
		width: 100%;
		padding-right: 15px;
		padding-left: 15px;		
	}
}
@media (min-width: 576px) {
	.s_wrap{
		max-width: 540px;
		padding-right: 0px;
		padding-left: 0px;
		margin: 0 auto;
	}
}
@media (min-width: 768px){
	.s_wrap{
		max-width: 720px;
		padding-right: 0px;
		padding-left: 0px;
	}
}
@media (min-width: 992px){
	.s_wrap{
		max-width: 950px;
		padding-right: 0px;
		padding-left: 0px;
	}
}
@media (min-width: 1100px){
	.s_wrap{
		max-width: 1040px;
		padding-right: 0px;
		padding-left: 0px;
	}
}
@media (min-width: 1200px){
	.s_wrap{
		max-width: 1120px;
		padding-right: 0px;
		padding-left: 0px;
	}
}
@media (min-width: 1300px){
	.s_wrap{
		width: 100%;
		padding-right: 30px;
		padding-left: 30px;
	}
}
@media (min-width: 1500px){
	.s_wrap{
		width: 100%;		
		padding-right: 40px;
		padding-left: 40px;
	}
}
@media (min-width: 1600px){
	.s_wrap{
		width: 100%;		
		padding-right: 50px;
		padding-left: 50px;
	}
}

/*보이게 안보이게 하기*/
@media (max-width: 575px) {
	.visible_xs {
		display: block !important;
	}
	.visible_xs_inline_block {
		display: inline-block !important;
	}
	.hidden_xs {
		display: none !important;
	}
}
@media (min-width: 576px) and (max-width: 767px) {
	.visible_zs {
		display: block !important;
	}
	.visible_zs_inline_block {
		display: inline-block !important;
	}
	.hidden_zs {
		display: none !important;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.visible_sm {
		display: block !important;
	}
	.visible_sm_inline_block {
		display: inline-block !important;
	}
	.hidden_sm {
		display: none !important;
	}
}
@media (min-width: 992px) and (max-width: 1099px) {
	.visible_md {
		display: block !important;
	}
	.visible_md_inline_block {
		display: inline-block !important;
	}
	.hidden_md {
		display: none !important;
	}
}
@media (min-width: 1100px) and (max-width: 1299px) {
	.visible_hd {
		display: block !important;
	}
	.visible_hd_inline_block {
		display: inline-block !important;
	}
	.hidden_hd {
		display: none !important;
	}
}
@media (min-width: 1300px) {
	.visible_lg {
		display: block !important;
	}
	.visible_lg_inline-block {
		display: inline-block !important;
	}
	.hidden_lg {
		display: none !important;
	}
}
@media (min-width: 1400px) {
	.visible_gw {
		display: block !important;
	}
	.visible_gw_inline-block {
		display: inline-block !important;
	}
	.hidden_gw {
		display: none !important;
	}
}
@media (min-width: 1500px) {
	.visible_wa {
		display: block !important;
	}
	.visible_wa_inline-block {
		display: inline-block !important;
	}
	.hidden_wa {
		display: none !important;
	}
}
@media (min-width: 1600px) {
	.visible_ab {
		display: block !important;
	}
	.visible_ab_inline-block {
		display: inline-block !important;
	}
	.hidden_ab {
		display: none !important;
	}
}
@media (min-width: 1700px) {
	.visible_bc {
		display: block !important;
	}
	.visible_bc_inline-block {
		display: inline-block !important;
	}
	.hidden_bc {
		display: none !important;
	}
}

/*해상도에 따른 폰트*/
@media (max-width: 359px) {
	html{
		font-size: 12px;
		line-height: 19px;
	}
}
@media (min-width: 360px) {
	html{
		font-size: 16px;
		line-height: 23px;
	}
}
@media (min-width: 576px) {
	html{
		font-size: 16px;
		line-height: 23px;
	}
}
@media (min-width: 992px){
	html{
		font-size: 17px;
		line-height: 27px;
	}
}
@media (min-width: 1100px){
	html{
		font-size: 18px;
		line-height: 29px;
	}
}
@media (min-width: 1500px){
	html{
		font-size: 19px;
		line-height: 30px;
	}
}

/*유튜브동영상 반응형에 맞게 줄어들기*/
.youtube{
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
}
.youtube iframe{
	position: absolute;
	width: 100%;
	height: 100%;
}

/*================================================================================================
    클릭시 팝업창뜨기
================================================================================================*/
.popup{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    z-index: 1050;
    overflow: auto;
    outline: 0;
    text-align: center;
    font-size: 0;
    transform: translate3d(0, 0, 0);
}
.popup:after{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 100%;
}

@media (max-width: 767px){
    .popup{
        padding: 20px 0;
    }
}

.popup__container{
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.popup.opened{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}

body.popup-opened{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

.popup{
    background-color: rgba(0, 0, 0, .54);
    -webkit-transition: opacity .4s cubic-bezier(.23, 1, .32, 1) 0s;
    transition: opacity .4s cubic-bezier(.23, 1, .32, 1) 0s;
    -o-transition: opacity .4s cubic-bezier(.23, 1, .32, 1) 0s;
    -moz-transition: opacity .4s cubic-bezier(.23, 1, .32, 1) 0s;
    will-change: opacity, transform;
}

.popup__container{
    text-align: left;
    font-size: 12px;
    background-color: #fff;
    padding: 35px;
    margin: 30px auto;
    box-shadow: rgba(0, 0, 0, .25) 0 14px 45px, rgba(0, 0, 0, .22) 0 10px 18px;
    -webkit-box-shadow: rgba(0, 0, 0, .25) 0 14px 45px, rgba(0, 0, 0, .22) 0 10px 18px;
    -moz-box-shadow: rgba(0, 0, 0, .25) 0 14px 45px, rgba(0, 0, 0, .22) 0 10px 18px;
    border-radius: 3px;
    transition: opacity .2s ease, visibility 0s .1s, transform 450ms cubic-bezier(.23, 1, .32, 1) 0s, -webkit-transform 450ms cubic-bezier(.23, 1, .32, 1) 0s;
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    transform: scale(.8);
    -webkit-transition: opacity .2s ease, visibility 0s .1s, -webkit-transform 450ms cubic-bezier(.23, 1, .32, 1) 0s;
    transition: opacity .2s ease, visibility 0s .1s, -webkit-transform 450ms cubic-bezier(.23, 1, .32, 1) 0s;
    transition: opacity .2s ease, visibility 0s .1s, transform 450ms cubic-bezier(.23, 1, .32, 1) 0s;
    will-change: transform, opacity;
}
.popup__container img{
	width: 100%;
	max-width: 399px;
}
.popup__close{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    padding-top: 5px;
}

.popup__close span{
    display: block;
    width: 100%;
    height: 1px;
    background-color: #2f2c2c;
}

.popup__close span:first-of-type{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.popup__close span:last-of-type{
    -webkit-transform: rotate(-45deg) translateY(-1px);
    -moz-transform: rotate(-45deg) translateY(-1px);
    -ms-transform: rotate(-45deg) translateY(-1px);
    -o-transform: rotate(-45deg) translateY(-1px);
    transform: rotate(-45deg) translateY(-1px);
}

@media (max-width: 767px){
    .popup__container{
        width: 80%;
        margin: 10px auto;
        padding: 20px 18px;
    }

    .popup__close{
        top: 10px;
        right: 10px;
    }
}

.popup.opened .popup__container{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}

/*================================
	페이지 준비중입니다.
================================*/
.page_ing{
	text-align: center;
}
.page_ing img{
	padding: 0 0 20px 0;
}

/*================================
	색상
================================*/
.color_0c6ddd{
	color: #0c6ddd;
}
.color_ce2025{
	color: #ce2025;
}