/* ↓2025/07/29 */
.login-content{
    display: flex;
    flex-direction: column;
    padding: 8px 8px 16px;
    gap: 8px;
}
.login-content+.login-content{
    padding: 16px 8px;
    border-top: 1px solid #ccc;
}

.login-header{
    font-weight: bold;
    font-size: 14px;
    line-height: 1;
}
.login-info{
    font-size: 12px;
    line-height: 1.5em;
}
.login-info>._colorHeaven{
    color: #FA8E00;
    font-weight: bold;
}
.login-info>._colorJob{
    color: #2088FE;
    font-weight: bold;
}
.login-heaven-button{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #FFFFFF;
    border: 2px solid #E4000C;
    font-size: 14px;
    line-height: 1;
    font-weight: bold;
    padding: 4px 8px;
    color: #E4000C;
    border-radius: 5px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.14);
    gap: 4px;
}
.login-heaven-button>img{
    height: 32px;

}
.login-heaven-button>._text{
    font-size: 12px;
}
.login-body{
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 0 8px;
    font-size: 12px;
    line-height: 1.5em;
    color: #555555;
}
.login-open{
    padding: 16px 0;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    position: relative;
    cursor: pointer;
}
.login-open::after{
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    right: 8px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #555555;
    border-right: 2px solid #555555;
    transform: rotate(45deg) translateY(-50%);
}

.login-open.is-active::after{
    transform: rotate(-135deg) translateY(-50%);
}
.login-form{
    display: none;
}
.login-open.is-active+.login-form{
    display: block;
}
.login-form .loginButton{
    display: flex;
    justify-content: center;
    padding: 8px 0 16px;
}
.registButton{
    display: flex;
    justify-content: center;
    padding-bottom: 16px;
}
/* ↑2025/07/29 */