/* Reset CSS */

:root {
    /* 英語フォント */
    --font-lato: 'Lato';
    --font-inter: 'Inter';
    --font-open-sans: 'Open Sans';
    --font-caveat: 'Caveat';
    
    /* 日本語フォント */
    --font-noto-sans: 'Noto Sans JP';
    /*--font-noto-serif: 'Noto Serif JP';*/

    --font-gothic-mb-bold: 'ゴシックMB101 B JIS2004';
    --font-gothic-mb-medium: 'ゴシックMB101 M JIS2004';
    
    /* フォントの組み合わせ */
    --font-base: Inter, 'Noto Sans JP';
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    color: #333;
    font-family: var(--font-base);
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Additional Reset */
* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

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

input, textarea, select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

img {
    vertical-align: top;
    font-size: 0;
    line-height: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}
