@charset "utf-8";

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

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

.menu_inner {
    width: calc(100% - 70px);
    position: absolute;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); */
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

#menu p {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    text-align: left;
}

#menu p a {
    text-decoration: none;
    display: block;
    padding: 24px 0;
    font-weight: 700;
    color: #fff;
}

#menu p a:hover {
    background: #a9a9a9;
}

.Rmenu_contact {
    margin-top: 40px;
}

.Rmenu_tel {
    color: #fff;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Rmenu_tel img {
    width: 18px;
}

.Rmenu_form {
    display: block;
    background-color: #276A3C;
    color: #fff;
    width: 100%;
    border-radius: 9999px;
    line-height: 1;
    padding: 15px 0px;
    font-weight: 700;
    margin-bottom: 20px;
}


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

div#sp-icon {
    width: 70px;
    height: 70px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 999;
}

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;
}