.login {
	padding: 120px 0;
	box-sizing: border-box;
}
.login h2 {
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 30px;
}
.login .form {
	gap: 20px;
}
.login .form .item {
	border: 1px solid rgba(0,0,0,0.5);
	padding: 10px 20px;
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 1.2px;
	gap: 12px;
	box-sizing: border-box;
}
.login .form .item input[type=text] {
	flex: 1;
    width: 100%;
    height: 54px;
    font-size: 2.4rem;
	background: transparent;
    box-sizing: border-box;
}
.form .item .time {
	color: #D80000;
	font-weight: 400;
	font-size: 2rem;
	line-height: 1.4;
	letter-spacing: 1px;
}
.login .form .item button {
	height: 36px;
	background: #CDCDCD;
	font-size: 2.4rem;
	font-weight: 400;
	padding: 0 20px;
	box-sizing: border-box;
}
.login .form .item button.on {
	background: var(--black);
	color: var(--white);
}
.login .form > button {
	background: #CDCDCD;
	height: 64px;
	font-size: 3rem;
	font-weight: 700;
}
.login .form > button.on {
	background: var(--key-color);
	color: var(--white);
}
.login .cs_center {
	padding-top: 220px;
	font-size: 2.4rem;
	letter-spacing: 1.2px;
	gap: 10px;
}




.join {
	padding: 60px 0;
}
.join h2 {
	font-size: 4rem;
	letter-spacing: 2px;
	margin-bottom: 30px;
}
.join .form {
	gap: 30px;
}
.join .form .item {
	gap: 16px;
}
.join .form .item > p {
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 1.2px;
}
.join .form .item > div {
	border: 1px solid rgba(0,0,0,0.5);
	padding: 10px 20px;
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 1.2px;
	gap: 12px;
	background: var(--white);
	box-sizing: border-box;
}
.join .form .item > div.flex_col > * {
	border-bottom: 1px solid rgba(0,0,0,0.5);
}
.join .form .item > div.flex_col > *:last-child {
	border-bottom: 0;
}
.join .form .item input[type=text] {
	flex: 1;
    width: 100%;
    height: 34px;
    font-size: 2.4rem;
	background: transparent;
    box-sizing: border-box;
}
.join .form .item > div button {
	height: 36px;
	background: #CDCDCD;
	font-size: 1.8rem;
	font-weight: 400;
	padding: 0 20px;
	box-sizing: border-box;
}
.join .form .item > div button.on {
	background: var(--black);
	color: var(--white);
}
.join .form .item > div.birth input {
	max-width: 38px;
	text-align: center;
}
.join .form .item > div.birth input.year {
	max-width: 58px;
}
.join .form .item > div.radio {
	gap: 40px;
	padding: 17px 20px;
}
.join .form .item > div.radio > div {
	position: relative;
}
.join .form .item > div.radio > div input {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	z-index: -1;
}
.join .form .item > div.radio > div input + label {
	position: relative;
	font-size: 2.4rem;
	padding-left: 30px;
	box-sizing: border-box;
}
.join .form .item > div.radio > div input + label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid var(--black);
	box-sizing: border-box;
}
.join .form .item > div.radio > div input:checked + label:before {
	border: 1px solid var(--key-color);
}
.join .form .item > div.radio > div input:checked + label:after {
	content: '';
	position: absolute;
	top: 5px;
    left: 5px;
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--key-color);
	box-sizing: border-box;
}
.join .form .item select {
	height: 54px;
	font-size: 2.4rem;
	letter-spacing: 1.2px;
}
.join .add_form {
	gap: 20px;
}
.join .add_form .box {
	padding: 30px;
	background: var(--grayscale-50);
	gap: 30px;
	box-sizing: border-box;
}
.join .form > button {
	height: 64px;
	background: var(--grayscale-100);
	font-size: 2.4rem;
	font-weight: 500;
}
.join .agree_form ul {
	border-top: 1px dashed var(--black);
	border-bottom: 1px dashed var(--black);
	padding: 20px 0;
	font-size: 1.8rem;
	gap: 5px;
	box-sizing: border-box;
}
.join .agree_form ul strong {
	font-size: 2rem;
}
.join .agree_form .check_box {
	background: var(--grayscale-100);
	padding: 20px;
	box-sizing: border-box;
}
.join .agree_form .check_box .all_box {
	border-bottom: 1px solid #e4e4e4;
	padding-bottom: 10px;
}
.join .agree_form input[type=checkbox] {
	display: none;
}
.join .agree_form input[type=checkbox] + label {
	position: relative;
	display: inline-block;
	font-size: 2rem;
	padding-left: 25px;
	box-sizing: border-box;
}
.join .agree_form input[type=checkbox] + label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 18px;
	height: 18px;
	border: 1px solid var(--black);
	background: var(--white);
	box-sizing: border-box;
}
.join .agree_form input[type=checkbox]:checked + label:before {
	background: var(--key-color) url("../images/ic_check.svg")no-repeat 50% 50% / 12px;
	border: 1px solid var(--key-color);
}
.join .agree_form .day {
	font-size: 2.4rem;
	font-weight: 700;
	padding: 10px 0;
}
.join .agree_form .input_box > div {
	font-size: 2rem;
}
.join .agree_form .input_box > div input {
	flex: 1;
	width: 100%;
	height: 35px;
	padding: 0 10px;
	font-size: 2rem;
	box-sizing: border-box;
}
.join .agree_form .account {
    font-size: 2rem;
    border-top: 1px solid #e4e4e4;
    padding-top: 20px;
    text-align: center;
}
.join .join_btn {
	height: 52px;
	font-size: 2.4rem;
	font-weight: 700;
}


#select_pop .grid {
	gap: 10px;
	margin-top: 20px;
}
#select_pop .grid a {
    flex: 1;
    padding: 20px 0;
    text-align: center;
    background: #CDCDCD;
    font-size: 3rem;
    border-radius: 10px;
}


@media screen and (max-width: 1450px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
	.join .agree_form .input_box > div input {
		flex: none;
	}
}