#contentArea {
    margin-top: 195px;
    margin-bottom: 95px;
}
.today_open {
    display: none;
}
.login_wrap {
    width: 100%;
    max-width: 640px;
    padding: 10px;
    margin: 0 auto;
    
}
.login_wrap h3 {
    text-align: center;
    font-size: 2em;
    font-weight: 500;
    margin-bottom: 85px;
}
.login_tab {
    overflow: hidden;
    margin-bottom: 30px;
}
.login_tab li {
    float: left;
    width: 50%;
}
.login_tab li a {
    display: block;
    padding: 15px 0;
    text-align: center;
    font-weight: 500;
    color: #c4c4c4;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-bottom: 1px solid #000;
}
.login_tab li a.on {
    border: 1px solid #000;
    border-bottom: none;
    background: #fff;
    color: #444;
}
.login_form {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}
.input_box {
    width: 470px;
}
.input_box ul li {
    margin-bottom: 20px;
}
.input_box ul li input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    padding-left: 10px;
}
.input_box ul li input::placeholder {
    font-size: .875em;
    font-weight: 100;
    color: #666;
}
/* IE10 이상을 위한 css */
.input_box ul li input::placeholder {
    opacity: 1;
    font-size: .875em;
    font-weight: 100;
    color: #666;
}
.input_box ul li input::-webkit-input-placeholder {
    font-size: .875em;
    font-weight: 100;
    color: #666;
}
/* IE */
.input_box ul li input:-ms-input-placeholder {
    font-size: .875em;
    font-weight: 100;
    color: #666;
}
/* Firefox */
.input_box ul li input:-mos-input-placeholder {
    font-size: .875em;
    font-weight: 100;
    color: #666;
}
.input_box .user_search {
    display: flex;
    justify-content: space-between;
}
.user_search a {
    display: block;
    width: 50%;
    font-size: .813em;
    font-weight: 300;
    box-sizing: border-box;
    padding-left: 8px;
}
.user_search input[type=checkbox] {
    display: none;
}
.user_search input[type=checkbox] + label {
    display: block;
    text-align: right;
    position: relative;
    font-size: .813em;
    font-weight: 300;
}
.user_search input[type=checkbox] + label::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    position: absolute;
    left: -15px;
    top: 50%;
    margin-top: -6px;
}
.user_search input[type=checkbox]:checked + label::before {
    content: '\2714';
    display: block;
    position: absolute;
    left: -14px;
    top: 2px;
    font-size: .813em;
}
.login_form .btn_box button{
    display: block;
    width: 100px;
    height: 130px;
    line-height: 144px;
    background: #000;
    color: #fff;
    font: 700 1em 'Noto Sans KR', sans-serif;;
    border: none;
    cursor: pointer;
    margin-left: 10px;
}
.member_box {
    padding: 45px 30px;
    position: relative;
    background: #f4f4f4;
    word-break: keep-all;
}
.member_box p {
    position: relative;
    font-size: .938em;
    font-weight: 300;
    padding-left: 15px;
}
.member_box p::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: #c9c9c9;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
    border-radius: 50%;
}
.member_box a {
    display: block;
    font-size: .938em;
    font-weight: 500;
    width: 90px;
    position: absolute;
    right: 30px;
    top: 40%;
}
@media(max-width:450px){
    .member_box a{
        top: 65%;
    }
}
.member_box a img {
    margin-top: 6px;
    margin-left: 5px;
}