@charset "UTF-8";
hr{
    margin-top: 60px;
}
.ta_center{
    text-align: center;
}
.ta_center img{
    width: 64px;
    display: block;
    margin: 0 auto 20px auto;
}
h3{
    font-size: 1.1rem;
    color: #333;
}
#member_login{
    display: flex;
    justify-content: space-around;
    width:100%;
    margin: 60px auto;
}
#member_login .login_form,
#member_login .new_member{
    width: 45%;
    padding: 40px 5%;
    border: 1px solid #ccc;
    background: rgba(255, 211, 65, 0.1);
}
#member_login form{
    max-width: 300px;
    margin: 0 auto;
}
#member_login input,
#member_login button{
    min-height: 60px;
    outline: none;
    padding:0;
    margin: 0;
    border-radius: 5px;
}
#member_login input{
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 5px 10px;
    margin: 10px 0;
}
#member_login input::placeholder{
    color: #aaa;
}
#member_login button{
    min-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background:#8b0000;
    border: 1px solid #8b0000;
    color: #fff;
    font-size: 100%;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: all ease .3s;
}
#member_login button:hover{
    opacity: 0.7;
}
#member_login .new_member{
    padding: 40px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#member_login .new_member .inner{
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
}
#member_login .new_member .inner p{
    margin-top: 74px;
}
#member_login .new_member_btn{
    border-radius: 5px;
    text-decoration: none;
    min-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-weight: bold;
    font-size: 100%;
    background:#8b0000;
    border: 1px solid #8b0000;
    color: #fff;
    text-align: center;
    transition: all ease .3s;
}
#member_login .new_member_btn:hover{
    opacity: 0.7;
}


#member_login .hidden{
    opacity: 0;
}
#member_login form .hidden input{
    appearance: none;
    min-height: auto;
    height: 0;
}

#member_login .error{
    margin: 10px 0;
    padding: 10px;
    background: rgba(139, 0, 0,0.1);
    font-size: 90%;
}
#member_login .error::before{
    content: "!";
    font-size: 80%;
    font-weight: bold;
    display: inline-block;
    margin-right: 7px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    border: 1px solid #8b0000;
    border-radius: 50%;
    color: #8b0000;
    text-align: center;
}

.logout_btn{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 80%;
    padding: 80px 0;
    border-top: 1px solid #818181;
    color: #333;
}
.logout_btn a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 110%;
    text-decoration: none;
    color: #fff;
    background-color: #000;
    border: 1px solid #000;
    border-radius:.2rem;
    line-height: 2;
    padding: 0 1rem;
    height: 3rem;
    margin-left: 30px;
    transition: all ease .3s;
}
.logout_btn a:hover{
    background: #fff;
    color: #000;
}

.logout_comp{
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width:0px) and (max-width:680px) {
    #member_login{
        width:100%;
        max-width: none;
        flex-direction: column;
	gap: 40px 0;
    }
    #member_login .login_form,
    #member_login .new_member{
        width: 100%;
    }
    .smf_left{
        text-align: left;
    }

    .logout_btn{
        flex-direction: column;
        gap: 20px;
    }
    .logout_btn a{
        margin-left: 0px;
    }

    #member_login .new_member{
        padding: 30px 15px;
    }
}


@media print{
    .logout_btn{
        display: none;
    }
}