@charset "utf-8";
/*携帯表示　-ここから-
---------------------------------------------------------------------------*/
@media screen and (max-width: 736px) {
    body{
        font-size: 14px;
    }
    .phone_area{
        display:block !important;
        height: 100%;
    }
    .pc_area{
        display:none !important;
    }
    /* ログイン */
    .logincontainer{
        width: 80%;
        margin: 0 auto;
        padding-top: 3rem;
    }
    .logincontainer input{
        width: 100%;
        height: 38px;
        border: none;
    }
    .logincontainer input[type="submit"]{
        width: 100%;
        height: 44px;
        border: none;
    }
    /* ヘッダー */
    .table_container{
        padding: 1rem;
        width: 100%;
    }
    .logo{
        width: 100%;
        text-align: center;
        display: inline;
    }
    .header_back{
        background-color: #83C9CE;
        color:#fff;
        padding:.25rem 1rem;
    }
    .large{
        font-size: large;
    }
    .phone_icon{
        display: flex;
        justify-content: space-between;
    }
    .phone_font{
        margin: auto 0;
    }
    /* テーブル　*/
    .table_top{
        display: flex;
        justify-content: space-between;
    }
    .question_icon{
        vertical-align: -webkit-baseline-middle;
        color:#83C9CE
    }
    /* 休日・入力ボタン　*/
    .button_box{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .button_design{
        font-size: 15px;
        width: 80%;
        height: 44px;
        color: #fff;
        border: none;
        box-shadow: 0 1px 2px 0 #869198;
        margin-top:1rem;
    }
    .order1{
        order:1;
    }
    .order2{
        order: 2;
    }
    /* タスクボタン　*/
    .button_add{
        margin-top: 1rem;
    }
    /* 保存ボタン　*/
    .button_end{
        text-align: center;
        left: 50%;
    }
    /* メニューバー　*/
    .menu_bar{
        width: 100%;
        height:0;
        background-color: #345052;
        display:flex;
        flex-wrap:wrap;
        font-size: 13px;
        z-index: 1;
        transition: .3s;
        overflow-y: hidden;
        position: absolute;
    }
    .menu_bar a{
        width:25%;
        text-align: center;
        padding: 20px 10px 20px;;
    }
    .menu_bar.open{
        height:200px;
    }
}