<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

/* *******************************************************

	* ProjectName : Login, Join Page
	* FileName : member.css
	* Description : Member
	* First Date : 2023.06.23.

*********************************************************/

/* -------------------------------- 

Member Common Style

-------------------------------- */
#member_top {
	display: table;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100px;
	box-sizing: border-box;
}
#member_top.member_top_bg {
	background: url("../../images/bg/sub_visual_member.jpg")no-repeat center / cover;
}
#member_contents {
	display: block;
	overflow: hidden;
	width: 100%;
	min-height: calc(100vh - 135px);
	height: auto;
	background-color: #ffffff;
	padding: 120px 0 135px;
	box-sizing: border-box;
	text-align: center;
}
.memberCon_wrap {
	position: relative;
	width: 100%;
	max-width: 1300px;
	height: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}
h3.memberCon_tit {
	font-size: 60px;
	font-weight: 400;
	color: #000000;
}
p.memberCon_p {
	font-size: 20px;
	font-weight: 400;
	color: #000000;
	line-height: 26px;
	margin-top: 15px;
}
input[type="checkbox"] {
	display: none;
}
.f_cs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media (max-width: 1600px) {
	#member_top {
		height: 90px;
	}
}
@media (max-width: 1400px) {
	#member_top {
		height: 80px;
	}
}
@media (max-width: 1024px) {
	#member_top {
		height: 70px;
	}
}
@media (max-width: 576px) {
	#member_top {
		height: 65px;
	}
}

