@charset "utf-8";

.contain{
	position: relative;
	display: block;
}
#Head{
	position: relative;
	overflow: hidden;
	padding: 62px 0 59px;
	box-sizing: border-box;
}
.join_membership{
	padding-bottom: 20px;
}
.h_logo{
	display: block;
	overflow: hidden;
	width: 240px;
	height: 50px;
	margin: 0 auto;
	background: url(../img/logo2.png) no-repeat center/cover;
}
/*메시지박스*/
.msg{
    display: block;
    width: 100px;
    height: 12px;
    line-height: 15px;
    font-size: 12px;
    font-weight: 400;
    color: #f05a28;
    white-space: nowrap;/*줄바꿈방지!*/
}

/* 입력폼 전체박스 */
#meminfo{
    width: 340px;
/*    height: 464px;*/
/*    border: 2px solid #ccc;*/
/*    border-radius: 10px;*/
    margin: 0 auto;
    box-sizing: border-box;/*크기유지*/
}
#meminfo ul{
    width: 100%;
    height: 100%;
    font-size: 1em;
    font-weight: 500;
    color: #373737;
}
#meminfo ul li{
    position: relative;/*부모자격*/
    width: 100%;
    height: 90px;
    /*line-height: 50px;*//*글자세로중앙*/
}
#meminfo ul li:last-child{
	margin-bottom: 10%;
}
/*라벨공통*/
#meminfo ul li label{
    display: block;
    width: 200px;
	padding-bottom: 10px;
}
/*
#meminfo ul li:nth-child(5){
	height: 45px;
}
#meminfo ul li:nth-child(5) label{
	display: inline-block;
	width: 100px;
}
*/
/*입력박스공통*/
#meminfo ul li input[type=text],
#meminfo ul li input[type=password]{
    width: 340px;
    height: 36px;
    font-size: 1em;
    border: 1px solid #737373;
/*    border-radius: 5px;*/
    padding-left: 5px;
}
/*라디오버튼*/
#meminfo ul li input[type=radio]{
    width: 20px;
    height: 20px;
    vertical-align: -4px;
    margin-right: 20px;
}
/*

CSS 속성선택자
태그선택자 뒤에 대괄호[] 안에 속성을 표시하면 선택폭을 줄여준다
[속성명=값] 속성명의 값이 설정된 값과 같을 경우
[속성명^=값] 속성명의 값이 설정된 값으로 시작될 경우
[속성명$=값] 속성명의 값이 설정된 값으로 끝날 경우
[속성명*=값] 속성명의 값 중에 설정된 값이 있기만 하면
주의사항: != 은 제이쿼리에서만 사용

*/

/*이메일 입력창*/
#email1{
    width: 170px !important;/*우선적용*/
}
/*이메일 선택박스*/
#seleml{
	float: right;
    width: 146px;
    height: 36px;
    border: 1px solid #737373;
/*    border-radius: 5px;*/
    font-size: 1em;
}
/*이메일 직접입력창*/
#email2{
    width: 146px !important;
    float: right;
    display: none;/*처음에 안보이게*/
}
/*가입하기버튼*/
#btnj{
    position: absolute;
    width: 100%;
    height: 40px;
    border: 1px solid #737373;
    color: #fff;
    font-size: 1em;
    background: #151517;
}

/*약관동의박스*/
#conf{
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 600px;
/*    border: 2px solid #ccc;*/
/*    border-radius: 10px;*/
    box-sizing: border-box;
    background-color: #fff;
	display: none;
}

/*동의,비동의 버튼박스*/
.YNbox{
    text-align: center;
}
/*동의,비동의 버튼*/
.YNbox>button{
    width: 113px;
    height: 40px;
    border:1px solid #737373;
    border-radius: 5px;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    background: linear-gradient(to bottom, #ddd, #555);
    margin: 0 20px;
    cursor: pointer;
}