@charset "UTF-8";

@import "./reset.css";
@import "./form.css";

@font-face {
	font-family: 'yg-jalnan';
	src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.2/JalnanOTF00.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

/*변수*/
:root {
	--width-default: 1440px;

	--color-error: #eb3641;

	--color-gray-00: #fff;
	--color-gray-05: #f8f8f8;
	--color-gray-10: #eee;
	--color-gray-20: #ddd;
	--color-gray-30: #ccc;
	--color-gray-40: #b4b4b4;
	--color-gray-50: #999;
	--color-gray-60: #767676;
	--color-gray-70: #666;
	--color-gray-80: #333;
	--color-gray-90: #1d1d1d;

	--color-primary-05: #fbf7fe;
	--color-primary-10: #f3ecfa;
	--color-primary-20: #e5d8f3;
	--color-primary-30: #d1bbe8;
	--color-primary-40: #ae8ad6;
	--color-primary-50: #8151b5;
	--color-primary-60: #6f429f;
	--color-primary-70: #57327d;
	--color-primary-80: #3f265a;
	--color-primary-90: #2e203d
}

html{
	font-size: 62.5%;
	height: 100%;
	box-sizing: border-box
}

body{
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-sizing: border-box;
	font-family: 'Pretendard GOV',sans-serif;
	background-color: var(--color-gray-00);
	color: var(--color-gray-90)
}

a, input, textarea, label{
	color: var(--color-gray-90)
}

a, button, label{
	cursor: pointer
}

img{
	max-width: 100%
}

.display-s{
	font-family: 'yg-jalnan';
	font-size: max(2.4rem, min(3.1vw, 3.2rem));
	font-weight: 400;
	line-height: calc(max(2.4rem, min(3.1vw, 3.2rem)) + 10px)
}

.display-m{
	font-family: 'yg-jalnan';
	font-size: max(2.8rem, min(3.6vw, 4.8rem));
	font-weight: 400;
	line-height: calc(max(2.8rem, min(3.6vw, 4.8rem)) + 10px)
}

.display-l{
	font-family: 'yg-jalnan';
	font-size: max(3.2rem, min(4.1vw, 6.4rem));
	font-weight: 400;
	line-height: calc(max(3.2rem, min(4.1vw, 6.4rem)) + 10px)
}

h1, .title-h1{
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 4.8rem
}

h2, .title-h2{
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 4.2rem
}

h3, .title-h3{
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 3.8rem
}

h4, .title-h4{
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 3.2rem
}

h5, .title-h5{
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 3rem
}

h6, .title-h6{
	font-size: 2rem;
	font-weight: 700;
	line-height: 2.8rem
}

.body-s{
	font-size: max(1.4rem, min(2vw, 1.5rem));
	line-height: calc(max(1.4rem, min(2vw, 1.5rem)) + 8px);
	letter-spacing: -0.02em
}

.body-m{
	font-size: max(1.6rem, min(2.2vw, 1.7rem));
	line-height: calc(max(1.6rem, min(2.2vw, 1.7rem)) + 8px);
	letter-spacing: -0.02em
}

.body-l{
	font-size: max(1.8rem, min(2.4vw, 1.9rem));
	line-height: calc(max(1.8rem, min(2.4vw, 1.9rem)) + 8px);
	letter-spacing: -0.02em
}

.label-s{
	font-size: 1.2rem;
	line-height: 1.8rem
}

.label-m{
	font-size: 1.3rem;
	line-height: 1.9rem
}

.label-l{
	font-size: 1.4rem;
	line-height: 2rem
}

.bold{
	font-weight: 700
}

.primary{
	color: var(--color-primary-70)
}

.clear::after{
	content:'';
	display:block;
	clear:both
}

.layout{
	width: calc(100% - 40px);
	max-width: var(--width-default);
	margin:0 auto
}

.mo-only{
	display: none
}

.header__bg{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	box-shadow: inset 0 -1px 0 0 var(--color-gray-10);
	background-color: var(--color-gray-00);
	z-index: 90
}

.header__area{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: center;
	height: 80px;
	column-gap: 20px;
	user-select: none
}

.header__item{
	display: flex;
	align-content: center;
	flex-wrap: wrap;
}

.header__logo{
	display: inline-flex;
	flex-wrap: wrap;
	align-content: center;
	margin-right: 40px
}

.header__logo img{
	height: 48px
}

.header__gnb{
	display: flex;
	text-align: center
}

.header__gnb-item{
	position: relative;
	display: inline-flex;
	align-content: center;
	flex-wrap: wrap;
	height: 80px
}


.header__gnb-li a{
	display: inline-flex;
	align-items: center;
	padding:0 20px;
	height: 80px;
	box-sizing: border-box;
	transition: 0.3s;
	position: relative
}

.header__gnb-li a::after{
	transition: 0.3s;
}

.header__gnb-li a:hover{
	color: var(--color-primary-70)
}

.header__leave::after{
	content: '';
	position: absolute;
	left: 50%;
	bottom:2px;
	transform: translateX(-50%) scale(0);
	width: 100%;
	height: 4px;
	border-radius: 4px;
	background-color: var(--color-primary-70)
}

.header__enter::after{
	content: '';
	position: absolute;
	left: 50%;
	bottom:2px;
	transform: translateX(-50%) scale(1);
	width: 100%;
	height: 4px;
	border-radius: 4px;
	background-color: var(--color-primary-70)
}

.header__lnb{
	position: absolute;
	top:79px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	width: 180px;
	border-radius: 0 0 8px 8px;
	overflow: hidden;
	background-color: var(--color-gray-00);
	box-shadow: inset 0 0 0 1px var(--color-gray-10);
	display: none;
}

.header__lnb-li a,.header__lnb-sub a{
	display: inline-flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	height: 48px
}

.header__lnb-li a,.header__lnb-sub a{
	width: 100%
}

.header__lnb-li a:hover{
	background-color: var(--color-primary-05)
}

.header__member{
	position: relative
}

.header__member-ico{
	position: relative;
	width:44px;
	height:44px;
	border-radius: 100px;
	overflow: hidden;
	box-shadow: 0 0 0 1px var(--color-gray-10);
	background-color: var(--color-gray-05);
	cursor: pointer;
	z-index: 5
}

.header__member-ico img{
	width:100%;
	height: 100%
}

.header__member-item{
	position: absolute;
	top:84px;
	right: 0;
	display: flex;
	flex-direction: column;
	width: 160px;
	border-radius: 8px;
	background-color: var(--color-gray-00);
	box-shadow: inset 0 0 0 1px var(--color-gray-10);
	overflow: hidden;
	z-index: 5
}

.header__member-li a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 48px;
	transition: 0.3s
}

