/*
===================================================

B A S I C  C O N F I G

===================================================
*/

*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-size: 100%;
font-family: "Helvetica Neue",
Meiryo,
Arial,
"Hiragino Kaku Gothic ProN",
"Hiragino Sans",
sans-serif;
}

body{
background: #fff;
padding-top: calc(5vh + 30px);
}

.inner{
padding: 0 10px;
}

.sp{
display: none;
}

em{
font-style: normal;
}

@media screen and ( max-width:699px ){
  .sp{
    display: block;
  }
}

#h{
padding: 10px 0;
background: linear-gradient(180deg, rgba(255,180,174,1) 0%, rgba(253,216,213,1) 100%);
border-radius: 10px;
height: 5vh;
position: fixed;
top:10px;
right: 0;
width: calc(100vw - 220px);
}

#h .inner{
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
height: calc(5vh - 20px);
width: 100%;
}


#h .info{
font-size: 70%;
}

#h .inner ul{
list-style: none;
display: flex;
align-items: center;  
}

@media screen and ( max-width:699px ){
  #h{
    width: calc(100vw - 20px);
    right: auto;
    left: 10px;
  }
  
  #h h1{
    display:none;
  }
  
  #h .logout{
    font-size: .8em;
    margin-left: 10px;
  }
  
  #h .nav_icon{
    display: block;
    position: absolute;
    top:5px;
    right: 5px;
    cursor: pointer;
  }
}

#wrap{
}


#body{
width: 100%;
padding-left:200px;
}


.material-symbols-outlined{
display: inline-block;
vertical-align: middle;
}


@media screen and ( max-width:699px ){
  #body{
    padding-left: 0;
  }
}







/*
===================================================

N A V

===================================================
*/
#nav{
height: calc(100vh - 20px);
overflow: hidden;
overflow-y: auto;
position: fixed;
top:10px;
left: 10px;
width: 180px;
border-right: solid 1px #ddd;
padding: 10px;
border-radius: 10px;
background: rgb(255,180,174);
background: linear-gradient(180deg, rgba(255,180,174,1) 0%, rgba(253,216,213,1) 100%);
}

#nav ul{
list-style: none;
background: rgba(255,255,255,.2);
}

#nav em{
font-style: normal;
font-weight: bold;
}

#nav .category{
margin-bottom: 10px;
padding-bottom: 5px;
border-bottom: solid 1px #fff;
}
#nav .items{
padding-left: 10px;
}
#nav .items a{
display: block;
white-space: nowrap;
padding: 5px 0;
}

#nav .material-symbols-outlined{
display: inline-block;
vertical-align: -5px;
}

#nav .p{
margin-bottom: 20px;
}
#nav .p a{
color: #000;
}

@media screen and ( max-width:699px ){
  #nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top:-160vh;
    left: 0;
    z-index: 9999;
    background: rgba(255,255,255,.9);
    display: table;
    -webkit-transition: opacity .3s linear, top .3s ease-out;
    -moz-transition: opacity .3s linear, top .3s ease-out;
    -ms-transition: opacity .3s linear, top .3s ease-out;
    -o-transition: opacity .3s linear, top .3s ease-out;
    transition: opacity .3s linear, top .3s ease-out;
    overflow-y: scroll;
  }
  #nav.in{
    top: 0;
  }
  
  #nav.in .close{
    position: fixed;
    top:5px;
    right: 5px;
  }
}



.material-symbols-outlined{
display: inline-block;
vertical-align: middle;
}




/*
===================================================

B U T T O N S

===================================================
*/
span.btn{
display: inline-block;
padding: 3px 12px;
margin-bottom: 0;
font-size: 12px;
border-radius: 18px;
border: 1px solid transparent;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
color: #fff;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
white-space: nowrap;
cursor: pointer;
font-size: .7rem;
}

span.btn:hover{
opacity: .5;
}

span.btn span{
font-size: .7rem;
}

span.btn.view{
background-color: #3333f7;
}
span.btn.notview{
background-color: #bbb;
}

span.btn.edit{
background-color: #5bb75b;
}

span.btn.delete{
background-color: #da4f49;
}

span.btn.history{
background-color: #CA8515;
}

@media screen and ( max-width:699px ){
  span.btn em{
    display: none;
  }
}