/*--------------------
    dsidebar
--------------------*/
#dash_sidebar {
  width: 15%;
  display: flex;
  justify-content: center;
}
#dash_sidebar .ds_user_icon {
  width: 117px;
  height: 117px;
  padding: 3px;
  border-radius: 50%;
  margin:0 auto;
}
#dash_sidebar .ds_user_icon .ds_ui_inner {
  width: 111px;
  height: 111px;
  border: 3px solid #fff;
  border-radius: 50%;
}
#dash_sidebar .ds_user_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
#dash_sidebar .ds_follow {
  padding-top: 20px;
}
#dash_sidebar .ds_follow .dsf_ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-weight: bold;
  width: 85%;
  margin-bottom:10px;
}
#dash_sidebar .ds_follow .dsf_ul .dsf_li:nth-child(1) {
  font-size: 13px;
}
#dash_sidebar .ds_follow .dsf_ul .dsf_li:nth-child(2) {
  font-size: 20px;
}
#dash_sidebar .ds_follow .dsf_ticket {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  font-size: 13px;
}
#dash_sidebar .dsm_ul {
  padding-top: 40px;
}
#dash_sidebar .dsm_ul .dsm_li {
  position: relative;
  padding-bottom: 26px;
  font-size: 18px;
}
#dash_sidebar .dsm_ul .dsm_li:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 22px;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 20px;
}
#dash_sidebar .dsm_ul .dsm_a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding-left: 10px;
}
#dash_sidebar .dsm_ul .dsm_a:hover {
  opacity: 0.6;
}
#dash_sidebar .dsm_ul .dsm_a:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 20px;
  transform: scaleY(0);
  transform-origin: center bottom;
  transition: transform 0.3s;
}
#dash_sidebar .dsm_ul .dsm_a:hover::after {
  transform-origin: center top;
  transform: scaleY(1);
}
/* 2021-12-03 16:39:34 inoue #1342 S */
#dash_sidebar .not_entered{
  color: red;
  font-size: 13px;
  padding: 4px 0px 0px 8px;
}
/* 2021-12-03 16:39:34 inoue #1342 E */

.menu_btn{
  display:none;
}
@media(max-width:680px){
   #dashboard{
    flex-direction: column;
    padding:20px 15px!important;
  }
  
 
  #dash_sidebar,  
  #dashboard > section,
  #dashboard #dash_home,
  #dashboard .dash_inner{
    width:100%!important;
  }
   
  #dash_sidebar .dsm_ul{
    padding-top:20px;
  }
  #dash_sidebar .ds_menu{
    position:fixed;
    top:78px;
    right:0;
    background:#1D1E23;
    color:#fff;
    padding:10px;
    z-index:999;
    display:none
  }
  .menu_btn{
  display:block;
  position:fixed;
  top:0;
  right:0;
  padding:0 15px;
  font-size:18px;
  color:#fff;
  background:#1D1E23;
      z-index:999;
      height:78px;
      line-height:78px;

  }
  .menu_btn i{
    margin-right:5px;
  }
}