.header__member-li a:hover{
	background-color: var(--color-primary-05)
}

.member__bg{
	width:100%;
	height: 100%;
	background-color: transparent;
	position: fixed;
	top:0;
	left: 0;
}

.header__non-member-item{
	display: flex;
	column-gap: 12px;
	transition: 0.3s
}

.footer__bg{
	position: relative;
	z-index: 50
	width: 100%;
	background-color: var(--color-gray-80)
}

.footer__link{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	color: var(--color-gray-00)
}

.footer__link a{
	color: var(--color-gray-00)
}

.footer__info{
	display: flex;
	column-gap: 40px
}

.footer__site{
	position: relative
}

.footer__site-btn{
	display: flex;
	align-items: center;
	padding:0 24px;
	width:240px;
	height:48px;
	border-radius: 4px;
	background-color: var(--color-gray-80);
	box-shadow: inset 0 0 0 1px var(--color-gray-70);
	box-sizing: border-box;
	cursor: pointer;
	background:url(../img/ico_select_close.svg) no-repeat center right 16px
}

.footer__site-btn.site-open{
	background:url(../img/ico_select_open.svg) no-repeat center right 16px
}

.footer__site-ul{
	position: absolute;
	bottom:52px;
	left:0;
	overflow: hidden;
	border-radius: 4px;
	background-color: var(--color-gray-80);
	box-shadow: inset 0 0 0 1px var(--color-gray-70);
	z-index: 15;
	display: none;
}

