/* 基本（読みやすい定番） */
:root{
    --font-sans: "Inter", "Noto Sans JP", system-ui, -apple-system, "Segoe UI",
    Roboto, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;

    /* かわいい丸み（UI/Loading向き） */
    --font-rounded: "Nunito", "M PLUS Rounded 1c", "Noto Sans JP", system-ui, sans-serif;
}

body{
    font-family: var(--font-rounded);
    font-weight: 400;
}

/* 見出しは少し太め */
h1{
    font-family: var(--font-rounded);
    font-weight: 700;
    color:#E61F93;
 /*   -webkit-text-stroke: 2px #E99ED2;
    text-stroke: 2px #E99ED2;*/
    text-shadow: 2px 2px 0 #E99ED2;
}

/* ローディング表示は丸み系が合う */
.loading{
    font-family: var(--font-rounded);
    font-weight: 600;
    letter-spacing: 0.02em;
}