@charset "utf-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	letter-spacing:-0.5px;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

img{
	pointer-events: none;
	vertical-align: middle;
}


a{
	text-decoration: none;
	color: inherit;
}

html, body{
	/* overflow-x: hidden; */
	overflow: visible !important;
}


/* =========================== 


                            COLOR


 =========================== */

:root{
	--green01:#1e2c28;
	--green02:#15211e;

	--brown01:#c8af79;

	--gray01:#c8c8c8;
	--gray02:#f8f8f8;
	--gray03:#666;
	--gray04:#999;
	--gray05:#eee;
	--gray06:#ccc;

	--black:#010101;
	--white:#fff;

}

/* =========================== 


                            pt,pb,mt,mb


 =========================== */

.pt160{
	padding-top:160px;
}

.pt200{
	padding-top:200px;
}

.pb160{
	padding-bottom:160px;
}

.pt120{
	padding-top:120px;
}

.pb120{
	padding-bottom:120px;
}

.pb200{
	padding-bottom:200px;
}

.mt80{
	margin-top:80px;
}

.mt60{
	margin-top:60px;
}

.mt30{
	margin-top:30px;
}

@media screen and (max-width:1240px){
	.pt160{
		padding-top:120px;
	}

	.pt200{
		padding-top:160px;
	}

	.pb160{
	padding-bottom:120px;
	}

	.pt120{
	padding-top:80px;
}

	.pb120{
		padding-bottom:80px;
	}

	.pb200{
		padding-bottom:160px;
	}

	.mt80{
		margin-top:60px;
	}

	.mt60{
		margin-top:40px;
	}
}

@media screen and (max-width:1024px){
	.pt200{
		padding-top:120px;
	}

	.pb200{
		padding-bottom:120px;
	}
}


@media screen and (max-width:767px){
	.pt160{
		padding-top:80px;
	}

	.pt120{
		padding-top:60px;
	}

	.pb120{
		padding-bottom:60px;
	}

	.pt200{
		padding-top:100px;
	}

	.pb160{
	padding-bottom:80px;
	}

	.pb200{
		padding-bottom:100px;
	}

	.mt80{
		margin-top:40px;
	}

	.mt30{
		margin-top:20px;
	}
}

@media screen and (max-width:640px){
	.pt160{
		padding-top:60px;
	}

	.pt200{
		padding-top:80px;
	}

	.pb160{
		padding-bottom:60px;
	}

	.pt120{
		padding-top:40px;
	}

	.pb120{
		padding-bottom:40px;
	}

	.pb200{
		padding-bottom:80px;
	}
}

@media screen and (max-width:460px){
	.mt60{
		margin-top:30px;
	}
}

/* =========================== 


                            FONT


 =========================== */


 *{
	font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
	font-size: 16px;
	letter-spacing: -0.02rem;
	color:var(--black);
 }


 @media screen and (max-width: 1280px){
	*{ font-size: 15px; }
 }

 @media screen and (max-width: 900px){
	*{ font-size: 14px; }
 }

  @media screen and (max-width: 767px){
	*{ font-size: 13px; }
 }

  @media screen and (max-width: 320px){
	*{ font-size: 12px; }
 }

 .noto-sans-kr-<uniquifier> {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/* =========================== 


						 공통스타일


 =========================== */
.vHidden {
    overflow: hidden;
    display: inline-block;
    position: absolute;
    z-index: -1;
    border: 0;
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
}


 .wrapper{
	width:1400px;
	margin:0 auto;
 }

 @media screen and (max-width:1500px){
	.wrapper{
		width:90%;
	}
 }

.btn{
	padding:10px 40px;
	background-color:var(--green01);
	border-radius:5px;
	display:flex;
	gap:30px;
	align-items:center;
	width:fit-content;
	transition:0.3s;
}

.btn .btn_txt{
	color:var(--white);
	font-size:1.125rem;
	font-weight:600;
}

.btn .btn_icn{
	background-color:rgba(255,255,255,.1);
	background-image:url(/img/btn_icn.png);
	background-position:center;
	background-repeat:no-repeat;
	display:block;
	width:38px;
	height:38px;
	border-radius:50%;
}

@media screen and (max-width:1100px){
	.btn .btn_icn{
		width:34px;
		height:34px;
	}

	.btn{
		padding:10px 35px;
	}
}

@media screen and (max-width:760px){
	.btn{
		gap:20px;
		padding:7px 30px;
	}

	.btn .btn_icn{
		width:25px;
		height:25px;
	}

	.btn .btn_txt{
		font-size:1rem;
	}
}

@media screen and (max-width:375px){
	.btn{
		padding:7px 20px;
	}
}