@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Edu+AU+VIC+WA+NT+Hand:wght@400&family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;600;700&display=swap');

:root {
    --main_color: #6ACAC4;
    --secondary_color: #C2E0DF;
    --black: #3E3C3C;
    --white: #fff;
    --noto-serif-jp: "Noto Serif JP", serif;
    --edu-au-vic-wa-nt-hand-: "Edu AU VIC WA NT Hand", cursive;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 1.4rem;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    text-decoration: none;
}

dl,
dd,
dd {
    margin: 0;
}

li {
    list-style: none;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

.edu {
    font-family: var(--edu-au-vic-wa-nt-hand-);
    line-height: 1.2;
    letter-spacing: 0.2rem;
}

.noto_serif {
    font-family: var(--noto-serif-jp);
}

.pc-only {
    display: initial;
}

.sp-only {
    display: none;
}

@media screen and (max-width:569px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: initial;
    }
}