    html,
    body {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    ul,
    li {
        list-style: none;
        margin: 0px;
        padding: 0px;
    }

    a {
        text-decoration: none;
    }

    .navi {
        width: 221px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .navi .top {
        width: 100%;
        height: 100px;
        background: url(../images/navitop.png) no-repeat center;
    }

    .navi .bottom {
        width: 100%;
        height: 210px;
        background: url(../images/navibottom.png) no-repeat center;
    }

    .navi .list {
        width: 100%;
        height: 0;
        flex-grow: 1;
        background: url(../images/navilist.png) center;
    }

    .navi-list {
        z-index: 1000;
        margin-top: 53px;
        font-size: 16px;

    }

    .navi-list .list-item {
        height: 38px;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        position: relative;
    }
    .navi-list a.active {
        margin-right: 12px;
    }
    .navi-list a.active::before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        margin-right: 4px;
        width: 6px;
        height: 6px;
        border: 1px solid #be0008;
        border-radius: 50%;
    }
    .list-item a {
        color: #000;
    }

    .list-item::after {
        position: absolute;
        content: '';
        width: 7px;
        height: 1px;
        top: 37px;
        background: #f4e6d5;
    }

    .list-item:last-child::after {
        display: none;
    }

	.footer {
        background-color: #fff;
        width: 100%;
        height: 257px;
    }

    .footer .top {
        background-color: #fff;
        width: 100%;
        height: 210px;
    }

    .footer .top .info,
    .footer .bottom .info {
        width: 950px;
        margin: auto;
    }

    .footer .bottom {
        background-color: #be0008;
        width: 100%;
        height: 47px;
        color: #fff;

    }

    .footer .top .info {
        padding-top: 31px;
        height: 179px;
        display: flex;
        flex-direction: row;
    }

    .footer .top .info span {
        font-size: 16px;
        color: #4c4c4c;
        line-height: 32px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .footer .top .info span::before {
        content: '';
        border: 1px solid #be0008;
        width: 6px;
        height: 6px;
        display: block;
        border-radius: 50%;
        margin-right: 7px;
    }

    .footer .top .info ul {
        margin-left: 14px;
    }

    .footer .top .info li, .footer .top .info li a {
        color: #999999;
        font-size: 12px;
        line-height: 24px;
    }
