/* ---------------------------------------------
*   web font
--------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap");
/* ---------------------------------------------
*   :root
--------------------------------------------- */
:root {
    --fc-theme-1: #424d99;
    --fc-theme-2: #004098;
    --fc-theme-3: #0099d9;
    --fc-theme-4: #0094a3;
    --ff-serif: Noto Serif JP, serif;
    --header-height: 73;
}
@media screen and (max-width: 768px) {
    :root {
        --header-height: 55;
    }
}

/* ---------------------------------------------
*   Universal selector
--------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #000;
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
    html,
    body {
        font-size: 2.8683181226vw;
    }
}

html.body-fixed {
    min-height: 100dvh;
}

body {
    line-height: 1.5;
}

body.error-page {
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.03);
}

body.error-page .l-footer {
    background-color: transparent;
}

@media screen and (max-width: 768px) {
    body {
        line-height: 1.5;
        min-width: 320px;
    }
}
.body-fixed body {
    position: fixed;
    width: 100%;
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
}

/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}