/* ===== モダンリセット ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    line-height: 1.5;
}
body {
    margin: 0;
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
    margin: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}
button {
    cursor: pointer;
}
button:disabled {
    cursor: not-allowed;
}
a {
    color: inherit;
    text-decoration: none;
}
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}
img {
    border-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}
legend {
    padding: 0;
}
[hidden] {
    display: none !important;
}
:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}
}
