* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Klee One", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "游ゴシック体", "Yu Gothic", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100dvh;
    background-color: #fff;
    color: #191817;
}

h1 {
    margin-top: calc(50dvh - 0.9rem);
    font-size: 1.8rem;
}
.logo {
    width: 9rem;
    height: auto;
    display: block;
    margin: 0 auto;
}

h2 {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    margin-bottom: 4rem;
}
p {
    width: 20rem;
    font-size: 0.9rem;
    color: #65625b;
    font-weight: 600;
    line-height: 1.35rem;
    margin-bottom: 0.6rem;
    background-color: #e8e7e5;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }
    .logo {
        width: 7.5rem;
    }

    h2 {
        font-size: 0.75rem;
        margin-bottom: 5rem;
    }
    p {
        width: 14rem;
        font-size: 0.75rem;
        line-height: 1.1rem;
        margin-bottom: 0.75rem;
    }
}