@charset "UTF-8";

/* Font Face */
@font-face {
	font-family: 'NotoKr';
	font-style: normal;
	font-weight: 100;
	src: url('../font/notokr-light.woff2') format('woff2'),
		 url('../font/notokr-light.woff') format('woff');
}
@font-face {
	font-family: 'NotoKr';
	font-style: normal;
	font-weight: 300;
	src: url('../font/notokr-regular.woff2') format('woff2'),
		 url('../font/notokr-regular.woff') format('woff');
}
@font-face {
	font-family: 'NotoKr';
	font-style: normal;
	font-weight: 500;
	src: url('../font/notokr-medium.woff2') format('woff2'),
		 url('../font/notokr-medium.woff') format('woff');
}
@font-face {
	font-family: 'NotoKr';
	font-style: normal;
	font-weight: 700;
	src: url('../font/notokr-bold.woff2') format('woff2'),
		 url('../font/notokr-bold.woff') format('woff');
}


/* Default Setting */
header, footer, section, article,
aside, nav, hgroup, details, menu,
figure, figcaption {
	display: block;
}
body {
	font-weight: 300;
	font-family: 'NotoKr', sans-serif;
	font-size: 18px;
	color: #333333;
	line-height: 30px;
	margin: 0px;
	padding: 0px;
	background-color: white;
	/*opacity: 0;
	transition: 0.3s ease opacity;*/
}
body.load_complete {
	opacity: 1;
}
img {
	max-width: 100%;
	border: 0px;
	vertical-align: middle;
}
a {
	text-decoration: none;
	color: #333333;
}
a.invisible {
	color: #b8b8b8;
}
input,button,select,textarea {
	font-family: 'NotoKr', sans-serif;
	font-weight: 300;
	font-size: 18px;
	outline: 0;
	border: 0px;
	padding: 0px;
	margin: 0px;
	color: #333333;
	background: none;
	vertical-align: middle;
}
select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
textarea {
	line-height: 24px;
	padding: 9px 20px 10px;
	height: 50px;
	border: 1px solid #C7C7C7;
	box-sizing: border-box;
	background-color: white;
	-webkit-appearance: none;
	border-radius: 0px;
	-webkit-border-radius: 0px;
}
select {
	padding-right: 60px;
	background: url(../images/template/bullet_select.png) no-repeat calc( 100% - 20px ) center;
}
textarea {
	padding: 15px 20px;
	line-height: 28px;
	resize: none;
	height: 200px;
}
select:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
	border: 1px solid #101010;
}
select:disabled,
input[type="text"]:disabled,
input[type="password"]:disabled,
input[type="email"]:disabled,
input[type="tel"]:disabled,
textarea:disabled {
	color: rgba(16,16,16,0.5);
	background-color: #F2F2F2;
}
textarea::-webkit-scrollbar {
	width: 6px;
	border-radius: 0px;
	background-color: #DFDFDF;
}
textarea::-webkit-scrollbar-thumb {
	border-radius: 0px;
	background-color: #6B6B6B;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	opacity: 0.4;
}
::-moz-placeholder { /* Firefox 19+ */
	opacity: 0.4;
}
:-ms-input-placeholder { /* IE 10+ */
	opacity: 0.4;
}
:-moz-placeholder { /* Firefox 18- */
	opacity: 0.4;
}
::-ms-clear,
::-ms-reveal {
	display: none
}
button,input[type="submit"],input[type="image"] {
	cursor: pointer;
}
hr {
	display: none;
}
/* editor line */
div.gline > hr {
	display: block;
}
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
	font-weight: 500;
}
h1 {
	font-size: 70px;
	line-height: 1;
	font-weight: 700;
}
h2 {
	font-size: 50px;
	line-height: 1;
}
h3 {
	font-size: 22px;
	line-height: 1;
}
h4 {
	font-size: 17px;
	line-height: 1;
}
h5 {
	font-size: 12px;
	line-height: 1;
}
p {
	margin: 0px;
}
ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
dl,dt,dd {
	padding: 0px;
	margin: 0px;
}
table {
	width: 100%;
	border-collapse: collapse;
	/* table-layout: fixed; */
}
th,td {
	padding: 0px;
}
th {
	font-weight: 500;
}
fieldset legend {
	position: absolute;
	top: -9999px;
	left: -9999px;
	text-indent: -9999px;
	overflow: hidden;
}
fieldset {
	border: 0px;
	padding: 0px;
	margin: 0px;
}
table caption {
	text-indent: -9999px;
	overflow: hidden;
	height: 2px;
	margin-top: -2px;
}
figure {
	margin: 0px;
	padding: 0px;
}
strong,b {
	font-weight: 500;
}

/* 테블릿
**********************************************************/
@media all and (max-width: 1280px) {
	body {
		font-size: 16px;
		line-height: 25px;
	}
	input,button,select,textarea {
		font-size: 16px;
	}
	select,
	input[type="text"],
	input[type="password"],
	input[type="email"],
	input[type="tel"],
	textarea {
		height: 45px;
		padding: 7px 15px 8px;
	}
	select {
		padding-right: 56px;
		background-size: 16px auto;
	}
	textarea {
		padding: 10px 15px;
		line-height: 24px;
	}
	textarea::-webkit-scrollbar {
		width: 4px;
	}
	h1 {
		font-size: 48px;
	}
	h2 {
		font-size: 35px;
	}
}


/* 모바일
**********************************************************/
@media all and (max-width: 720px) {
	body {
		font-size: 14px;
		line-height: 20px;
	}
	input,button,select,textarea {
		font-size: 14px;
	}
	select,
	input[type="text"],
	input[type="password"],
	input[type="email"],
	input[type="tel"],
	textarea {
		height: 40px;
		padding: 4px 10px 5px;
	}
	select {
		padding-right: 52px;
		background-size: 12px auto;
	}
	textarea {
		padding: 8px 10px;
		line-height: 20px;
	}
	textarea::-webkit-scrollbar {
		width: 2px;
	}
	h1 {
		font-size: 25px;
	}
	h2 {
		font-size: 20px;
	}
}