@charset "utf-8";

body {
    color: #333;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.container {
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100svh;
    background: #F8F8F8;
}
.inner {
    max-width: 800px;
    width: 100%;
    background: #fff;
    padding: 0 20px;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.logo {
    width: 200px;
    margin: 0 auto 40px;
}
.logo img {
    width: 100%;
    height: auto;
}
.dotted {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 30px;
    margin-bottom: 35px;
}
.dotted span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    border-radius: 50%;
    animation: dottedAnime 2.5s ease-in-out 0s infinite normal;
}
@keyframes dottedAnime {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.8);
    }
    80% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}
.dotted span:nth-child(1) {
    animation-delay: 0s;
}
.dotted span:nth-child(2) {
    animation-delay: .5s;
}
.dotted span:nth-child(3) {
    animation-delay: 1s;
}
.text {
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .logo {
        width: 240px;
        margin-bottom: 55px;
    }
    .dotted {
        margin-bottom: 50px;
        gap: 0 40px;
    }
    .text {
        font-size: 18px;
        line-height: 1.8;
    }
}