/* A Modern CSS Reset */

*,
*::before,
*::after {
    box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
li,
table,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
select,
img,
svg,
video,
audio,
canvas,
iframe,
embed,
object,
map,
area,
hr,
pre,
abbr,
address,
b,
bdi,
bdo,
cite,
code,
data,
datalist,
del,
em {
    margin: 0;
    padding: 0;
    border: 0;
}
ul[role="list"],
ol[role="list"] {
    list-style: none;
}
html:focus-within {
    scroll-behavior: smooth;
}
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;
    overflow-x: hidden;
}
a:not([class]) {
    text-decoration-skip-ink: auto;
}
img,
picture {
    max-width: 100%;
    display: block;
}
input,
button,
textarea,
select {
    font: inherit;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

main {
    margin-top: 81px;
}

@media screen and (max-width: 768px) {
    main {
        margin-top: 54px;
    }
}