* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #0085AD, #0085AD);
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}
.container {
    animation: fadeIn 2s ease-in-out;
}
h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}
p {
    font-size: 1.2rem;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    width: 200px; /* PC向けデフォルトサイズ */
    height: auto;
    margin-bottom: 20px;
}
h1 {
    font-size: 2rem; /* PC向けデフォルトサイズ */
    margin-bottom: 10px;
}
p {
    font-size: 1.2rem; /* PC向けデフォルトサイズ */
}

@media (max-width: 768px) {
    .logo {
        width: 150px; /* スマホ用の小さいロゴ */
    }
    h1 {
        font-size: 1.5rem; /* スマホ用の小さいタイトル */
    }
    p {
        font-size: 0.8rem; /* スマホ用の小さいテキスト */
    }
}