/* ボタンスタイル */
.btn {
    display: block;
    margin: 0 auto;
    padding: 0.5rem 1.2rem;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: var(--unit-color);
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.btn:hover {
    background-color: #555; /* or a slightly darker shade of var(--unit-color) */
}

.btn_center {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.btn_left {
    display: block;
    margin: 0;
    margin-top: 1rem;
}

.btn_short {
    display: inline-block;
    justify-content: center;
    /* display: flex; */
}

.login-button {
    display: inline-block;
    padding: 15px 30px;
    margin: 1em;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    width: 126px;
}

.google {
    background-color: #936a67;
}

.line {
    background-color: #83b497;
}
