/* modern-css-reset v1.4.0 (Andy Bell) */

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
* {
    margin: 0;
}

/* Remove list styles */
ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Improve text rendering */
html:focus-within {
    scroll-behavior: smooth;
}

/* Remove default padding */
ul,
ol {
    padding: 0;
}

/* Remove built-in form typography styles */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove animations if user prefers reduced motion */
@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;
    }
}

a {
	color: inherit;        /* 親要素の文字色を継承 */
	text-decoration: none; /* 下線を消す */
	background-color: transparent; /* IEの古い青背景防止 */
}