@charset "utf-8";

/* -- ul#menu -------------------------------------------------------------------------------- */

ul#menu {
    list-style-type: none;
    width: 100%;
    background: #fff;
    position: absolute;
    left: 0px;
    top: 70px;
    z-index: 990;
    display: none;
    height: 100vh;
}

ul#menu li {
    text-align: left;
    border-bottom: 1px dotted gray;
}

ul#menu li:last-child {
    border-bottom: none;
}

ul#menu li a {
    text-decoration: none;
    display: block;
    padding: 20px 30px;
    font-weight: 700;
    letter-spacing: 1px;
    background: white url(../img/common/nav-arrow.png) right 25px center no-repeat;
}

ul#menu li a:last-child {
    background: none;
}

ul#menu li a:hover {
    background: #a9a9a9;
    opacity: 0.7;
}

.header-nav-sp-contact {
    margin: 20px auto;
    text-align: center!important;
}

.header-nav-sp-contact-inner {
    background-color: orangered!important;
    margin: 50px auto 0;
    display: block!important;
    width: 35%!important;
    min-width: 200px!important;
    color: #fff!important;
    font-weight: 700!important;
    line-height: 45px!important;
    border-radius: 5px!important;
    letter-spacing: 1px!important;
    padding: 0!important;
}


/* -- div#sp-icon -------------------------------------------------------------------------------- */

div#sp-icon {
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    right: 10px;
    top: 10px;
    z-index: 999;
    background: #0f318d;
}

div#sp-icon:hover {
    cursor: pointer;
    opacity: 0.7;
}

div#sp-icon span,
div#sp-icon span:before,
div#sp-icon span:after {
    display: flex;
    width: 25px;
    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;
}