.home {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}

.home__container {
    text-align: center;
    max-width: 600px;
}

.home__title {
    font-size: 2.5rem;
    color: #666;
    margin-bottom: 10px;
}

.home__subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.home__links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.home__link {
    text-decoration: none;
    color: #F5F5F5;
    background-color: #007BFF;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 1.2rem;
    font-weight: bold;
}

.home__link--store {
    background-color: #17a2b8; /* 青緑色 */
}

.home__link--customer {
    background-color: #28a745; /* 緑色 */
}

.home__link--store:hover {
    background-color: #0056b3;
}

.home__link--customer:hover {
    background-color: #218838; /* 清潔感のある緑色 */
}

@media (max-width: 768px) {
    .home__title {
        font-size: 2rem;
    }

    .home__link {
        font-size: 1rem;
    }
}
