@charset "UTF-8";
@media only screen and (max-width: 1200px)
{
    header.loggedin-header h1
    {
    position: absolute;
    }
    .menu-toggle
    {
        display: block;
    }
    .global_menu_area
    {
        display: none;
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100%;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }
    .global_menu_area.show
    {
        left: 0;
    }

    .sys-bm-wrap .loggedin-main .main_area
    {
      width: 100%;
      /*max-width: 1200px;*/
      margin-left: 0px;
    }
    /*-------------------------*/

    /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
    .openbtn1
    {
    display: block;
    position: relative;/*ボタン内側の基点となるためrelativeを指定*/
    background:#57a2c7;
    cursor: pointer;
    width: 40px;
    height:40px;
    margin-left:10px;
    border-radius: 5px;
    }

    /*ボタン内側*/
    .openbtn1 span{
        display: inline-block;
        transition: all .4s;/*アニメーションの設定*/
        position: absolute;
        left: 11px;
        height: 3px;
        border-radius: 2px;
    background: #fff;
        width: 45%;
    }

    .openbtn1 span:nth-of-type(1) {
    top:10px; 
    }

    .openbtn1 span:nth-of-type(2) {
    top:18px;
    }

    .openbtn1 span:nth-of-type(3) {
    top:26px;
    }

    /*activeクラスが付与されると線が回転して×に*/

    .openbtn1.active span:nth-of-type(1) {
        top: 13px;
        left: 13px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn1.active span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
    }

    .openbtn1.active span:nth-of-type(3){
        top: 25px;
        left: 13px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }


    .modaal-content-container .global_menu ul li a
    {
        display: block;
        padding: 1em;
        /* padding: 1em 1em 1em 3em; */
        background:#fff;
        margin-bottom:3px;
        box-shadow: 2px 2px 2px 0px rgb(226 239 239);
        color: #5F6772;
        background-image: url(../img/svg/than_right.svg);
        background-repeat: no-repeat;
        background-position: right 11px top 13px;
    }
    .modaal-content-container .global_menu ul li.accordion-area a {
        display: block;
        line-height: 200%;
        padding: 10px 1em 10px 1em;
        background: #fff;
        margin-bottom: 0;
        box-shadow: none;
        color: #5F6772;
        background-color: #EBF5F6;
        background-image: url(../img/svg/than_right.svg);
        background-repeat: no-repeat;
        background-position: right 11px top 17px;
    }
    .modaal-content-container .global_menu ul li.select a
    {
        background:#00AFD5;
        color:#fff;
        font-weight: bold;
    }

    .modaal-content-container .global_menu ul li.select:first-child a
    {
    background-image: url(../img/svg/home_w.svg);
    background-repeat: no-repeat;
    background-position: left 11px top 13px;
    }



    .sys-bm-wrap .loggedin-main section.base-grid-background .blocks .edit-area
    {
    background: #EAF4F5;
    border-radius: 20px 20px 0 0;
    padding: 40px;
    
    display: block;
    }
    .sys-bm-wrap .loggedin-main section.base-grid-background .blocks .edit-area table
    {
        width: 100%;
        padding: 0;
        margin-right: auto;
        margin-left: auto;
        border: 2px solid #EBF5F6;
        border-spacing: 0 15px;
        border-collapse: separate;
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        margin-bottom: 0px;
    }

}

@media only screen and (max-width: 1000px)
{
    .sys-bm-wrap .loggedin-main section.base-grid-background .blocks .content-area table tbody
    {
        grid-template-columns: 1fr;
    }
}