@charset "utf-8";
@media screen and (max-width: 1024px) {
    .sp {
        width: 100%;
        height: 70px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        background: #fff;
        position: fixed;
        z-index: 100;
        top: 0;
        align-items: center;
    }
    /* -- ul#menu -------------------------------------------------------------------------------- */
    ul#menu {
        list-style-type: none;
        width: 100%;
        background: #ffffff;
        position: absolute;
        left: 0px;
        top: 70px;
        z-index: 990;
        display: none;
        height: 100vh;
        padding: 50px 24px 0;
    }
    ul#menu li {
        text-align: center;
        border-bottom: 1px #a8a8a8 solid;
        display: flex;
        align-items: center;
    }
    ul#menu li:first-child {
        border-top: 1px #a8a8a8 solid;
    }
    ul#menu li span {
        color: #A00000;
        font-weight: 700;
        letter-spacing: 3px;
        font-size: 18px;
        margin-right: 20px;
    }
    ul#menu li a {
        text-decoration: none;
        display: block;
        font-size: 12px;
        padding: 22px 14px;
        width: 100%;
        text-align: left;
    }
    ul#menu li a:hover {
        background: #a9a9a9;
        opacity: 0.7;
    }
    /* -- div#sp-icon -------------------------------------------------------------------------------- */
    div#sp-icon {
        width: 70px;
        height: 70px;
        position: absolute;
        right: 0px;
        top: 0px;
        z-index: 999;
        background-color: #A00000;
    }
    div#sp-icon:hover {
        cursor: pointer;
        opacity: 0.7;
    }
    div#sp-icon span,
    div#sp-icon span:before,
    div#sp-icon span:after {
        display: block;
        width: 30px;
        height: 2px;
        background: #fff;
        position: absolute;
        transition-property: transform;
        transition-duration: 0.3s;
    }
    div#sp-icon span {
        left: 50%;
        top: 50%;
        transform: translate( -50%, -50%);
    }
    div#sp-icon span:before {
        content: "";
        transform: translateY( -10px) rotate( 0deg);
    }
    div#sp-icon span:after {
        content: "";
        transform: translateY( 10px) rotate( 0deg);
    }
    div.sp-open span {
        background: transparent !important;
    }
    div.sp-open span:before {
        transform: rotate( 45deg) !important;
    }
    div.sp-open span:after {
        transform: rotate( -45deg) !important;
    }
}