@charset "UTF-8";
/* CSS Document */

@media screen and (max-width:767px) {
    #nav-drawer {
        display:block!important;
    }
    /* ヘッダーメニュー */
    .sp_nav,
    .sp_nav a {
        color: #dcdcdc;
    }
    .sp_nav,
    .nav_header  {
        font-size: 16px;
        background: #313131;
    }
    /*メニューの中身*/
    .sp_nav {
        overflow: auto;
        position: fixed;
        top: 0;
        left: -100%;
        z-index: 9999;
        width: 100%;
        height: 100%;
        background: #313131;
        transition: .3s ease-in-out;
    }
    /* メニューが表示されている時 */
    body.sp_menu_on {
        overflow: hidden;
    }
    body.sp_menu_on .sp_nav {
        left: 0;
    }
    body.sp_menu_on .footer_link_area {
        display: none;
    }
    /* メニュー内のheader */
    .nav_header {
        padding: 12px 20px;
    }
    .menu_btn_close {
        display: block;
        width: 25px;
        height: 25px;
        position: relative;
        margin: 0;
    }
    .menu_btn_close::before,
    .menu_btn_close::after {
        content: "";
        display: block;
        width: 25px;
        height: 3px;
        background: #fff;
        transform: rotate(45deg);
        transform-origin: 0% 50%;
        position: absolute;
        left: 14%;
    }
    .menu_btn_close::after {
        transform: rotate(-45deg);
        transform-origin:100% 50%;
        left: auto;
        right: 14%;
    }
    /* ハンバーガーメニューのボタン */
    .menu_btn_open {
        display: inline-block;
        vertical-align: middle;
        width: 25px;
        height: 20px;
        padding: 7px 0;
        margin-left: 10px;
    }
    .menu_btn_open:hover{
        opacity: 0.7;
    }
    .menu_btn_open span,
    .menu_btn_open span:before,
    .menu_btn_open span:after {
        position: absolute;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background: #fff;
        display: block;
        content: '';
        cursor: pointer;
    }
    .menu_btn_open span:before {
        bottom: -8px;
    }
    .menu_btn_open span:after {
        bottom: -16px;
    }
    /* お問い合わせ */
    .nav_contact {
        display: flex;
        justify-content: space-between;
        background: #1e1e1e;
        padding: 12px 20px;
        margin: 0;
    }
    .nav_contact .freecall{
        -ms-flex-item-align: center;
        align-self: center;
        margin-right: 16px;
    }
    .nav_contact .freecall .tel{
        margin-bottom: 6px;
    }
    .nav_contact .freecall .tel img,
    .nav_contact .freecall .tel a{
        display: inline-block;
    }
    .nav_contact .freecall .tel img{
        width: 32px;
        margin-right: 4px;
    }
    .nav_contact .freecall .tel a {
        color: #fff;
        font-size: 20px;
        font-weight: bold;
        line-height: 26px;
    }
    .nav_contact .freecall p {
        font-size: 12px;
        line-height: 1em;
        margin-bottom: 0;
    }
    .nav_contact .contact_btn{
        font-size: 14px;
        line-height: 1em;
        background: #005bac;
        color: #fff;
        padding: 18px 16px;
        border-radius: 5px;
    }
    /* ナビのメニュー */
    .nav_menu > div {
        padding: 12px 20px;
        border-bottom: 2px solid #1e1e1e;
        display: grid;
        gap: 12px;
    }
    .nav_menu > div:last-child {
        border: none;
    }
    .nav_menu p {
        margin: 0;
    }
    .nav_menu > div > .menu_title,
    .nav_menu > div > .has_child > .menu_title {
        font-weight: 600;
    }
    .nav_menu > div > .menu_content {
        display: grid;
        gap: 12px;
    }
    .nav_menu > div > .menu_content > p {
        border-bottom: 2px solid #363636;
        padding: 0 12px 12px;
    }
    .nav_menu > div > .menu_content > p:last-child {
        border: none;
        padding-bottom: 0;
    }
    .nav_menu > div > .menu_content > p:first-child,
    .nav_menu > div > .menu_content > div:first-child {
        border-top: 2px solid #363636;
        padding-top: 12px;
    }

    /* nav footer */
    .close_btn_footer > p {
        margin: 0 auto;
    }
}



