.d_btn{
    font-size: 12px;
    border-radius: 5%;
    border: 1px solid #000;
}

.form_input{
    background: #F9FCFF;
}

.form_conf_input{
    background: #fffaf5;
    overflow: auto;
}

.form_del_input{
    background: #fff5f5;
}

.conf_textarea{
    min-height: 120px;
}

.f_conf .form-control{
    background: #F0EBE7 !important;
}

#menu-btn-check {
    display: none;
}

.menu-content{
    display: none;
}

@media all and (max-width:767px) {

    .sp_non{
        display: none;
    }


    .p-3{
        padding: 10px 0 !important;
    }

    nav.bg-dark{
        display: none;
    }

    /**************************************/
    /* バーガーメニュー
    /**************************************/
    .menu-btn {
        position: fixed;
        top: 0px;
        right: 0px;
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
        z-index: 90;
        background-color: #000;
    }
    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background-color: #ffffff;
        position: absolute;
    }
    .menu-btn span:before {
        bottom: 8px;
    }
    .menu-btn span:after {
        top: 8px;
    }

    #menu-btn-check:checked ~ .menu-btn span {
        background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
    }
    #menu-btn-check:checked ~ .menu-btn span::before {
        bottom: 0;
        transform: rotate(45deg);
    }
    #menu-btn-check:checked ~ .menu-btn span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .hamburger-menu #menu-btn-check{
        display: none;
    }

    .menu-content {
        display: block;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;
        z-index: 80;
        background-color: #404040;
        transition: all 0.5s;
    }

    .menu-content ul {
        padding: 70px 10px 0;
    }
    .menu-content ul li {
        border-bottom: solid 1px #ffffff;
        list-style: none;
    }
    .menu-content ul li a {
        display: block;
        width: 100%;
        font-size: 15px;
        box-sizing: border-box;
        color:#ffffff;
        text-decoration: none;
        padding: 9px 15px 10px 0;
        position: relative;
    }
    .menu-content ul li a::before {
        content: "";
        width: 7px;
        height: 7px;
        border-top: solid 2px #ffffff;
        border-right: solid 2px #ffffff;
        transform: rotate(45deg);
        position: absolute;
        right: 11px;
        top: 16px;
    }

    #menu-btn-check:checked ~ .menu-content {
        left: 0;
    }


}