.footer__site-li a{
	display: inline-flex;
	align-items: center;
	padding:0 20px;
	width:240px;
	height: 48px;
	box-sizing: border-box;
	color: var(--color-gray-40);
	transition: 0.3s
}

.footer__site-li a:hover{
	background-color: var(--color-gray-70);
	color: var(--color-gray-00);
}

.footer__site-bg{
	width:100%;
	height: 100%;
	background-color: transparent;
	position: fixed;
	top:0;
	left: 0;
	z-index: 11
}

.footer__address{
	padding:20px 0 64px;
	box-sizing: border-box;
}

.footer__logo img{
	height: 64px
}

.footer__logo-grid{
	display: flex;
	justify-content: space-between;
	gap:40px;
	margin-bottom: 20px
}

.footer__logo-a{
	display: grid;
	gap:20px;
	grid-template-columns: repeat(2,1fr)
}

.footer__address-item{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 8px;
	color: var(--color-gray-50)
}

.footer__info-li:last-child{
	color: var(--color-primary-40)
}

.line{
	width: 1px;
	height: 12px;
	background-color: var(--color-gray-70)
}

.footer__copyright{
	margin-top: 8px;
	color: var(--color-gray-50)
}



.container{
	position: relative;
	width: 100%;
	margin:0 auto;
	flex: 1;
	z-index: 10
}


.footer__sns{
	display: flex;
	gap:12px;
	margin-top: 20px
}

.footer__sns-item{
	width:44px;
	height: 44px;
	overflow: hidden;
}

.footer__sns-item a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding:12px;
	box-sizing: border-box;
	border-radius: 100px;
	box-shadow: inset 0 0 0 1px var(--color-gray-70)
}

.footer__sns-instargram{
	background: url(../img/footer__sns.svg) no-repeat center center/50%
}

.footer__sns-naver{
	background: url(../img/footer__sns02.svg) no-repeat center center/50%

}

.sch_word{
	display: inline-block;
	font-weight: 700
}

.header-margin{
	margin-top: 80px
}

@media all and (max-width:1320px) {
	.header__logo {
		margin-right: 32px;
	}

}

@media all and (max-width:1200px) {
	.header__logo {
		margin-right: 24px
	}

	.header__non-member-item{
		column-gap: 8px
	}
}

