/*--ysk--------------------------------------------------------------------------------*

	ysk 2022년01월

-----------------------------------------------------------------------------------ysk-*/
@charset "utf-8";
* {box-sizing: border-box;	-ms-box-sizing: border-box;	-webkit-box-sizing: border-box;}
.cf:after{content:''; display:block; clear:both;}

/*-------------------------------------------------------------------------------------*
 *  기본스타일 시트                                                                    *
 *-------------------------------------------------------------------------------------*/
a         {color:#e3e3e3; text-decoration:none;}
body      {font-size: 13px; color: #e3e3e3; margin: 0 0 0 0; font-family: 'Noto Sans KR', sans-serif; font-weight:300; letter-spacing:0px; background:#000000; overflow-y:scroll; -webkit-overflow-scrolling:touch; min-width:1600px;}
td        {font-size: 13px; color: #e3e3e3; margin: 0 0 0 0; font-family: 'Noto Sans KR', sans-serif; font-weight:300; letter-spacing:0px;}
div       {font-size: 13px;  margin: 0 0 0 0; font-family: 'Noto Sans KR', sans-serif; font-weight:300; letter-spacing:0px;}
select    {font-size: 13px; color: #e3e3e3; margin: 0 0 0 0; font-family: 'Noto Sans KR', sans-serif; font-weight:300; letter-spacing:0px;}
textarea  {font-size: 13px; color: #e3e3e3; margin: 0 0 0 0; font-family: 'Noto Sans KR', sans-serif; font-weight:300; letter-spacing:0px;}


a{font-family: 'EsaManru';}
body{font-family: 'EsaManru';}
td{font-family: 'EsaManru';}
div{font-family: 'EsaManru';}
select{font-family: 'EsaManru';}
textarea{font-family: 'EsaManru';}

/*-------------------------------------------------------------------------------------*
 *  인풋                                                                               *
 *-------------------------------------------------------------------------------------*/
input::-webkit-input-placeholder    {color:#e3e3e3; font-size:13px; letter-spacing:-1pt;}
input:-ms-input-placeholder         {color:#e3e3e3; font-size:13px; letter-spacing:-1pt;}
textarea::-webkit-input-placeholder {color:#e3e3e3; font-size:13px; letter-spacing:-1pt;}
textarea:-ms-input-placeholder      {color:#e3e3e3; font-size:13px; letter-spacing:-1pt;}
input::placeholder                  {color:#e3e3e3; font-size:13px; letter-spacing:-1pt;}
textarea::placeholder               {color:#e3e3e3; font-size:13px; letter-spacing:-1pt;}


/*-------------------------------------------------------------------------------------*
 *  고정스타일 시트                                                                    *
 *-------------------------------------------------------------------------------------*/
A,area   {blr:expression(this.onFocus=this.blur())} 
:focus   {-moz-outline-style: none;} 
form     {margin:0;} 
img      {border:none;}
ul,ol,li,dl,dd,dt  {margin:0; list-style:none;}

html,body,div,span,object,iframe,p,
blockquote,pre,abbr,address,cite,code,del,dfn,em,img,
ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,caption,tbody,tfoot,thead,tr,th,swf,javascript,
article,aside,canvas,details,figcaption,figure,footer,header,td,
menu,nav,section{margin:0;padding:0}

img,fieldset,iframe{border:0 none}
img {/* max-width:100%; */vertical-align:middle}
textarea{resize:none}
input,select,textarea,button{font-size:100%;vertical-align:middle;-webkit-box-sizing:border-box;box-sizing:border-box; outline:none;}
h1,h2,h3,h4,h5,h6{font-size:100%}
address,strong,caption,cite,code,dfn,em,var{font-style:normal;font-weight:normal}
blockquote,q{quotes:none} 
blockquote:before,blockquote:after,q:before,q:after{content:"";content:none} 

/* base - IE8~7 */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}

/* base - input */
input[type="text"],input[type="password"],input[type="submit"],input[type="search"],input[type="image"],textarea{-webkit-appearance:none;} 
input:checked[type="checkbox"]{background-color:#666;-webkit-appearance:checkbox} 
button,input[type="button"],input[type="submit"],input[type="reset"],input[type="file"]{-webkit-appearance:button;border-radius:0} 
input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}

button{border:none; outline:none; cursor:pointer; background:none; padding:0; margin:0;}
/* 아이폰 폰트사이즈 자동조절 방지 */
html, body{
  -webkit-text-size-adjust : none;  /* 크롬, 사파리, 오페라 신버전 */
  -ms-text-size-adjust : none;  /* IE */
  -moz-text-size-adjust : none;  /* 파이어폭스 */
  -o-text-size-adjust : none;  /* 오페라 구버전 */
}
html{font-size:62.5%;}

body::-webkit-scrollbar {display: none;}

::-moz-selection {
   background: #ffe6ac;
   color: #fff;
}
::selection {
   background: #ffe6ac;
   color: #fff;
}

.d-none {
	display: none !important;
}
.hide {
	display: none !important;
}

.topBtn {
	display: none; /* 기본적으로 버튼을 숨깁니다. */
	position: fixed; /* 화면에 고정시킵니다. */
	bottom: 20px; /* 아래쪽에서 20px 위로 위치 */
	right: 30px; /* 오른쪽에서 30px 왼쪽으로 위치 */
	z-index: 99; /* 다른 요소보다 위에 오도록 설정 */
	border: none; /* 테두리 없음 */
	outline: none; /* 아웃라인 없음 */
	background-color: #007BFF; /* 버튼 색상 */
	color: white; /* 텍스트 색상 */
	cursor: pointer; /* 마우스를 올렸을 때 커서 모양 */
	padding: 15px; /* 버튼 내부 여백 */
	border-radius: 10px; /* 모서리 둥글게 */
	font-size: 18px; /* 글꼴 크기 */
}

	.topBtn:hover {
		background-color: #555; /* 마우스를 올렸을 때 버튼 색상 */
	}