﻿@charset "utf-8";

body {
    height: 100%;
}
body::before {
    background-image: url(/images/index-page-bg.jpg);
}

/*------------------------------------------------------------------------- SECTION: SITE MAP LINKS
*/
.site-map {
    margin: 20px 0;
    list-style-type: square;
}
.site-map li {
    margin: 0 0 10px 20px;
}
.site-map li a {
    color: #fff;
    font-weight: normal;
    transition: all 0.25s ease;
}
.site-map li a:hover {
    color: var(--c3Yellow);
    text-decoration: underline dotted 1px var(--c3Yellow);
    text-underline-offset: 5px;
}
.site-map li.section > a {
    font-family: 'domyouji';
    color: var(--c3Yellow);
    text-transform: lowercase;
}
.site-map li.section > a:hover {
    color: #ccc;
    text-decoration-color: #ccc;
}
.site-map li.section ul {
    margin: 10px 0 20px 0px;
}
.site-map li.section ul li a {
    font-weight: normal;
}