@media all and (max-width:1024px) {

	.pc-only{
		display: none
	}

	.mo-only{
		display: block
	}

	.header-mo__menu-btn{
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width:44px;
		height: 44px;
		cursor: pointer;
		border-radius: 100px;
		transition: 0.3s
	}

	.header-mo__menu-btn:hover{
		background-color: var(--color-gray-05)
	}

	.header-mo__item{
		position: fixed;
		top:0;
		right:0;
		width:70%;
		max-width: 500px;
		height: 100vh;
		background-color: var(--color-gray-00);
		transform: translateX(600px);
		transition: ease-out 0.5s;
		overflow-y: auto;
		scrollbar-width: none;
		-ms-overflow-style: none;
		z-index: 90
	}

	.header-mo__bg{
		position: fixed;
		top:0;
		left: 0;
		width:100%;
		height: 100%;
		background-color: rgba(0,0,0,0.7);
		z-index: 5;
	}

	.header-mo__menu-btn-close{
		position: fixed;
		top:20px;
		right: 20px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 56px;
		height: 56px;
		box-sizing: border-box;
		cursor: pointer;
		border-radius: 100px;
		transition: 0.3s
	}

	.header-mo__menu-btn-close:hover{
		background-color: var(--color-gray-05)
	}

	.header-mo__member, .header-mo__non-member{
		margin-top: 80px;
		padding:0 20px 40px 20px;
		box-sizing: border-box;
		border-bottom:8px solid var(--color-gray-05)
	}

	.header-mo__mb-data, .header-mo__nonmb-notice{
		display: flex;
		align-items: center;
		column-gap: 8px
	}

	.header-mo__mb-ico, .header-mo__nonmb-ico{
		width: 44px;
		height: 44px;
		border-radius: 100px;
		overflow: hidden;
		box-shadow: inset 0 0 0 1px var(--color-gray-10)
	}

	.header-mo__mb-ico img, .header-mo__nonmb-ico img{
		width: 100%;
		height: 100%
	}

	.header-mo__name{
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap:8px;
	}

	.header-mo__mb-m a{
		display: flex;		
		align-items: center;
	}

	.header-mo__mb-btn, .header-mo__nonmb-btn{
		display: grid;
		grid-template-columns: repeat(2,1fr);
		column-gap: 20px;
		margin-top: 20px
	}

	.header-mo__mb-btn-li a, .header-mo__nonmb-btn-li a{
		width: 100%
	}

	.header-mo__gnb-li, .header-mo__lnb-li, .header-mo__lnb-li a, .header-mo__lnb-sub a{
		display: flex;
		align-items: center;
		box-sizing: border-box;
		width: 100%;
		height: 56px;
		cursor: pointer;
	}

	.header-mo__gnb-li{
		padding: 0 20px;
		box-shadow: inset 0 -1px 0 0 var(--color-gray-10);
		background:url(../img/ico_select_close.svg) no-repeat center right 20px
	}

	.header-mo__gnb-li.menu-open{
		background:url(../img/ico_select_open.svg) no-repeat center right 20px
	}

	.header-mo__gnb-store{
		display: flex;
		align-items: center;
		padding: 0 20px;
		box-sizing: border-box;
		width: 100%;
		height: 56px;
		cursor: pointer;
		box-shadow: inset 0 -1px 0 0 var(--color-gray-10)
	}

	.header-mo__gnb-store a{
		position: relative;
	}

	.header-mo__gnb-store a::after{
		content: '';
		position: absolute;
		top:50%;
		right:-28px;
		transform: translateY(-50%);
		background: url(../img/ico_link_blank.svg) no-repeat center;
		width: 24px;
		height: 24px
	}

	.header-mo__lnb{
		display: none
	}

	.header-mo__lnb-li{
		position: relative;
		padding: 0 40px
	}

	.header-mo__lnb-sub{
		padding: 0 60px
	}

	.header-mo__lnb-li::before{
		content: '';
		margin-right: 8px;
		width: 4px;
		height: 4px;
		border-radius: 10px;
		background-color: var(--color-primary-70)
	}

	.header-mo__lnb-sub a::before{
		content: '-';
		margin-right: 8px
	}

	.header-mo__lnb-li, .header-mo__lnb-sub{
		transition: 0.3s
	}

	.header-mo__lnb-li:hover, .header-mo__lnb-sub:hover{
		background-color: var(--color-gray-05)
	}

	.header-mo__logout{
		margin-top: 40px;
		text-align: center;
	}

	.header-mo__logout a{
		color: var(--color-gray-60)
	}

	.header-mo__hr{
		height: 80px
	}

	.header-mo__nonmb-txt{
		color: var(--color-gray-60)
	}
}

@media all and (max-width:768px) {

	.footer__link{
		flex-direction: column;
		height: auto;
	}

	.footer__info{
		display: grid;
		grid-template-columns: repeat(3,1fr);
		gap:0;
		width: 100%;
	}

	.footer__info-li{
		display: inline-flex;
		align-items: center;
		justify-content: center;
		height: 56px;
	}

	.footer__site, .footer__site-btn, .footer__site-ul, .footer__site-li a{
		width:100%;
	}

	.header__gnb-store::after{
		content: '';
		position: absolute;
		top:50%;
		right:-28px;
		transform: translateY(-50%);
		background: url(../img/ico_link_blank.svg) no-repeat center;
		width: 24px;
		height: 24px
	}

	.footer__logo-grid{
		flex-direction: column;
		align-items: center;
		gap:20px;
	}

}

@media all and (max-width:500px) {
	.header-mo__item{
		width: 100%;
	}

	.footer__info{
		display: grid;
		grid-template-columns: repeat(1,1fr);
		gap:0;
		width: 100%;
	}	

}

@media all and (max-width:400px) {

}

	

@media all and (max-width:320px) {
	html{
		width:320px;
		overflow-x:auto;
		white-space:nowrap;
	}

}