@charset "utf-8";
.login-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}
.login-form-area, .first-time-area {
    flex: 1;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #ddd;
}
.login-form-area h3, .first-time-area h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}
.login-form {
    margin-top: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}
.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
.form-checkbox {
    margin: 20px 0;
}
.form-checkbox input[type="checkbox"] {
    margin-right: 8px;
}
.btn-login {
    background-color: #333;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}
.btn-login:hover {
    background-color: #555;
}
.forgot-password {
    margin-top: 20px;
}
.forgot-password a {
    color: #007bff;
    text-decoration: none;
}
.forgot-password a:hover {
    text-decoration: underline;
}

.arrow-banner {
    padding: 1.5em 2em;
    background-color: #E83A78;
    color: white !important;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 50% 100%, 0% 80%);
    transition: all 0.3s ease;
    display: block;
    width: fit-content;
    margin: 0 auto;
    cursor: pointer;
    margin-top: 20px;
}

/* ホバー時の効果 */
.arrow-banner:hover {
    background-color: #d12a6d;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
html {
    scroll-behavior: smooth;
}