/* -------------------------------- 

Login Style

-------------------------------- */
.login_inner {
	display: block;
	width: 100%;
	max-width: 500px;
	margin: 50px auto 0;
}
.login_inputBox {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 60px;
	margin-bottom: 20px;
}
.login_inputBox &gt; input {
	display: flex;
	align-items: center;
	width: 100%;
	height: 60px;
	border-radius: 10px;
	border: 1px #dddddd solid;
	background-color: #ffffff;
	padding: 0 25px;
	font-size: 16px;
	font-weight: 700;
	box-sizing: border-box;
}
.login_inputBox &gt; input:focus {
	border: 2px #4badcd solid;
	color: #4badcd;
}
.login_inputBox &gt; input::placeholder {
	font-size: 16px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.3);
}
.check_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	text-align: left;
}
label.check {
	cursor: pointer;
}
label.check &gt; input + span.tit::before {
	content: "";
	display: block;
	background: url("../../images/icon/check.svg") no-repeat center;
	width: 25px;
	height: 25px;
	border-radius: 5px;
	border: 1px #dddddd solid;
	margin-right: 7px;
	margin-bottom: 3px;
	background-size: 13px;
	opacity: .7;
	box-sizing: border-box;
}
label.check &gt; input:checked + span.tit::before {
	content: "";
	display: block;
	background: url("../../images/icon/check_on.svg") no-repeat center;
	width: 25px;
	height: 25px;
	border-radius: 5px;
	border: 1px #4badcd solid;
	background-size: 13px;
	box-sizing: border-box;
}
label.check &gt; span.tit {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 14px;
	font-weight: 400;
}
.find_box &gt; a {
	position: relative;
	font-size: 14px;
	font-weight: 400;
	color: rgba(0, 0, 0, .5);
}
.find_box &gt; a:first-child {
	padding-right: 10px;
}
.find_box &gt; a:last-child {
	padding-left: 10px;
}
.find_box &gt; a + a::before {
	content: "";
	display: block;
	position: absolute;
	top: 1px;
	left: 0;
	width: 1px;
	height: 10px;
	background-color: rgba(0, 0, 0, .3);
}
.login_btnBox {
	display: block;
	overflow: hidden;
	width: 100%;
	margin: 40px auto 0;
}
.login_btnBox &gt; .btn_login {
	display: block;
	width: 100%;
	height: 60px;
	line-height: 60px;
	border-radius: 50px;
	background-color: #000000;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	box-sizing: border-box;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.login_btnBox &gt; .btn_login:hover {
	background-color: #4badcd;
}
.login_btnBox &gt; .btn_join {
	display: block;
	width: 100%;
	height: 60px;
	line-height: 60px;
	border-radius: 50px;
	background-color: #ffffff;
	border: 1px #000000 solid;
	font-size: 18px;
	font-weight: 700;
	color: #000000;
	box-sizing: border-box;
	margin-top: 10px;
	-webkit-transition: all .2s;
	transition: all .2s;
}
@media (max-width: 1400px) {
	#member_contents {
    padding: 100px 4% 115px;
	}
}
@media (max-width: 1200px) {
	h3.memberCon_tit {
    font-size: 52px;
	}
	p.memberCon_p {
    font-size: 18px;
    margin-top: 10px;
	}
}
@media (max-width: 1024px) {
	.login_inputBox {
    height: 55px;
    margin: 0 auto 15px;
	}
	.login_inputBox &gt; input {
    height: 55px;
	}
	.login_inputBox &gt; input,
	.login_inputBox &gt; input::placeholder {
		font-size: 14px;
	}
}
@media (max-width: 768px) {
	#member_contents {
    padding: 100px 7% 115px;
	}
	h3.memberCon_tit {
    font-size: 42px;
	}
	p.memberCon_p {
    font-size: 16px;
		line-height: 20px;
	}
}
@media (max-width: 576px) {
	#member_contents {
    padding: 80px 7% 95px;
	}
	h3.memberCon_tit {
    font-size: 36px;
	}
	.login_inputBox {
    height: 50px;
    margin: 0 auto 15px;
	}
	.login_inputBox &gt; input {
    height: 50px;
	}
	label.check &gt; input + span.tit::before,
	label.check &gt; input:checked + span.tit::before {
    width: 19px;
    height: 19px;
    margin-right: 7px;
    background-size: 10px;
	}
	label.check &gt; span.tit {
    font-size: 13px;
	}
	.find_box &gt; a {
    font-size: 13px;
	}
	.login_btnBox &gt; .btn_login,
	.login_btnBox &gt; .btn_join {
		height: 50px;
		line-height: 50px;
		font-size: 16px;
	}
}
/* -------------------------------- 

Join Step Style

-------------------------------- */
.join_inner {
	display: block;
	width: 100%;
	max-width: 900px;
	margin: 50px auto 0;
}
ul.step_box {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 60px;
}
ul.step_box &gt; li {
	display: inline-block;
	position: relative;
	text-align: center;
	width: 55px;
	padding: 0 30px;
}
ul.step_box &gt; li:first-child {
	padding-left: 0;
}
ul.step_box &gt; li:last-child {
	padding-right: 0;
}
ul.step_box &gt; li::before {
	content: "";
	position: absolute;
	left: -4px;
	top: 23px;
	width: 40px;
	height: 1px;
	background-color: #e0e0e0;
}
ul.step_box &gt; li::after {
	content: "";
	position: absolute;
	right: -4px;
	top: 23px;
	width: 40px;
	height: 1px;
	background-color: #e0e0e0;
}
ul.step_box &gt; li:first-child::before {
	display: none;
}
ul.step_box &gt; li:last-child::after {
	display: none;
}
ul.step_box &gt; li &gt; span.stepNum {
	display: block;
	width: 45px;
	height: 45px;
	border-radius: 25px;
	border: 1px #cccccc solid;
	background-color: #ffffff;
	font-size: 22px;
	font-weight: 700;
	line-height: 48px;
	color: #aaaaaa;
	text-align: center;
	margin: 0 auto 10px;
	box-sizing: border-box;
}
ul.step_box &gt; li &gt; span {
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	color: #aaaaaa;
}
ul.step_box &gt; li.step_on &gt; span.stepNum {
	border: 1px #4badcd solid;
}
ul.step_box &gt; li.step_on &gt; span {
	color: #4badcd;
}
/** Add 2023.07.06. **/
.join_txt {
	display: block;
	margin-bottom: 10px;
	text-align: left;
}
.join_txt &gt; p {
	font-size: 24px;
	font-weight: 400;
	color: #000000;
	line-height: 30px;
}
.join_txt &gt; p &gt; span {
	color: #4badcd;
}
.joinForm_box {
	width: 100%;
	height: auto;
	border-top: 1px #000000 solid;
	border-bottom: 1px #dddddd solid;
	padding: 40px 0 20px;
	text-align: left;
}
.checks {
	margin-bottom: 20px;
}
.txtArea {
	display: block;
	width: 100%;
	height: 200px;
	background: #ffffff;
	border: 1px #e0e0e0 solid;
	padding: 15px;
	color: #666666;
	overflow-y: scroll;
	margin-top: -10px;
	margin-bottom: 20px;
	line-height: 1.5em;
	box-sizing: border-box;
}
.txtArea &gt; h3 {
	font-size: 15px;
	font-weight: bold;
	line-height: 24px;
}
.txtArea &gt; p {
	font-size: 13px;
	line-height: 20px;
	margin-bottom:20px;
}
.join_btnBox {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 100%;
	margin-top: 40px;
}
.join_btnBox &gt; button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 60px;
	line-height: 60px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 400;
	margin: 0 7px;
	box-sizing: border-box;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.join_btnBox &gt; .btn_cancle {
	background-color: #ffffff;
	border: 1px #000000 solid;
	color: #000000;
}
.join_btnBox &gt; .btn_done {
	background-color: #000000;
	color: #ffffff;
}
.join_btnBox &gt; .btn_done:hover {
	background-color: #4badcd;
}
.join_btnBox &gt; .btn_done:disabled {
	background-color: #e0e0e0;
	color: #000000;
	cursor: default;
}
@media (max-width: 1024px) {
	/** Add 2023.07.06. **/
	.join_txt &gt; p {
    font-size: 20px;
    line-height: 26px;
	}
	.joinForm_box {
    padding: 25px 0 20px;
	}
}
@media (max-width: 768px) {
	.join_inner {
    margin: 40px auto 0;
	}
	ul.step_box {
    margin-bottom: 50px;
	}
	ul.step_box &gt; li {
    width: 50px;
    padding: 0 20px;
	}
	ul.step_box &gt; li &gt; span.stepNum {
    display: block;
    width: 40px;
    height: 40px;
    font-size: 20px;
		line-height: 45px;
	}
	ul.step_box &gt; li::before {
    top: 20px;
    width: 30px;
	}
	ul.step_box &gt; li::after {
    top: 20px;
    width: 30px;
	}
	/** Add 2023.07.06. **/
	.join_txt &gt; p {
    font-size: 18px;
    line-height: 22px;
	}
	.join_btnBox {
		margin-top: 30px;
	}
	.join_btnBox &gt; button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    font-weight: 400;
	}
	.txtArea &gt; h3 {
		font-size: 13px;
		line-height: 20px;
	}
	.txtArea &gt; p {
		font-size: 12px;
		line-height: 17px;
	}
}
@media (max-width: 576px) {
	.joinForm_box {
    padding: 20px 0 20px;
	}
}
/* -------------------------------- 

Join Input Style

-------------------------------- */
ul.joinInput {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 30px;
}
ul.joinInput &gt; li.ji_name {
	width: 15%;
	margin-top: 23px;
}
ul.joinInput &gt; li.ji_name &gt; span {
	font-size: 16px;
	font-weight: 400;
	color: #000000;
}
ul.joinInput &gt; li.ji_input {
	width: 85%;
}
.inputbox {
	display: block;
	width: 100%;
}
.inputbox.wd630 {
	display: inline-block;
	width: 630px;
}
.inputbox.mt10 {
	margin-top: 10px;
}
.inputbox &gt; input {
	width: 100%;
	height: 60px;
	line-height: 60px;
	border-radius: 10px;
	border: 0.1rem #dddddd solid;
	font-size: 16px;
	padding: 0 25px;
	color: #1D1D1B;
	box-sizing: border-box;
}
.inputbox &gt; input:focus {
	border: 0.1rem #000000 solid;
	color: #000000;
}
.inputbox &gt; input::placeholder {
	font-size: 16px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.3);
}
.input_info {
	display: block;
	margin-top: 10px;
	font-size: 14px;
	font-weight: 400;
	color: #666666;
	line-height: 18px;
}
.btn_ji {
	display: inline-block;
	width: 120px;
	height: 60px;
	line-height: 60px;
	border-radius: 10px;
	background-color: #000000;
	font-size: 18px;
	font-weight: 400;
	color: #ffffff;
	text-align: center;
	margin-left: 10px;
	box-sizing: border-box;
}
@media (max-width: 1024px) {
	ul.joinInput {
		flex-direction: column;
	}
	ul.joinInput &gt; li.ji_name {
    width: 100%;
    margin-top: 20px;
		margin-bottom: 10px;
	}
	.inputbox.wd630 {
		width: calc(100% - 8.4rem);
	}
	ul.joinInput &gt; li.ji_input {
    width: 100%;
	}
	.inputbox &gt; input {
    height: 55px;
    line-height: 55px;
    font-size: 15px;
    padding: 0 20px;
	}
	.inputbox &gt; input::placeholder {
		font-size: 15px
	}
	.btn_ji {
    width: 120px;
    height: 55px;
    line-height: 55px;
    font-size: 16px;
	}
}
@media (max-width: 768px) {
	ul.joinInput {
    margin-bottom: 20px;
	}
	.inputbox.wd630 {
    width: calc(100% - 7.7rem);
	}
	.inputbox &gt; input {
    height: 50px;
    line-height: 50px;
    font-size: 14px;
		padding: 0 15px;
	}
	.inputbox &gt; input::placeholder {
		font-size: 14px
	}
	.btn_ji {
    width: 110px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
	}
}
@media (max-width: 576px) {
	.inputbox.wd630 {
    width: 100%;
	}
	.inputbox &gt; input {
    height: 47px;
    line-height: 47px;
	}
	.inputbox &gt; input::placeholder {
		font-size: 13px
	}
	.btn_ji {
		display: block;
    height: 47px;
    line-height: 47px;
		margin-left: 0;
		margin-top: 7px;
	}
}
/* -------------------------------- 

Join Complete Style

-------------------------------- */
.jc_txtBox {
	display: block;
	margin-top: 25px;
	text-align: center;
}
.jc_txtBox &gt; h4 {
	font-size: 46px;
	font-weight: 700;
	color: #4badcd;
	line-height: 54px;
}
.jc_txtBox &gt; p {
	font-size: 18px;
	font-weight: 400;
	color: #000000;
	line-height: 30px;
	margin-top: 20px;
}
.jc_txtBox2 {
	display: block;
	margin-top: 10px;
	text-align: center;
}
.jc_txtBox2 &gt; p {
	font-size: 18px;
	font-weight: 400;
	color: #000000;
	line-height: 24px;
	margin-top: 10px;
}
.jc_txtBox2 &gt; p.id_find_p {
	font-size: 22px;
	font-weight: 700;
	color: #000000;
	line-height: 30px;
	margin-top: 0;
}
.jc_accountBox {
	display: block;
	width: 100%;
	padding: 40px 20px;
	margin: 30px 0;
	background-color: #f5f5f5;
	border-radius: 10px;
	text-align: center;
	box-sizing: border-box;
}
.jc_accountBox &gt; p {
	font-size: 24px;
	font-weight: 700;
	line-height: 34px;
}
.jc_accountBox &gt; p.id_email {
	font-size: 24px;
	font-weight: 700;
	color: #000000;
	line-height: 38px;
}
.jc_accountBox &gt; p.date {
	display: block;
	font-size: 18px;
	font-weight: 400;
	color: #000000;
	line-height: 24px;
	margin-top: 7px;
}
.jc_txtBtm {
	display: block;
	margin-bottom: 30px;
	text-align: center;
}
.jc_txtBtm &gt; p {
	font-size: 18px;
	font-weight: 400;
	color: #000000;
	line-height: 30px;
}
.jc_p {
	display: block;
}
.jc_m {
	display: none;
}
@media (max-width: 1024px) {
	.jc_txtBtm {
    margin-bottom: 20px;
	}
	.jc_txtBox2 {
		margin-top: 20px
	}
}
@media (max-width: 768px) {
	.jc_txtBox &gt; h4 {
    font-size: 42px;
    line-height: 50px;
	}
	.jc_txtBox &gt; p,
	.jc_txtBtm &gt; p {
    font-size: 16px;
    line-height: 26px;
	}
	.jc_txtBox2 &gt; p {
    font-size: 16px;
    line-height: 22px;
    margin-top: 7px;
	}
	.jc_txtBox2 &gt; p.id_find_p {
    font-size: 20px;
    line-height: 28px;
	}
	.jc_accountBox &gt; p {
    font-size: 20px;
    line-height: 32px;
	}
	.jc_p {
		display: none;
	}
	.jc_m {
		display: block;
	}
}
@media (max-width: 576px) {
	.jc_txtBox &gt; h4 {
    font-size: 38px;
    line-height: 46px;
	}
	.jc_txtBox &gt; p,
	.jc_txtBtm &gt; p {
    font-size: 14px;
    line-height: 22px;
	}
	.jc_txtBox2 &gt; p {
    font-size: 14px;
    line-height: 18px;
	}
	.jc_txtBox2 &gt; p.id_find_p {
    font-size: 18px;
    line-height: 24px;
	}
	.jc_accountBox &gt; p.id_email {
    font-size: 20px;
    line-height: 30px;
	}
	.jc_accountBox &gt; p.date {
    font-size: 14px;
    line-height: 20px;
	}
}
/* -------------------------------- 

Member Style

-------------------------------- */
.member_txt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin: 0 auto 10px;
}
.member_txt &gt; p {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 24px;
	font-weight: 400;
	color: #000000;
}
.member_withdrawal {
	display: flex;
}
.member_withdrawal &gt; button {
	width: 100%;
	max-width: 85px;
	height: 35px;
	font-size: 14px;
	color: #000000;
	line-height: 35px;
	padding: 0 15px;
	border: 1px #000000 solid;
	border-radius: 5px;
	vertical-align: middle;
}
.member_info {
	margin-top: 23px;
}
.member_info &gt; span {
	font-size: 16px;
    font-weight: 400;
    color: #000000;
}
@media (max-width: 1024px) {
	.member_txt &gt; p {
		font-size: 20px;
	}
}
@media (max-width: 768px) {
	.member_txt &gt; p {
		font-size: 18px;
	}
	.member_withdrawal &gt; button {
		height: 30px;
		font-size: 13px;
		color: #000000;
		line-height: 30px;
		padding: 0 10px;
	}
}

/** 2023.11.29. Add **/
.join_top_select {
	display: flex;
	position: relative;
	width: 100%;
}
.join_top_select &gt; select {
	position: relative;
	width: 100%;
	height: 60px;
	padding: 0 60px 0 25px;
	font-size: 16px;
	color: #444444;
	line-height: 60px;
	border: 1px #dddddd solid ;
	border-radius: 10px;
	vertical-align: middle;
	box-sizing: border-box;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: url("../../images/icon/icon_arrow_down.svg") no-repeat 98% 50% / 22px auto;
}
.join_top_select &gt; select::-ms-expand {
	display: none;
}
.join_top_select &gt; select:focus {
	border: 1px #222222 solid;
}
@media (max-width: 1024px) {
	.join_top_select &gt; select {
		height: 55px;
		padding: 0 50px 0 20px;
		font-size: 15px;
		line-height: 55px;
	}
}
@media (max-width: 768px) {
	.join_top_select &gt; select {
		height: 50px;
		padding: 0 45px 0 15px;
		font-size: 14px;
		line-height: 50px;
	}
}
@media (max-width: 576px) {
	.join_top_select &gt; select {
		height: 47px;
		line-height: 47px;
	}
}</pre></body></html>