*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
    margin: 0;
    letter-spacing: 0.4px;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #707070;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    width: 100%;
    border-radius: 4px;
}

p {
    font-weight: 300;
    line-height: 1.7;
}

h2,
h3 {
    font-weight: 400;
}


/* その他 */

.br {
    display: inline-block;
}


/* for responsive */

@media(prefers-reduced-motion:reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}