/*미디어 쿼리 ios*/
                    /*width 기준*/
/*아이폰 8, mini*/
@media all and (max-width:380px) {}
/*아이폰 12, 13 , max */
@media all and (min-width:381px) {}

                    /* height 기준*/
/*아이폰8*/
@media all and (max-height:668px) {}
/*아이폰 12, 13 mini , 12,13*/
@media all and (min-height:668px) and (max-height:840px ){}
/*아이폰 12max, 13max*/
@media all and (min-height:841px) {}
/* 배너 밀림 방지 */
html, body{
	height: 100vh;
	height: webkit-fill-available;
}
/*메인 컬러*/
:root{
	/*--main-color : #008080;*/
	--main-color : #2b9a69;
	--joinMain-color : #f9ae00;
	--joinSub1-color : #f6f1db;
	--joinSub2-color : #fffcf4;
}
.red-color{
	color: red;
}
/*사파리 기본 스타일 제거 */
input,textarea,button{
	appearance: none;
	border-radius: 0;
	-moz-appearance: none;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}
input[type=radio]{
	appearance: auto;
}
/*숨기는 class*/
.hide-class {
	width: 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	position: absolute;
	visibility: hidden;
}
/** 그냥 top-btn 뒤로가기 < */
.top-btn{
	position: absolute;
	left:10px;
	top:50%;
	transform: translateY(-50%);
	z-index: 9;
}

/*아이폰8*/
@media all and (max-height:668px) {
	.top-btn.mem-btn{
		top: calc( constant(safe-area-inset-top) + 40%);
		top: calc( env(safe-area-inset-top) + 40%);
	}
}
/*아이폰 12, 13 mini , 12 , 13 까지*/
@media all and (min-height:668px) and (max-height:850px ){
	.top-btn.mem-btn{
		top: calc( constant(safe-area-inset-top) + 30%);
		top: calc( env(safe-area-inset-top) + 30%);
	}
}
/*아이폰 12max, max*/
@media all and (min-height:851px) {
	.top-btn.mem-btn{
		top: calc( constant(safe-area-inset-top) + 25%);
		top: calc( env(safe-area-inset-top) + 25%);
	}
}
.top-btn button{
	border: none;
	background-color: transparent;
	width: 50px;
	height: 50px;
}

.top-btn button img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/* x버튼 만들기 */
.x-btn{
	width: 100%;
	position: absolute;
	right: 0px;
	bottom: 0px;
}
.x-btn p{
	width: 30px;
	height: 30px;
	position: relative;
	display: inline-block;
}
.x-btn p::after{
	display: inline-block;
	content :"\00d7";
	font-size: 30px;
}
/* x버튼 왼쪽 */
.top-btn.x-btn-box button p{
	color: #999;
}
.top-btn.x-btn-box{
	position: absolute;
	left:20px;
	top:2px;
	z-index: 9;
}
.nav-menu-header .top-btn.x-btn-box button{
	width: 30px;
	height: 30px;
}
.top-btn.x-btn-box{
	position: absolute;
	left:20px;
	top:50%;
	transform: translateY(-50%);
	z-index: 9;
}
/* x버튼 오른쪽 */
.btn-group-close{
	position: absolute;
	right: 20px;
	top:  50%;
	transform: translateY(-50%);
}
.btn-group-close button{
	background-color: transparent;
	border: none;
	color: #fff;
	width: 30px;
	height: 30px;
}
.nav-menu-header{
	width: 100%;
	/*border-bottom:1px solid #707070;*/
	background-color: #fff;
	position: relative;
	margin-top: calc(constant(safe-area-inset-top) + 7vh); /* iOS 11.0 */
	margin-top: calc(env(safe-area-inset-top) + 7vh); /* iOS 11+ */
	height: 10vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nav-menu-header.no-margin-header{
	margin-top: constant(safe-area-inset-top);
	margin-top: env(safe-area-inset-top);
	/*margin-top: 0vh;*/
}
.nav-menu-header h1{
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	color: #000;
	font-family: "Pretendard-Bold", sans-serif;
}
.nav-menu-body{
	width: 89%;
	height: 100%;
	margin-top:calc(constant(safe-area-inset-top) + 17vh);
	margin-top:calc(env(safe-area-inset-top) + 17vh);
	margin-right: auto;
	margin-left: auto;
	padding-bottom:calc(constant(safe-area-inset-bottom) + 12vh);
	padding-bottom:calc(env(safe-area-inset-bottom) + 12vh);
	/*min-height: calc(83vh - constant(safe-area-inset-top) );*/
	/*min-height: calc(83vh - env(safe-area-inset-top));*/
}
.nav-menu-body>p{
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.7em;
	margin : 15px 0;
}
.nav-menu-body>span{
	font-size: 2rem;
	font-weight: 400;
}

.nav-menu-footer{
	position: fixed;
	left:0;
	bottom: 15vh;
	width: 100%;
	height: 8vh;
	display: flex;
	align-items: center;
}

/*회원가입 공통*/
.memb-join-title{
	position: fixed;
	left: 0;
	top: 0;
	padding-top: constant(safe-area-inset-top); /* iOS 11.0 */
	padding-top: env(safe-area-inset-top); /* iOS 11+ */
	width: 100%;
	background-color: #fff;
	border-bottom: 2px solid #000;
}
.memb-join-title h1{
	font-weight: 700;
	font-size: 16px;
	padding: 20px 0;
	text-align: center;
	font-family: "Pretendard-Bold", sans-serif;
}
.join-footer {
	height: 60px;
}
.footer-join-group{
	margin: 0 auto;
	width: 100%;
	height: 60px;
	position: fixed;
	left: 0;
	bottom: 0;
	padding-bottom: constant(safe-area-inset-bottom); /* iOS 11.0 */
	padding-bottom: env(safe-area-inset-bottom); /* iOS 11+ */
	text-align: center;
	background-color: #fff;
	/*border-top: 1px solid #000;*/
}

.footer-join-group .footer-join-btn button{
	background-color: #c0c0c0;
	width: 80%;
	height: 40px;
	margin: 10px 0;
	cursor: pointer;
	color: #ffffff;
	border:none;
	font-size: 2rem;
	font-family: "Pretendard-Medium", 'NanumBarunpenB', sans-serif;
	border-radius: 35px;
}
/*회원가입 공통 뒤로가기 버튼*/
.join-back{
	position: fixed;
	top:15px;
	left:10px;
	z-index: 1;
}
button.btn-join-cancel{
	width: 30px;
	height: 30px;
	background-color: transparent;
	border:none;
}
.join-back button.btn-join-cancel img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
button.on-btn{
	background-color: var(--main-color) !important;
	transition: all 0.5s;
}
li.active-btn{
	background-color: var(--main-color) !important;
}
.main-contents-ul .main-contents-li.highlight{
	border-top : 1px solid #707070;
	border-bottom : 1px solid #707070;
}