@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Gasoek+One&family=Noto+Sans+KR:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Gasoek+One&family=Noto+Sans+KR:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */


/* ===== HTML, body 기본 세팅 ===== */

html {
	font-size: 0.625em;
	line-height: 1.15;
	/* 1 */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* macOS Firefox 대응 */
	-webkit-text-size-adjust: 100%;
	/* iOS 자동 확대 방지 */
	text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
	/* 글꼴 렌더링 최적화 */
	font-feature-settings: "liga", "kern";
	/* 글꼴 자간, 합자 조정 */
}

body {
	font-family: Noto Sans, sans-serif;
	font-weight: 400;
	line-height: 1;
}

li {
	list-style: none;
}

a {
	color: #333;
	text-decoration: none;
}

/* ===== 공백 초기화 ===== */

body,
button,
dd,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
legend,
li,
ol,
p,
select,
table,
td,
textarea,
th,
ul,
figure,
figcaption {
	margin: 0;
	padding: 0;
}


/* ===== global_class =====*/

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.screen_out {
	position: absolute;
	top: -9999em;
}

.ir_pm {
	text-indent: -999em;
	white-space: nowrap;
	overflow: hidden;
}


.modal {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	z-index: 99
}